-
Using TinyDB JSON with S3
Thursday, October 28, 2021
We recently wanted to use S3 as a simple database storing a JSON object. Using both TindyDB and jsonObject I was able to make this work. I created a subclass using tinydb and used boto3 to connect to S3 and pull in a JSON object to use as a pseudo-ORM database. …
-
JSON to Data Object in Python
Friday, February 14, 2020
I recently learned about Class methods. Here is a quick Class method to parse a JSON response into a Data object in Python. …