Skip to main content

This is a read-write properties tool

Project description

安装 pip install pr-properties

这是一个读写properties工具

from pr_properties import Properties

# 创建Properties对象
p = Properties()
# 读取字符
str_p = """# 读取字符=1
master.initialSize=4
master.minIdle=10=20=kk"""
p.loads(str_p)
# 修改
p['master.initialSize'] = 5
# 增加
p['master.cc'] = 5
# 输出对象的字符
print(p.dumps())
# 删除
del p['master.cc']
print(p.dumps())

# 读写properties文件
p = Properties()
p.read(path=r'./pool.properties')
print(p['master.initialSize'])  # 4
# 支持get
print(p.get('master.initialSize'))
# 修改
p['master.initialSize'] = 5
# 写入,写入后会关闭文件;写入功能请慎重使用
p.write()
p.read(path=r'./pool.properties')
# 验证是否修改
print(p['master.initialSize'])  # 5

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

pr_properties-1.7.7.tar.gz (16.0 kB view hashes)

Uploaded Source

Built Distribution

pr_properties-1.7.7-py3-none-any.whl (17.1 kB view hashes)

Uploaded Python 3

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