Metadata-Version: 2.1
Name: bdpyconsts
Version: 1.1.2
Summary: Implement python constant configuration and reading
Home-page: https://github.com/biandoucheng/bd-py-const
Author: biandoucheng
Author-email: biandoucheng@outlook.com
Project-URL: Bug Tracker, https://github.com/biandoucheng/bd-py-const/issues
Project-URL: Use Example, https://github.com/biandoucheng/open-example/tree/main/bdpyconsts-example
Classifier: Programming Language :: Python :: 3.5
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# Python constant manager

## New features
```
2023.06.14
1. Support manual constant modification by locking the flag bit with a manual switch

    from bdpyconsts import bdpyconsts as consts

    consts.ABCD = "abcd"

    # one way
    consts.unlock()
    consts.ABCD = "abcd"
    consts.locked()

    # another way
    if not consts.lock:
        onsts.ABCD = "abcd"
```
