Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python *Bytes, sqlite3 (C library that provides a lightweight disk-based…
-
sqlite3
C library that provides a lightweight disk-based database that doesn’t require a separate server process and allows accessing the database using a nonstandard variant of the SQL query language
-
It’s also possible to prototype an application using SQLite and then port the code to a larger database such as PostgreSQL or Oracle.
-
datetime
Aware Objects
-
sufficient knowledge of applicable algorithmic and political time adjustments, such as time zone and daylight saving time information
-
Naive Objects
does not contain enough information to unambiguously locate itself relative to other date/time objects
represents Coordinated Universal Time (UTC), local time, or time in some other timezone is purely up to the program,
easy to understand and to work with, at the cost of ignoring some aspects of reality.
-
itertools
implements a number of iterator building blocks inspired by constructs from APL, Haskell, and SML. Each has been recast in a form suitable for Pytho
-
collections
module implements specialized container datatypes providing alternatives to Python’s general purpose built-in containers, dict, list, set, and tuple.
TLDR
sqlite3
conn = sqlite.connect(filename) - used to connect to db, use :memory: to create db in RAM.
-
-
-
-
-
-