如何编辑子目录中的 .py 配置文件?

发布于 2025-01-11 12:21:52 字数 787 浏览 0 评论 0原文

我正在尝试用 python 读取和编辑配置文件。这是文件结构:

main.py
folder
-> __init__.py
-> module.py
-> config.py

我有四个文件:

ma​​in.py

import folder.config as config
import folder.module as module

if __name__ == "__main__":
    config.x = 2
    module.foo()

init.py

import os, sys; sys.path.append(os.path.dirname(os.path.realpath(__file__)))

module.py

import config

def foo():
    print("Result from function: " + str(config.x))

config.py

x = 10

我期望调用“foo”的结果是“2”,但它打印“10”,即配置文件的默认值。如何确保对“main.py”中的“config.py”所做的更改保留到其他模块?

任何帮助将不胜感激!

I'm trying to read and edit a config file in python. Here is the file structure:

main.py
folder
-> __init__.py
-> module.py
-> config.py

I have four files:

main.py

import folder.config as config
import folder.module as module

if __name__ == "__main__":
    config.x = 2
    module.foo()

init.py

import os, sys; sys.path.append(os.path.dirname(os.path.realpath(__file__)))

module.py

import config

def foo():
    print("Result from function: " + str(config.x))

config.py

x = 10

I expect the result from calling 'foo' to be '2', but instead it prints '10', the config file's default value. How can I ensure that changes made to 'config.py' in 'main.py' persist to other modules?

Any help would be greatly appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愁以何悠 2025-01-18 12:21:52

为什么不使用 JSON 或 csv 或任何其他格式来存储值?

编辑:
我建议以下解决方案:

main.py

import folder.config as config
import folder.module as module

if __name__ == "__main__":
    config.set_x(2)
    module.foo()

init.py

import os, sys; sys.path.append(os.path.dirname(os.path.realpath(__file__)))

module.py

import config

def foo(): print(f"Result from function: { str(config.get_x()) }")

config.py

import json

def read_json():
    with open("data.json") as f: d = json.load(f)
    return d

def write_json(d):
    with open('data.json', 'w') as f: json.dump(d, f)

try:
    data = read_json()
except:
    data = {}
    write_json({})

def set_x(val):
    data["x"] = val
    write_json(data)

def get_x():
    print(data)
    return data["x"]

Why don't you use JSON or csv or any other format to store values?

EDIT:
I suggest following solution:

main.py

import folder.config as config
import folder.module as module

if __name__ == "__main__":
    config.set_x(2)
    module.foo()

init.py

import os, sys; sys.path.append(os.path.dirname(os.path.realpath(__file__)))

module.py

import config

def foo(): print(f"Result from function: { str(config.get_x()) }")

config.py

import json

def read_json():
    with open("data.json") as f: d = json.load(f)
    return d

def write_json(d):
    with open('data.json', 'w') as f: json.dump(d, f)

try:
    data = read_json()
except:
    data = {}
    write_json({})

def set_x(val):
    data["x"] = val
    write_json(data)

def get_x():
    print(data)
    return data["x"]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文