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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pydal2sql_core-0.7.2.tar.gz.
File metadata
- Download URL: pydal2sql_core-0.7.2.tar.gz
- Upload date:
- Size: 118.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6462ec8c8dedfeddbeda8a8eb93a921947590398141a565315bbe114605d8a0
|
|
| MD5 |
122633285b13976083505137d5355650
|
|
| BLAKE2b-256 |
e194aa1cba830e5bf4ba1f908dc3e766ee93eeb3989b91364a616aec1618666a
|
File details
Details for the file pydal2sql_core-0.7.2-py3-none-any.whl.
File metadata
- Download URL: pydal2sql_core-0.7.2-py3-none-any.whl
- Upload date:
- Size: 25.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6d3afd695a7acdd55166637ea509fa82031029b4861d95e2c8316432b81737f
|
|
| MD5 |
7c8f66e01fb401a0715be031048d564b
|
|
| BLAKE2b-256 |
4c1e26fde706adfee0690fca134b0cb3aa7c6a092a793126dc9c2fd6a90fa04e
|