Skip to main content

No project description provided

Project description

安装 pip install pr-properties

这是一个读写properties工具

from pr_properties import pr_properties

# 读写properties文件
p = pr_properties.read(r'./pool.properties')  # p = PropertiesHandler(r"./pool.properties").read()
print(p['master.initialSize'])  # 4
# 支持get
print(p.get('master.initialSize'))
# 修改
p['master.initialSize'] = 5
# 写入,写入后会关闭文件;写入功能请慎重使用
p.write()
p.read(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.8.2.tar.gz (15.7 kB view hashes)

Uploaded Source

Built Distribution

pr_properties-1.8.2-py3-none-any.whl (17.4 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