This is text version of PyCon 2023 tutorial. Video can be found at: https://www.youtube.com/watch?v=5TdIxxBPUSI
You must log in or register to comment.
I’m a big fan of SQLite. They’ve added strict tables to get around some of the more odd aspects. With a strict table you can no longer put random text into numeric columns. (It was always able to parse numeric strings to numeric types but would happily store stuff like
'howdy'
there too.)