I am working in python for a game like something. I’ve seen some people do it, but I don’t know how to keep the information that the replit has stored. When a user plays it, they can delete the tab and come back later to pick up a process. Does anybody know how to do it?
1 Like
It is either using cookies or web storages (newer cookies) or they use a data base like Mongo db or Replit db
1 Like
make use of replit db If you want to store information for games, use a non-local hosted db if you want to store information and send it to other players.
1 Like
um, how? Can python manipulate the databases? Do you need another language?
The only way to do this securely is on the web. A console game can’t securely use a database as you would need to have the credentials public.
1 Like