this post was submitted on 22 Jun 2023
7 points (100.0% liked)

Python

7507 readers
18 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

๐Ÿ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

๐Ÿ Python project:
๐Ÿ’“ Python Community:
โœจ Python Ecosystem:
๐ŸŒŒ Fediverse
Communities
Projects
Feeds

founded 2 years ago
MODERATORS
 

This is text version of PyCon 2023 tutorial. Video can be found at: https://www.youtube.com/watch?v=5TdIxxBPUSI

top 2 comments
sorted by: hot top controversial new old
[โ€“] JackbyDev@programming.dev 1 points 2 years ago

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.)

[โ€“] stilgar 1 points 2 years ago

It has been the standard for a long time, but it feels like DuckDB is on the way to taking over.

Have you done a comparison of the two?