#CircuitPython database module (solved)
1 messages · Page 1 of 1 (latest)
1 messages · Page 1 of 1 (latest)
Does sort of database module exist for CircuitPython? What I really need is a method of persisting data so my pypportal doesn't need to constantly talk to a remote API for everything.
I am not aware of any database. Normally you would store the data in memory such as objects or variables. If you want the data to persist over time, you could write a dict or json file to the file storage.
That is what I was afraid of, thank you!