Created
April 20, 2017 02:12
-
-
Save hailiang-wang/567ebca0f59c612eb977065008aad867 to your computer and use it in GitHub Desktop.
Convert python pickle file to json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/python3 | |
''' | |
Convert a pkl file into json file | |
''' | |
import sys | |
import os | |
import _pickle as pickle | |
import json | |
def convert_dict_to_json(file_path): | |
with open(file_path, 'rb') as fpkl, open('%s.json' % file_path, 'w') as fjson: | |
data = pickle.load(fpkl) | |
json.dump(data, fjson, ensure_ascii=False, sort_keys=True, indent=4) | |
def main(): | |
if sys.argv[1] and os.path.isfile(sys.argv[1]): | |
file_path = sys.argv[1] | |
print("Processing %s ..." % file_path) | |
convert_dict_to_json(file_path) | |
else: | |
print("Usage: %s abs_file_path" % (__file__)) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes. I agree on that. But the JSON is no more reversible back to the way dictionary was.