回答済みとにかく最後にピクルスで行きました
わかりましたので、私が尋ねた別の質問に関するいくつかのアドバイスで、私はpickleを使用して辞書をファイルに保存するように言われました。
ファイルに保存しようとしていた辞書は
members = {'Starspy' : 'SHSN4N', 'Test' : 'Test1'}
Pickleがファイルに保存したとき...これはフォーマットでした
(dp0
S'Test'
p1
S'Test1'
p2
sS'Test2'
p3
S'Test2'
p4
sS'Starspy'
p5
S'SHSN4N'
p6
s.
文字列をファイルに保存する別の方法を教えてください。
これは、保存したい形式です
メンバー= {'Starspy': 'SHSN4N'、 'Test': 'Test1'}
完全なコード:
import sys
import shutil
import os
import pickle
tmp = os.path.isfile("members-tmp.pkl")
if tmp == True:
os.remove("members-tmp.pkl")
shutil.copyfile("members.pkl", "members-tmp.pkl")
pkl_file = open('members-tmp.pkl', 'rb')
members = pickle.load(pkl_file)
pkl_file.close()
def show_menu():
os.system("clear")
print "\n","*" * 12, "MENU", "*" * 12
print "1. List members"
print "2. Add member"
print "3. Delete member"
print "99. Save"
print "0. Abort"
print "*" * 28, "\n"
return input("Please make a selection: ")
def show_members(members):
os.system("clear")
print "\nNames", " ", "Code"
for keys in members.keys():
print keys, " - ", members[keys]
def add_member(members):
os.system("clear")
name = raw_input("Please enter name: ")
code = raw_input("Please enter code: ")
members[name] = code
output = open('members-tmp.pkl', 'wb')
pickle.dump(members, output)
output.close()
return members
#with open("foo.txt", "a") as f:
# f.write("new line\n")
running = 1
while running:
selection = show_menu()
if selection == 1:
show_members(members)
print "\n> " ,raw_input("Press enter to continue")
Elif selection == 2:
members == add_member(members)
print members
print "\n> " ,raw_input("Press enter to continue")
Elif selection == 99:
os.system("clear")
shutil.copyfile("members-tmp.pkl", "members.pkl")
print "Save Completed"
print "\n> " ,raw_input("Press enter to continue")
Elif selection == 0:
os.remove("members-tmp.pkl")
sys.exit("Program Aborted")
else:
os.system("clear")
print "That is not a valid option!"
print "\n> " ,raw_input("Press enter to continue")
確かに、CSVとして保存します。
import csv
w = csv.writer(open("output.csv", "w"))
for key, val in dict.items():
w.writerow([key, val])
それを読むと:
import csv
dict = {}
for key, val in csv.reader(open("input.csv")):
dict[key] = val
別の選択肢はjsonです(バージョン2.6以降の場合はjson
、または2.5以下の場合はsimplejson
をインストールします)。
>>> import json
>>> dict = {"hello": "world"}
>>> json.dumps(dict)
'{"hello": "world"}'
最近の最も一般的なシリアル化形式はJSONです。JSONは広くサポートされており、辞書のような単純なデータ構造を非常に明確に表します。
>>> members = {'Starspy' : 'SHSN4N', 'Test' : 'Test1'}
>>> json.dumps(members)
'{"Test": "Test1", "Starspy": "SHSN4N"}'
>>> json.loads(json.dumps(members))
{u'Test': u'Test1', u'Starspy': u'SHSN4N'}
YAML形式(pyyaml経由)は、あなたにとって良いオプションかもしれません:
pp.pprint(the_dict)
とは異なり、これはそれほどきれいではなく、一緒に実行されますが、str()
は少なくとも簡単なタスクのために簡単な方法で辞書を保存できるようにします。
f.write( str( the_dict ) )
pickle
をお勧めしますが、別の方法が必要な場合は、klepto
を使用できます。
>>> init = {'y': 2, 'x': 1, 'z': 3}
>>> import klepto
>>> cache = klepto.archives.file_archive('memo', init, serialized=False)
>>> cache
{'y': 2, 'x': 1, 'z': 3}
>>>
>>> # dump dictionary to the file 'memo.py'
>>> cache.dump()
>>>
>>> # import from 'memo.py'
>>> from memo import memo
>>> print memo
{'y': 2, 'x': 1, 'z': 3}
klepto
を使用して、serialized=True
を使用した場合、辞書はクリアテキストではなくピクルス辞書としてmemo.pkl
に書き込まれます。
ここでklepto
を取得できます: https://github.com/uqfoundation/klepto
dill
は、おそらくpickle
自体よりも、pickleに適した選択肢です。これは、dill
がPythonのほとんどすべてをシリアル化できるためです。 klepto
もdill
を使用できます。
ここでdill
を取得できます: https://github.com/uqfoundation/dill