You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issues like Role Assignment #3 might require some level of data storage for the program to keep track of data for longer periods of time.
models.py is for data structures outlining data stored outside program memory (such as .env). Anything we put into a database should probably be defined there.
I am initially recommending aiosqlite, an asynchronous implementation of SQLite, though MongoDB might work as well.
models.pyis for data structures outlining data stored outside program memory (such as.env). Anything we put into a database should probably be defined there.aiosqlite, an asynchronous implementation of SQLite, though MongoDB might work as well.