#CircuitPython database module (solved)

1 messages · Page 1 of 1 (latest)

crystal escarp
#

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.

visual sonnet
#

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.

crystal escarp
#

That is what I was afraid of, thank you!