appdata | Application Data Management
Installation
pip install appdata
Documentation
The detailed documentation you can find on appdata.readthedocs.io.
Usage
To manage paths of application data folder there is AppDataPaths
class:
from appdata import AppDataPaths
app_paths = AppDataPaths('myapp')
To create the application folder tree:
app_paths.setup()
There are few paths specified to manage your application data folder:
print(app_paths.name)
print(app_paths.app_data_path)
print(app_paths.logs_path)
print(app_paths.config_path)
print(app_paths.log_file_path)
Every path could be customized. See options here.
Contributing
See CONTRIBUTING.md
License
MIT