- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有一种方法可以让 python 中的 configparser 设置一个值,而无需在配置文件中包含任何部分?
如果没有,请告诉我任何替代方案。
谢谢。
更多信息:所以基本上我有一个格式为的配置文件:名称:值
这是一个系统文件,我想更改给定名称的值。我想知道这是否可以通过模块而不是手动编写解析器轻松完成。
最佳答案
您可以使用 csv
模块来完成解析文件并在您进行更改后将其写回的大部分工作——因此它应该相对易于使用。我的想法来自 answer 之一题为 Using ConfigParser to read a file without section name 的类似问题。 .
但是我对它做了一些更改,包括将它编码为在 Python 2 和 3 中工作,取消对它使用的键/值定界符的硬编码,这样它几乎可以是任何东西(但默认情况下是冒号),以及多项优化。
from __future__ import print_function # For main() test function.
import csv
import sys
PY3 = sys.version_info.major > 2
def read_properties(filename, delimiter=':'):
""" Reads a given properties file with each line in the format:
key<delimiter>value. The default delimiter is ':'.
Returns a dictionary containing the pairs.
filename -- the name of the file to be read
"""
open_kwargs = dict(mode='r', newline='') if PY3 else dict(mode='rb')
with open(filename, **open_kwargs) as csvfile:
reader = csv.reader(csvfile, delimiter=delimiter, escapechar='\\',
quoting=csv.QUOTE_NONE)
return {row[0]: row[1] for row in reader}
def write_properties(filename, dictionary, delimiter=':'):
""" Writes the provided dictionary in key-sorted order to a properties
file with each line of the format: key<delimiter>value
The default delimiter is ':'.
filename -- the name of the file to be written
dictionary -- a dictionary containing the key/value pairs.
"""
open_kwargs = dict(mode='w', newline='') if PY3 else dict(mode='wb')
with open(filename, **open_kwargs) as csvfile:
writer = csv.writer(csvfile, delimiter=delimiter, escapechar='\\',
quoting=csv.QUOTE_NONE)
writer.writerows(sorted(dictionary.items()))
def main():
data = {
'Answer': '6*7 = 42',
'Knights': 'Ni!',
'Spam': 'Eggs',
}
filename = 'test.properties'
write_properties(filename, data) # Create csv from data dictionary.
newdata = read_properties(filename) # Read it back into a new dictionary.
print('Properties read: ')
print(newdata)
print()
# Show the actual contents of file.
with open(filename, 'rb') as propfile:
contents = propfile.read().decode()
print('File contains: (%d bytes)' % len(contents))
print('contents:', repr(contents))
print()
# Tests whether data is being preserved.
print(['Failure!', 'Success!'][data == newdata])
if __name__ == '__main__':
main()
关于python - 没有部分的 Configparser 集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17747627/
我正在创建每日报价服务器。我正在阅读 INI 文件中的选项,其文本如下: [Server] host = port = 17 [Quotes] file=quotes.txt 但是,当我使用 Conf
我在从 ini 文件的 [.ShellClassInfo] 部分读取变量时遇到问题。 我的ini文件:(上面和下面有一个空的中断) [.ShellClassInfo] IconResource=\\s
如何重命名 ConfigParser 对象中的部分? 最佳答案 示例辅助函数 - 确实很傻,但它可能会节省一些人几分钟的工作...... def rename_section(cp, section_
我正在使用 Python configparser 从 ini 文件中读取配置。 95% 的情况下,它运行良好。如果不对 ini 文件进行任何更改(例如,在回归测试的中间),configparser
我想做的(理想情况下)是将 with 与字典一起使用来一次设置整个参数部分。经过一些实验,我想出了以下代码,它引发了 AttributeError: import configparser impor
下面是我的示例配置文件 [HEAD1] key1 = val1 key2 = val2 [HEAD2] key1 = key2 = val2 我想编写一个高效的代码,该代码会向用户抛出错误,指示是否有
我只是想知道。是否有机会在 *.ini 文件中创建部分来仅存储没有键的值?我要在本地主机和其他服务器中存储已用端口的列表,我的列表如下所示: [servers] localhost:1111 loca
我正在看Python 3.6 documentation它说的地方 By default, section names are case sensitive but keys are not [1].
How do I put a semicolon in a value in python configparser? python - 2.7 我有一个 python 配置解析器,其中有一个部分,其
我正在使用 Python 的老式 configparser模块从文件系统读取配置文件。 为了检查用户提供的配置文件是否使用正确的“语法”,我将所有部分键和子键与引用配置文件 ref_config.in
我有一个名为 foo.cfg 的模板文件: [Box] box.active={box_activate} resolution_tracker.active=true box.api_key={bo
ConfigParser 也读取注释。为什么?这不应该是“忽略”内联评论的默认设置吗? 我使用以下脚本重现我的问题: import configparser config = configparser
基于 ConfigParser 模块,我如何过滤并抛出 ini 文件中的所有注释? import ConfigParser config = ConfigParser.ConfigParser() c
我正在使用 Python 2.6 编写名为 config.ini 的 .ini 文件。这是我的代码: def saveConfig(self, selection, value, bool):
场景: 我有一个配置文件,用于维护要执行的自动化测试的列表。这些测试是长期循环执行的。 配置文件的设计方式使得 ConfigParser 可以读取它。由于有两个三个参数,我需要通过每个测试。 现在,此
我正在编写一个脚本,该脚本扫描不同目录中的一系列配置文件以确保它们具有特定值:在这种情况下,它们必须具有 MySection 部分,该部分必须有选项Opt1,它不能等于0。如果它通过了所有这些测试,文
我尝试使用 configparser 模块,但我遇到了一点问题。 这是一个代码示例: import configparser ini_file = """[s1]\nl1 = 01\n= = 02\n
如何使用 python 配置解析器获取单个部分下的每个条目并写入新文件而不实际指定每个条目 例如,我如何在不使用 config.get 并列出每个条目的情况下获取“测试”部分下的所有内容并写入新文件?
使用 ConfigParser 我可以轻松读取键的值,如下例所示 - #config.cfg [NODE] 192.168.31.22 = node22 192.168.31.23 = node23
我正在尝试制作一款游戏,玩家每次玩游戏时都会从 ini 文件中的值中扣除 0.5。但是我不断收到错误,我不知道该怎么做。这是我的代码。不要担心评论,这些是给我的,我稍后会关闭 while 循环。这只是
我是一名优秀的程序员,十分优秀!