我正在研究一个python(3.6)项目,需要从Python字典中写入JSON文件。
这是我的字典:
{'deployment_name': 'sec_deployment', 'credentials': {'type': 'type1', 'project_id': 'id_001',}, 'project_name': 'Brain', 'project_id': 'brain-183103', 'cluster_name': 'numpy', 'zone_region': 'europe-west1-d', 'services': 'Single', 'configuration': '', 'routing': ''}
我需要将credentials
密钥写入JSON文件。
这是我尝试过的方法:
tempdir = tempfile.mkdtemp()
saved_umask = os.umask(0o077)
path = os.path.join(tempdir)
cred_data = data['credentials']
with open(path + '/cred.json', 'a') as cred:
cred.write(cred_data)
credentials = prepare_credentials(path + '/cred.json')
print(credentials)
os.umask(saved_umask)
shutil.rmtree(tempdir)
它不是写JSON格式的文件,因此生成的文件为:
{
'type': 'type1',
'project_id': 'id_001',
}
它带有单引号而不是双引号。
答案 0 :(得分:2)
使用json
模块
例如:
import json
with open(path + '/cred.json', 'a') as cred:
json.dump(cred_data, cred)
答案 1 :(得分:0)
实际上,应该使用更多的Python 3本机方法。
tempfile
要对此进行细分:
NamedTemporaryFile
,并确保使用json
命名flush()
文件转储delete=False
请注意,调用NamedTemporaryFile
时,我们可以使用import os, sys, time
import subprocess
server = subprocess.Popen('./start.sh',stdin=subprocess.PIPE,shell=True)
content = ''
previousContent = ''
while True:
#you can add a time.sleep() to reduce lag
f = open('logs/latest.log')
content = f.read()
if previousContent in content:
content.replace(previousContent,'')
if content != '':
print(content)
command = input('')
if command:
server.stdin.write(bytes(command + '\r\n', 'ascii'))
server.stdin.flush()
previousContent = f.read()
将文件保存更长时间