What is the best library in python used to interact with a SQL database?

I am currently processing text / html data and I want to save the results in some kind of database. My current setup is Pydev with Eclipse.

  • What is the best unallocated database used with my current development environment?

  • What is the best library in python used to interact with the proposed database?

+3
source share
2 answers

If you will not use the database directly from several locations at once, you can use the built-in sqlite3module with the SQLite database.

+2
source

"", , , "text/html data" , . , - /HTML-, , ?

, "SQL" , , sqlalchemy , "" .

SQLite, - , , "" . sqlalchemy , SQL , , SQLite (, PostgreSQL).

+2

Source: https://habr.com/ru/post/1738840/


All Articles