CLI-agnostic pydal2sql code; Convert pydal define_tables to SQL using pydal's CREATE TABLE logic.
Project description
pydal2sql-core
Companion library for pydal2sql
containing the actual logic.
The other library only serves as a Typer-based CLI front-end.
More Documentation coming soon!
Table of Contents
Installation
pip install pydal2sql-core
As a Python Library
pydal2sql-core
also exposes a generate_sql
method that can perform the same actions on one (for CREATE) or two (for
ALTER) pydal.Table
objects when used within Python.
from pydal import DAL, Field
from pydal2sql_core import generate_sql
db = DAL(None, migrate=False) # <- without running database or with a different type of database
person_initial = db.define_table(
"person",
Field(
"name",
"string",
notnull=True,
),
Field("age", "integer", default=18),
Field("float", "decimal(2,3)"),
Field("nicknames", "list:string"),
Field("obj", "json"),
)
print(
generate_sql(
db.person, db_type="psql" # or sqlite, or mysql; Optional with fallback to currently using database type.
)
)
CREATE TABLE person
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR(512),
age INTEGER,
float NUMERIC(2, 3),
nicknames TEXT,
obj TEXT
);
person_new = db.define_table(
"person",
Field(
"name",
"text",
),
Field("birthday", "datetime"),
redefine=True
)
generate_sql(
person_initial,
person_new,
db_type="psql"
)
ALTER TABLE person
ADD "name__tmp" TEXT;
UPDATE person
SET "name__tmp"=name;
ALTER TABLE person DROP COLUMN name;
ALTER TABLE person
ADD name TEXT;
UPDATE person
SET name="name__tmp";
ALTER TABLE person DROP COLUMN "name__tmp";
ALTER TABLE person
ADD birthday TIMESTAMP;
ALTER TABLE person DROP COLUMN age;
ALTER TABLE person DROP COLUMN float;
ALTER TABLE person DROP COLUMN nicknames;
ALTER TABLE person DROP COLUMN obj;
License
pydal2sql-core
is distributed under the terms of the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pydal2sql_core-0.3.4.tar.gz
(145.8 kB
view details)
Built Distribution
File details
Details for the file pydal2sql_core-0.3.4.tar.gz
.
File metadata
- Download URL: pydal2sql_core-0.3.4.tar.gz
- Upload date:
- Size: 145.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a01b5227e1de76961253ea185079a342409080f8352f866770560b31303af55 |
|
MD5 | db8df5dafacf9fb1c75db6fe5f1232ea |
|
BLAKE2b-256 | b92900c9786e4b8e67ac817ae4443bb924c84efdb242f0bfd8e91145aa4a3890 |
Provenance
File details
Details for the file pydal2sql_core-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: pydal2sql_core-0.3.4-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19ee66ae62cea73a319397efe54e63ffe8ecc0aae6643cf146b110f6823c3e94 |
|
MD5 | 9a907f94fec1a437df361a5854def635 |
|
BLAKE2b-256 | 74a9b59fd5236b5b4785aedbffff72bffad636181d1fd40cfdcd781ed1f04ef6 |