B
B
badalcode2022-03-28 16:46:07
Python
badalcode, 2022-03-28 16:46:07

Database services?

Good hour, please advise the services (preferably free) on which I could keep my small database and access it through my program. Well, to edit it, of course, only I could.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
Danil Gorev, 2022-03-28
@badalcode

If the need is only within the framework of one application and local access to the database, then SQLite is suitable for you - a file database that is stored on your machine. SQLite is provided with python3 so no additional dependencies required!
You can read more here - https://docs.python.org/3/library/sqlite3.html
You can use this database with any available ORM (Tortoise, ormar, SQLAlchemy), so it is the best option for a small application.
For more "combat" databases, there are no free cloud solutions, but on https://vds.timeweb.ru/ you can take a PostgreSQL database for 99r/month, which may suit you :)

V
voproser45654, 2022-03-28
@voproser45654

MongoDB

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question