sqliteschema is a python library to dump table schema of a SQLite database file.
Project description
sqliteschema
Summary
Python library to dump table schema of a SQLite database file.
Installation
pip install sqlitestructure
Usage
for verbosity_level in range(2):
print("===== table: verbosity level {} =====".format(verbosity_level))
extractor = sqliteschema.SqliteSchemaExtractor(
db_path, verbosity_level, "table")
print(extractor.dumps())
for verbosity_level in range(6):
print("===== text: verbosity level {} =====".format(verbosity_level))
extractor = sqliteschema.SqliteSchemaExtractor(
db_path, verbosity_level, "text")
print(extractor.dumps())
===== table: verbosity level 0 =====
.. table:: sampletable0
============== =========
Attribute name Data type
============== =========
attr_a INTEGER
attr_b INTEGER
============== =========
.. table:: sampletable1
============== =========
Attribute name Data type
============== =========
foo INTEGER
bar REAL
hoge TEXT
============== =========
.. table:: constraints
============== =========
Attribute name Data type
============== =========
primarykey_id INTEGER
notnull_value REAL
unique_value INTEGER
============== =========
===== table: verbosity level 1 =====
.. table:: sampletable0
+--------------+---------+-----------+--------+------+-----+
|Attribute name|Data type|Primary key|Not NULL|Unique|Index|
+==============+=========+===========+========+======+=====+
|attr_a |INTEGER | | | | |
+--------------+---------+-----------+--------+------+-----+
|attr_b |INTEGER | | | | |
+--------------+---------+-----------+--------+------+-----+
.. table:: sampletable1
+--------------+---------+-----------+--------+------+-----+
|Attribute name|Data type|Primary key|Not NULL|Unique|Index|
+==============+=========+===========+========+======+=====+
|foo |INTEGER | | | |X |
+--------------+---------+-----------+--------+------+-----+
|bar |REAL | | | | |
+--------------+---------+-----------+--------+------+-----+
|hoge |TEXT | | | |X |
+--------------+---------+-----------+--------+------+-----+
.. table:: constraints
+--------------+---------+-----------+--------+------+-----+
|Attribute name|Data type|Primary key|Not NULL|Unique|Index|
+==============+=========+===========+========+======+=====+
|primarykey_id |INTEGER |X | | | |
+--------------+---------+-----------+--------+------+-----+
|notnull_value |REAL | |X | | |
+--------------+---------+-----------+--------+------+-----+
|unique_value |INTEGER | | |X | |
+--------------+---------+-----------+--------+------+-----+
===== text: verbosity level 0 =====
sampletable0
sampletable1
constraints
===== text: verbosity level 1 =====
sampletable0 ("attr_a", "attr_b")
sampletable1 (foo, bar, hoge)
constraints (primarykey_id, notnull_value, unique_value)
===== text: verbosity level 2 =====
sampletable0 ("attr_a" INTEGER, "attr_b" INTEGER)
sampletable1 (foo INTEGER, bar REAL, hoge TEXT)
constraints (primarykey_id INTEGER, notnull_value REAL, unique_value INTEGER)
===== text: verbosity level 3 =====
sampletable0 ("attr_a" INTEGER, "attr_b" INTEGER)
sampletable1 (foo INTEGER, bar REAL, hoge TEXT)
constraints (primarykey_id INTEGER PRIMARY KEY, notnull_value REAL NOT NULL, unique_value INTEGER UNIQUE)
===== text: verbosity level 4 =====
sampletable0 (
"attr_a" INTEGER,
"attr_b" INTEGER
)
sampletable1 (
foo INTEGER,
bar REAL,
hoge TEXT
)
constraints (
primarykey_id INTEGER PRIMARY KEY,
notnull_value REAL NOT NULL,
unique_value INTEGER UNIQUE
)
===== text: verbosity level 5 =====
sampletable0 (
"attr_a" INTEGER,
"attr_b" INTEGER
)
sampletable1 (
foo INTEGER,
bar REAL,
hoge TEXT
)
CREATE INDEX sampletable1_foo_index ON sampletable1('foo')
CREATE INDEX sampletable1_hoge_index ON sampletable1('hoge')
constraints (
primarykey_id INTEGER PRIMARY KEY,
notnull_value REAL NOT NULL,
unique_value INTEGER UNIQUE
)
Full example can be found at examples/get_table_schema.py
Dependencies
Python 2.7+ or 3.3+
Test dependencies
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
sqliteschema-0.7.3.tar.gz
(10.4 kB
view hashes)
Built Distribution
Close
Hashes for sqliteschema-0.7.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 317dc608ab858715d8d3a4073cd7f8f00bac6e2fcbab609424efd4cfcd8e0c21 |
|
MD5 | 0b00215671c010043ffcd1ffdef29248 |
|
BLAKE2b-256 | 355ba4f8ffa27d3624bc48404ef21d00e3849f1ee7651dac701f594853ad8761 |