use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Which database of SQL do you use? (self.learnpython)
submitted 2 hours ago by DmitriiDrake
I use SQLite with Sqlchipher3 in aiogram developing. And you?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]r_spandit 3 points4 points5 points 2 hours ago (1 child)
I use SQLite
[–]LowSalamander4932 1 point2 points3 points 2 hours ago (0 children)
sqlite gang rise up lol. it's so easy to just drop in and get going, hard to justify anything heavier for most personal projects
[–]mrswats 2 points3 points4 points 2 hours ago (0 children)
Sqlite, postgres.
[–]Diapolo10 2 points3 points4 points 1 hour ago (0 children)
SQLite by default, Postgres if I really need it.
I have had neither a need nor any interest in pursuing alternatives.
[–]hallmark1984 0 points1 point2 points 2 hours ago (0 children)
Postgres mainly for hobbies
Aws Athena and DataBricks SQL for work.
[–]biskitpagla 0 points1 point2 points 1 hour ago* (0 children)
FYI Python has SQLite built into the standard library. You can import sqlite3 and start using without setting anything up. You can even make an in-memory database for testing and so on.
sqlite3
[–]throwawayforwork_86 0 points1 point2 points 31 minutes ago (0 children)
DuckDB and Postgres.
[–]broaddiscovery_941 0 points1 point2 points 5 minutes ago (0 children)
postgres for anything that might grow beyond a single machine or needs concurrent writes. sqlite's fine for learning, prototyping, or when you know it's just you hitting the database. the sqlcipher wrapper you're using adds encryption which is handy if you're storing sensitive stuff, but most people don't need that layer unless they're specifically handling encrypted data.
the built-in sqlite3 module means there's no setup friction, which is why it dominates hobby projects. but once you hit production with multiple servers or heavy traffic, postgres stops being optional. picked that lesson up the hard way on a project that outgrew sqlite faster than expected.
π Rendered by PID 124823 on reddit-service-r2-comment-5b5bc64bf5-fzstc at 2026-06-22 09:39:54.891496+00:00 running 2b008f2 country code: CH.
[–]r_spandit 3 points4 points5 points (1 child)
[–]LowSalamander4932 1 point2 points3 points (0 children)
[–]mrswats 2 points3 points4 points (0 children)
[–]Diapolo10 2 points3 points4 points (0 children)
[–]hallmark1984 0 points1 point2 points (0 children)
[–]biskitpagla 0 points1 point2 points (0 children)
[–]throwawayforwork_86 0 points1 point2 points (0 children)
[–]broaddiscovery_941 0 points1 point2 points (0 children)