I have a Python 3.5 program that creates an inventory of objects. I created a class of Trampoline
s (color, size, spring, etc.). I constantly will create new instances of the class and I then save a dictionary of them. The dictionary looks like this:
my_dict = {name: instance} and the types are like so {"string": "object"}
My issue is that I want to know how to save this inventory list so that I can start where I left off the last time I closed the program.
I don't want to use pickle
because I'm trying to learn secure ways to do this for more important versions in the future.
I thought about using sqlite3
, so any tips on how to do this easily would be appreciated.
My preferred solution would state how to do it with the json
module. I tried it, but the error I got was:
__main__.Trampoline object at 0x00032432... is not JSON serializable
Edit:
Below is the code I used when I got the error:
out_file = open(input("What do you want to save it as? "), "w")
json.dump(my_dict, out_file, indent=4)
out_file.close()
End of Edit
I've done a good amount of research, and saw that there's also an issue with many of these save options that you can only do one object per 'save file', but that the work around to this is that you use a dictionary of objects, such as the one I made. Any info clarifying this would be great, too!
Here is an example of a class that handles datetime objects.
when you encode to json the
default
function of thecls
is called with object you passed. If you want to handle a type that is not part of the standardjson.JSONEncoder.default
you need to intercept it and return how you want it handled as a valid json type. In this example I turned thedatetime
into astr
and returned that. If its not one of the types I want to special case, I just pass it along to the standardjson.JSONEncoder.default
handler.To use this class you need to pass it in the
cls
param ofjson.dump
orjson.dumps
:Decoding is done the same way but with
json.JSONDecoder
,json.load
, andjson.loads
. However you can not match on type, so you will need to either add an 'hint' in encoding for decoding or know what type it needs to decode.What you might be able to do is saving the instance's attributes to a CSV-file and then just create it when starting up. This might be a bit too much code and is possible not the best way. One obvious problem is that it doesn't work if you don't have the same amount of attributes as parameters, which should be possible to fix if necessary I believe. I just thought I might try and post and see if it helps :)
For a simple class, you can make an easy serializer as below. This will take all of the properties of your
Trampoline
object and put them into a dictionary and then into JSON.If your class is a bit more complicated, then write a more complicated serializer :)