Postnormalism is Not an Object Relational Mapper (NORM) it is a lightweight and simple-to-use Python library for managing PostgreSQL database schemas. It provides an easy way to define tables and functions, organize schema items, and create them in a database with a specified load order.
Project description
postnormalism: PostgreSQL Schema Management
postnormalism is Not an Object Relational Mapper (NORM) it is a lightweight and simple-to-use Python library for managing PostgreSQL database schemas. It provides an easy way to define tables and functions, organize schema items, and create them in a database with a specified load order.
Features
- Define tables and functions using Python dataclasses
- Create database items (Tables, Functions) with comments
- Group related database items and create them within a single transaction
- Create a Database object that allows loading database items in a specified load order and managing database extensions
- IF NOT EXISTS mode for loading
NORM vs. ORM: Features Comparison
postnormalism is a lightweight and simple-to-use Python library for managing PostgreSQL database schemas. It does not possess all the characteristics of a full-fledged ORM, focusing mainly on schema management and organization.
Here is a comparison of postnormalism's features with typical ORM characteristics:
-
Object-oriented representation: postnormalism does not map database tables to classes or table rows to instances. Instead, it uses dataclasses to represent schema items, like tables and functions, for organizing and generating schema items.
-
Abstraction: postnormalism provides a smidgen of abstraction for creating schema items, but doesn't bother with things like query generation.
-
Query generation: postnormalism does not include a query builder or DSL for constructing database queries. It focuses on schema management, not query generation. You are the query generator.
-
Transactions and concurrency: postnormalism kindly allows you to group related schema items and create them within a single transaction. However, it knows when to draw the line and leaves transaction management and concurrency handling for other database operations to more heavyweight solutions.
-
Schema management: postnormalism excels at schema management by allowing you to excel at schema management. Create schema items and load them in a specified order.
-
Relationships and associations: postnormalism doesn't get entangled in relationships or associations between tables or objects. After all, it's just a simple library with simple needs. You have to understand your schema.
-
Data validation and constraints: postnormalism doesn't have time for built-in data validation or constraint enforcement. But fear not, you can still define constraints in your schema items.
-
Caching: postnormalism believes in living in the moment, so caching mechanisms to improve performance are left to others.
Should you require a complete ORM solution for your project, consider using a full-fledged ORM like SQLAlchemy or Django's ORM for Python. postnormalism is for those brave souls who seek a lightweight way to manage PostgreSQL schemas without all the bells and whistles.
Installation
You can install postnormalism using pip:
pip install postnormalism
Usage
Defining Database Items
To define a table or a function, use the Table
and Function
dataclasses from the postnormalism
module:
from postnormalism.schema import Table, Function
Define a Table
from postnormalism.schema import Table
create_table_sql = """
CREATE TABLE material (
id uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
name varchar(120) NOT NULL,
description varchar(240)
);
"""
Material = Table(create=create_table_sql)
Define a Postgresql Function
from postnormalism.schema import Function
create_function_sql = """
CREATE FUNCTION get_material_for_variant(variant uuid)
RETURNS uuid
AS $$
material_plan = plpy.prepare("SELECT material FROM material_variant WHERE id = $1",
["uuid"])
material = plpy.execute(material_plan, [variant])[0]["material"]
return material
$$ LANGUAGE plpython3u;
"""
comment_function_sql = """
COMMENT ON FUNCTION get_material_for_variant IS
$$ An example function $$;
"""
get_material_for_variant = Function(create=create_function_sql, comment=comment_function_sql)
Creating Database Items in a Database
To create database items in a PostgreSQL database, use the Database
class:
import psycopg
from postnormalism.schema import Database
from your_example_file import Material, get_material_for_variant
universe = Database(
load_order=[
Material, get_material_for_variant,
[Player, Inventory], # example of grouping DatabaseItems into a transaction
],
extensions=['uuid-ossp', 'plpython3u', 'pgcrypto']
)
db_connection_string = "dbname=test user=postgres password=secret host=localhost port=port"
connection = psycopg.connect(db_connection_string)
cursor = connection.cursor()
universe.create(cursor)
connection.commit()
connection.close()
Contributing
Please submit a pull request or create an issue if you have any suggestions or improvements.
License
postnormalism is released under the MIT License. See the LICENSE
file 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 postnormalism-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b32e25e82bf58cc0d7bf900b2d8dfa2659c3d99827a312dd88292ad59b9d365 |
|
MD5 | 6d3e4cc6f8cfbbe739159c21af86478f |
|
BLAKE2b-256 | 2f66e8638cd6449f40af777107d01bc0b4b52df76472bc0a0e93b6d3713ec562 |