Cross-platform python module to store application config via native subsystems such as Windows Registry or NSUserDefaults.
Project description
Developers of cross-platform applications often face problems when they need to interact with the system. Config files are no exception, since every popular OS has its own format and guidelines.
nativeconfig addresses this problem in an elegant and Pythonic way:
import os
from nativeconfig import PreferredConfig, StringOption, IntOption
class MyConfig(PreferredConfig):
REGISTRY_PATH = r'Software\MyApp'
JSON_PATH = os.path.expanduser('~/.config/MyApp/config')
first_name = StringOption('FirstName')
last_name = StringOption('LastName')
age = IntOption('Age')
will store config in Registry on Windows, in NSUserDefaults on Mac OS X and in json-formatted file everywhere else.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nativeconfig-2.0.1.tar.gz
(2.8 kB
view details)
File details
Details for the file nativeconfig-2.0.1.tar.gz
.
File metadata
- Download URL: nativeconfig-2.0.1.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9693331df9b030e37dee52d7e2cc1c9f3d412d5852c3cbf2232937b728a08d0 |
|
MD5 | 65af4af955f16b2e3150db5d6181a7d2 |
|
BLAKE2b-256 | 4f3d72d395279a0a34b6364da76fad7743a9e1e3af65912a2c5644fe0b1862ac |