https://github.com/jan200101/unixreg
a winreg compatibility library
https://github.com/jan200101/unixreg
linux python python3 winreg
Last synced: about 2 months ago
JSON representation
a winreg compatibility library
- Host: GitHub
- URL: https://github.com/jan200101/unixreg
- Owner: Jan200101
- License: mit
- Created: 2021-11-11T09:16:17.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-26T09:48:08.000Z (about 3 years ago)
- Last Synced: 2025-01-09T12:47:21.067Z (4 months ago)
- Topics: linux, python, python3, winreg
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unixreg
## why
While working on porting a python application to Linux I came across many uses of winreg that could not easily be ported over.Instead of reworking the system I decided to implement a bandaid solution that deals with it transparently.
## how to use
Update your winreg imports with this```py
try:
import winreg
except ImportError:
import unixreg as winreg
```simply importing unixreg should be enough though, winreg is imported if found
## license
this project is licensed under the [MIT License](LICENSE)
feel free to do whatever you want with it