gpt4 book ai didi

python - 有没有办法在 python 中读取/写入没有节头的配置文件?

转载 作者:行者123 更新时间:2023-11-30 22:15:34 25 4
gpt4 key购买 nike

我想使用 python 修改 hostapd 配置文件

#
# Wireless Interface
#
interface=wlp2s0
driver=nl80211
#
# Wireless Environment
#
# Currently not working due to
# regulatory restrictions on 5GHz wifi
# in driver
#
ssid=bobthebuilder
hw_mode=a
ieee80211d=1
country_code=GB
channel=40
ieee80211n=1

(等)

但是 configparser 库需要配置部分的 header 才能使用 - 我们还有另一个库可以用来编辑此文件吗?

最佳答案

看起来是一个非常简单的配置文件语法。为什么不编写自己的配置解析器呢?

conf = {}
with open('config.cfg') as fp:
for line in fp:
if line.startswith('#'):
continue
key, val = line.strip().split('=')
conf[key] = val

关于python - 有没有办法在 python 中读取/写入没有节头的配置文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50249531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com