A lightweight, zero-dependency ORM for SQLite in Python
Project description
A lightweight, zero-dependency ORM for SQLite in Python
Explore the docs »
About the Project
·
Getting Started
·
Basic Usage
·
Documentation
·
License
About the Project
SQLiteFrame is an SQLite ORM for python, designed to be as lightweight, intuitive, and simple to use as possible.
It is designed to closely mimic SQL syntax whilst remaining as pythonic as possible to save developers valuable time (and brain cells) when interacting with SQLite databases, by building reusable SQLite query objects using method-chaining, and abstracting away SQLite's connection and cursor system with a single context manager.
Getting Started
SQLiteFrame is available on PyPI. Simply install the package into your project environment with PIP:
pip install SQLiteFrame
To install specific previous versions, take a look at the version history, locate the version tag (vX.Y.Z)
, and run:
pip install SQLiteFrame==X.Y.Z
SQLiteFrame has ZERO external dependencies - it uses only the standard library's sqlite3
to execute SQLite commands.
Basic Usage
Creating a table
To create a table, use the template below. This will automatically run the CreateTable SQLite command for you:
from sqliteframe import Database, Table, String, Integer, Boolean
database = Database("<absolute_database_path>.db", output=False) # When the output parameter is True, the formed SQL query will be outputted into the console as a string every time a query is executed
@Table(database)
class TableName:
primary_key_field = String(primary_key=True)
second_column = Integer
third_column = Boolean(nullable=True)
Inserting Data
To insert data into an existing table, use the following query template:
insert_statement = TableName.insert_into({
TableName.primary_key_field: "PrimaryKey1",
TableName.second_column: 1_000,
TableName.third_column: True
})
insert_statement.execute()
Fetching / Selecting Data
Fetching / selecting data from an existing table with pre-inserted data is done as below:
select_statement = TableName.select(TableName.second_column, TableName.third_column)
select_statement.execute()
Linking Tables (Foreign Keys)
Linking tables can be done with Foreign Keys in SQLiteFrame:
from sqliteframe import Database, Table, String, Integer, Boolean, ForeignKey
database = Database("database.db", output=False)
@Table(database)
class FirstTableName:
primary_key_field = String(primary_key=True)
second_column = Integer
third_column = Boolean(nullable=True)
@Table(database)
class SecondTableName:
primary_key_field = Integer(primary_key=True)
second_column = Boolean(nullable=True)
third_column = String
foreign_key_column = ForeignKey(FirstTableName) # This column now references the primary key of the FirstTableName table, and will infer its type
Complex Data Fetching / Selection
To build more complex select queries, you can use join
, where
, and order by
:
from sqliteframe import JoinTypes, OrderTypes
select_statement = FirstTableName.select(SecondTableName.second_column, FirstTableName.third_column).join(
SecondTableName, SecondTableName.foreign_key_column == FirstTableName.primary_key_field, join_type=JoinTypes.LEFT
).where(
SecondTableName.third_column == "Criteria"
).order_by(
FirstTableName.second_column, (OrderTypes.DESCENDING, OrderTypes.NULLS_FIRST)
)
select_statement.execute()
Editing Data
To edit pre-inserted data, a set
query can be used:
set_statement = FirstTableName.set({
TableName.second_column: 10_000,
TableName.third_column: None # This column is nullable, and so this is acceptable
}).where(
(Person.primary_key_column == "PrimaryKey1") & (Person.second_column > 500) # Brackets are ESSENTIAL with complex where clauses, as these statements use bitwise operators, which often have unexpected operator precedence
)
set_statement.execute()
NOTE: The where clause can be emitted from this statement, but this would update every record in the target table.
Deleting Data
To delete pre-inserted table data, use the delete_from
query:
delete_statement = TableName.delete_from().where(
(TableName.second_column <= 250)
)
delete_statement.execute()
NOTE: The where clause can be emitted from this statement, but this would delete every record in the target table.
Dropping Tables
Dropping tables does not delete the table reference from python - just in the SQL. Tables which others tables depend on / reference cannot be deleted by default to maintain referential integrity. This behaviour can be changed when defining the referencing foreign key column.
To entirely drop (delete) an existing table, use the drop_table
statement:
SecondTableName.drop_table().execute() # This table is dropped first as it depends on the FirstTableName table
FirstTableName.drop_table().execute() # Cannot drop this table until the SecondTableName table is dropped
For more examples and specific detail, please refer to the Documentation
License
Distributed under the MIT License. See LICENSE for more information.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for SQLiteFrame-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4ab69363bfe3bca2f7f99f0adacec3eb4f76476905f02318a5d76b4ad391f30 |
|
MD5 | 11f58904ca26911a908f855ac33459e8 |
|
BLAKE2b-256 | e24011dca93e22cccb9a0bcdc6e26bb8e0a6e389d3e2ba5aaf0f86fe49a9c2a0 |