Skip to main content

Simple configuration handling in Python.

Project description

no_config

yamljsontoml等配置文件映射为类,需要很多冗余代码或者魔术字符串。这对代码的维护工作提出了更高的要求,no_config能简化这种映射,仅仅需要两行代码即可完成映射。更多文档信息请参考https://ncdhz.github.io/no_config

快速开始

下面将用一个简短的例子介绍本库该怎么使用,例子中使用的源码在examples/start/start.py

  1. 配置文件

    # 创建配置文件start.yaml
    user:
        username: ncdhz
        password: ncdhz
    
  2. 源码文件

    from os import path
    from no_config import Config
    
    # 配置注入
    @Config
    class User:
        password = None
        username = None
    
    if __name__ == '__main__':
        # 配置初始化
        # 全局只需一次初始化
        # 在更改配置之后可以通过此函数刷新配置
        Config.init(path.join(path.dirname(__file__), 'start.yaml'))
        print(User.password)
        print(User.username)
    

安装

pip安装

pip install no_config

源码安装

git clone https://github.com/ncdhz/no_config.git
# 进入no_config目录执行下面语句
pip install .

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

no_config-0.0.6.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

no_config-0.0.6-py3-none-any.whl (4.7 kB view details)

Uploaded Python 3

File details

Details for the file no_config-0.0.6.tar.gz.

File metadata

  • Download URL: no_config-0.0.6.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for no_config-0.0.6.tar.gz
Algorithm Hash digest
SHA256 4766b55784f99b285d51f60382a05dfec2b6e4abcd74647ca0d3300b3e427c07
MD5 e0adc598e42984dd1a0217f784e5cbc1
BLAKE2b-256 6fa0a27214af3759d01e6320a1f6f5d4c5dff735dfd4b509071a9cd088792a7f

See more details on using hashes here.

File details

Details for the file no_config-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: no_config-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 4.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for no_config-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 7a27a362d8e869384cfce7a9ee7dfdafe692dcb24910ee9da88aa189c035451b
MD5 245b23ddd4cacf9a4709cbdb07888a48
BLAKE2b-256 b5956bed134420da88fb0eef51f40ec423cca0773509a8ee7ea7cf20ea1c60a3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page