我在profile.json
所在的文件夹中创建了一个script/.py
文件。它看起来像:
{
"name": "",
"lastname": "",
"age": "",
"city": "",
}
我希望将它插入我的脚本中,该脚本包含以下标题:
"info": {
"given_name": "",
"given_Lastname": "",
"given_age": "",
"given_city": ""
}
我想知道如何才能从profile.json
读取我的脚本?这是我第一次使用它,我也是Python的新手。我觉得这可能是一种简单的方法来修改信息,而不必每次都更改代码。
编辑:
试图这样做:
以open('profile.json',encoding ='UTF-8')为json_data: config = json.load(json_data) 打印(配置)
然后:
"info":
{
"given_name": config.given_name
}
印刷品说的是很好的信息,但是当谈到“given_name”:config.given_name 时,我得到一个错误说
AttributeError: 'dict' object has no attribute 'given_name'
答案 0 :(得分:2)
对原始问题的评论有一些很好的建议。如果您想从另一个文件中提取可配置数据,您可以通过查看原始问题来做两个选项。
<强> 1。使用json文件
看起来这是第一个建议的答案,您可以从此JSON文件配置可在程序中使用的变量。假设config.json文件位于程序的当前目录中,您可以执行以下操作:
import json
with open('config.json', 'r') as config_file:
config_data = json.load(config_file)
<强> 2。使用python文件
这是另一个选项,以防您在加载配置时不希望反序列化json。您可以将所有内容保存为python数据类型,因此您只需要导入它。在此示例中,CONFIG_INFO只是一个字典,您可以将其导入到需要它的其他脚本中。我通常在工作时使用此用户名/密码/常规配置。
config.py
CONFIG_INFO: {
"given_name": "test name",
"given_lastname": "test lastname",
"given_age": 12,
"given_city": "Seattle"
}
my_script.py
from config import CONFIG_INFO
print("Config City: {0}".format(CONFIG_INFO["given_city"]))
print("Config Name: {0}".format(CONFIG_INFO["given_name"]))
print("Config Lastname: {0}".format(CONFIG_INFO["given_lastname"]))
print("Config Age: {0}".format(CONFIG_INFO["given_age"]))
答案 1 :(得分:1)
问题在于您尝试将字典键作为属性进行访问(例如:config["given_name"]
vs config.given_name
。您还多次更改了问题,但是您要尝试的是什么do(我认为)很简单。对于你给出的一个简单的例子,你有一个只有一个json对象的json文件,这可能更接近你想要做的事情:
*注意:您的json语法错误,应为{ "info": { ... } }
#!/usr/bin/env python3
'''profile.json:
{
"name": "steve",
"lastname": "jobs",
"age": "70",
"city": "heaven"
}
'''
import json
import io
# Open the JSON File and create a StringIO buffer to hold data
with open('profile.json', 'r') as datafile, io.StringIO() as data:
# Load data into json file
config = json.load(datafile)
# Build json strong
data.write(f'''{{
\r\t"info": {{
\r\t\t"given_name": "{config['name']}",
\r\t\t"given_Lastname": "{config['lastname']}",
\r\t\t"given_age": "{config['age']}",
\r\t\t"given_city": "{config['city']}"
\r\t}}\n}}''')
print(data.getvalue())
# open a new file to save the data (overwrite if it exists)
with open('newfile.json', 'w') as outfile:
# load the json string and dump to outfile
deserialized = json.loads(data.getvalue())
json.dump(deserialized, outfile)
# newfile.json:
#{
# "info": {
# "given_name": "steve",
# "given_Lastname": "jobs",
# "given_age": "70",
# "given_city": "heaven"
# }
#}
这只是你给我的数据的一个简单例子,所以我做了另一个使用json列表而不是json dict的例子:
[{
"name": "steve",
"lastname": "jobs",
"age": "70",
"city": "heaven"
},
{
"name": "steve1",
"lastname": "jobs1",
"age": "71",
"city": "heaven1"
},
{
"name": "steve2",
"lastname": "jobs2",
"age": "72",
"city": "heaven2"
},
{
"name": "steve3",
"lastname": "jobs3",
"age": "73",
"city": "heaven3"
},
{
"name": "steve4",
"lastname": "jobs4",
"age": "74",
"city": "heaven4"
}]
和一个类似的剧本:
#!/usr/bin/env python3
'''profile.json:
'''
import json
import io
# Open the JSON File and create a StringIO buffer to hold data
# Note: StringIO provides a file-like interface over a string
with open('profile.json', 'r') as datafile, io.StringIO() as data:
# Load data into json file
config = json.load(datafile)
# Build json strong
data.write('{\n\t"info": [\n')
#data.write('\t{')
for jsonobj in config:
data.write(f'''\t {{
\r\t\t"given_name": "{jsonobj['name']}",
\r\t\t"given_Lastname": "{jsonobj['lastname']}",
\r\t\t"given_age": "{jsonobj['age']}",
\r\t\t"given_city": "{jsonobj['city']}"
\r\t }}''')
# Note: There is a bug here.
# This will not be able to handle duplicate objects in
# the json list. For a trivial example like this, it works.
if jsonobj == config[-1]:
data.write('\n\t]\n}')
else:
data.write(',\n')
# open a new file to save the data (overwrite if it exists)
with open('newfile.json', 'w') as outfile:
# We need to serialize the json data if we want to write to file
deserialized = json.loads(data.getvalue())
outfile.write(json.dumps(serialized))
# or we can just print it
print(serialized)