Python常量工具类

Posted goingforward

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python常量工具类相关的知识,希望对你有一定的参考价值。

1.定义常量类constant.py

# -*- coding: utf-8 -*
"""常量工具类

author: Jill

usage:
    from constant import _Const
    const = _Const()
    const.PI = 3.14
"""


class _Const:
    class ConstError(TypeError):
        pass

    class ConstCaseError(ConstError):
        pass

    def __setattr__(self, name, value):
        if name in self.__dict__:
            raise self.ConstError("Can‘t change const(%s) value" % name)
        if not name.isupper():
            raise self.ConstCaseError("Const name %s is not all uppercase" % name)

        self.__dict__[name] = value

    def __getitem__(self, key):
        if key in self.__dict__:
            return self.__dict__[key]
        else:
            raise self.ConstError("Can‘t return const %s, No Existing Key!" % key)

    def __delattr__(self, name):
        if name in self.__dict__:
            raise self.ConstError("Can‘t unbind const(%s)" % name)
        raise NameError(name)

 

2.将常量放在一个模块中common_constant.py

# -*- coding: utf-8 -*
"""常用常量定义

author: Jill

usage:
    from common_constant import const
    print(const.ROOT_PATH)
"""
from common.constant import _Const


const = _Const()

const.PI = 3.14

if __name__ == "__main__":
    print(const.PI)
    print(const[PI])

 

3.在其他模块里使用test.py

from common_constant import const
    

print(const.ROOT_PATH)

 

以上是关于Python常量工具类的主要内容,如果未能解决你的问题,请参考以下文章

elasticsearch代码片段,及工具类SearchEsUtil.java

python 用于在终端中运行的sublime text 3的简单代码片段制作工具

实用工具类的静态成员(null)生命周期

solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例

自定义常量类

Python工具类—— 操作Mysql数据库