SQL Lineage Analysis Tool powered by Python
Project description
SQLLineage
SQL Lineage Analysis Tool powered by Python
Never get the hang of a SQL parser? SQLLineage comes to the rescue. Given a SQL command, SQLLineage will tell you its source and target tables, without worrying about Tokens, Keyword, Identifier and all the jagons used by SQL parsers.
Behind the scene, SQLLineage uses the fantastic sqlparse
library to parse
the SQL command, and bring you all the human-readable result with ease.
Documentation
Documentation is online hosted by readthedocs, and you can check the release note there.
Quick Start
Install sqllineage via PyPI:
$ pip install sqllineage
Using sqllineage command to parse a quoted-query-string:
$ sqllineage -e "insert into db1.table1 select * from db2.table2"
Statements(#): 1
Source Tables:
db2.table2
Target Tables:
db1.table1
Or you can parse a SQL file with -f option:
$ sqllineage -f foo.sql
Statements(#): 1
Source Tables:
db1.table_foo
db1.table_bar
Target Tables:
db2.table_baz
Advanced Usage
Multiple SQL Statements
Lineage result combined for multiple SQL statements, with intermediate tables identified:
$ sqllineage -e "insert into db1.table1 select * from db2.table2; insert into db3.table3 select * from db1.table1;"
Statements(#): 2
Source Tables:
db2.table2
Target Tables:
db3.table3
Intermediate Tables:
db1.table1
Verbose Lineage Result
And if you want to see lineage result for every SQL statement, just toggle verbose option
$ sqllineage -v -e "insert into db1.table1 select * from db2.table2; insert into db3.table3 select * from db1.table1;"
Statement #1: insert into db1.table1 select * from db2.table2;
table read: [Table: db2.table2]
table write: [Table: db1.table1]
table rename: []
table drop: []
table intermediate: []
Statement #2: insert into db3.table3 select * from db1.table1;
table read: [Table: db1.table1]
table write: [Table: db3.table3]
table rename: []
table drop: []
table intermediate: []
==========
Summary:
Statements(#): 2
Source Tables:
db2.table2
Target Tables:
db3.table3
Intermediate Tables:
db1.table1
Lineage Visualization
One more cool feature, if you want a graph visualization for the lineage result, toggle graph-visualization option
sqllineage -g -e "insert into db1.table11 select * from db2.table21 union select * from db2.table22; insert into db3.table3 select * from db1.table11 join db1.table12;"
A webserver will be started, showing DAG representation of the lineage result in browser:
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
File details
Details for the file sqllineage-1.1.2.tar.gz
.
File metadata
- Download URL: sqllineage-1.1.2.tar.gz
- Upload date:
- Size: 1.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c477df7b10cc129e4127c12c9ba4aaeb4ae14115e862bdf52769b6788d4928e |
|
MD5 | 6019928d55c865287d138af221200c18 |
|
BLAKE2b-256 | 21b4141ba63ac353e6fa3a219b2727ad576811e4b7c6c3e64d97281ce7d3ace7 |
File details
Details for the file sqllineage-1.1.2-py3-none-any.whl
.
File metadata
- Download URL: sqllineage-1.1.2-py3-none-any.whl
- Upload date:
- Size: 869.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cea10ad749e4cda283434e44ca87720d2b41b5b7e1649902a496d31b0c36935 |
|
MD5 | 56967a42788b2b47a01f13d3ad5816c0 |
|
BLAKE2b-256 | 42fcc62e5b456adc4a17b0e4a31c4b46ab0b3c43f5474ac446f78f356bd6d045 |