This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import inspect, platform | |
| for name, value in inspect.getmembers(platform): | |
| if name[0] != '_' and callable(value): | |
| try: | |
| value = value() | |
| except (IndexError, TypeError): | |
| continue | |
| if str(value).strip("( ,')"): | |
| print('{:>21}() = {}'.format(name, value)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| import appex, console | |
| import ui | |
| import os.path | |
| import os | |
| import clipboard | |
| import gc | |
| import shutil |
OlderNewer