Current Path: > > opt > alt > python37 > lib > python3.7 > > site-packages > platformdirs >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 12616 bytes | December 26 2021 17:22:12. | |
__main__.py | File | 1164 bytes | December 26 2021 17:22:12. | |
android.py | File | 4012 bytes | December 26 2021 17:22:12. | |
api.py | File | 4910 bytes | December 26 2021 17:22:12. | |
macos.py | File | 2655 bytes | December 26 2021 17:22:12. | |
py.typed | File | 0 bytes | December 26 2021 17:22:12. | |
unix.py | File | 6910 bytes | December 26 2021 17:22:12. | |
version.py | File | 80 bytes | December 26 2021 17:22:18. | |
windows.py | File | 6439 bytes | December 26 2021 17:22:12. |
from __future__ import annotations from platformdirs import PlatformDirs, __version__ PROPS = ( "user_data_dir", "user_config_dir", "user_cache_dir", "user_state_dir", "user_log_dir", "user_documents_dir", "user_runtime_dir", "site_data_dir", "site_config_dir", ) def main() -> None: app_name = "MyApp" app_author = "MyCompany" print(f"-- platformdirs {__version__} --") print("-- app dirs (with optional 'version')") dirs = PlatformDirs(app_name, app_author, version="1.0") for prop in PROPS: print(f"{prop}: {getattr(dirs, prop)}") print("\n-- app dirs (without optional 'version')") dirs = PlatformDirs(app_name, app_author) for prop in PROPS: print(f"{prop}: {getattr(dirs, prop)}") print("\n-- app dirs (without optional 'appauthor')") dirs = PlatformDirs(app_name) for prop in PROPS: print(f"{prop}: {getattr(dirs, prop)}") print("\n-- app dirs (with disabled 'appauthor')") dirs = PlatformDirs(app_name, appauthor=False) for prop in PROPS: print(f"{prop}: {getattr(dirs, prop)}") if __name__ == "__main__": main()
SILENT KILLER Tool