duckdb support
This commit is contained in:
parent
dde4767e37
commit
c443c6c953
4
setup.py
4
setup.py
|
@ -18,8 +18,8 @@ args = {
|
||||||
# "packages":["transport","info","transport/sql"]},
|
# "packages":["transport","info","transport/sql"]},
|
||||||
|
|
||||||
"packages": find_packages(include=['info','transport', 'transport.*'])}
|
"packages": find_packages(include=['info','transport', 'transport.*'])}
|
||||||
args["keywords"]=['mongodb','couchdb','rabbitmq','file','read','write','s3','sqlite']
|
args["keywords"]=['mongodb','duckdb','couchdb','rabbitmq','file','read','write','s3','sqlite']
|
||||||
args["install_requires"] = ['pyncclient','pymongo','sqlalchemy','pandas','typer','pandas-gbq','numpy','cloudant','pika','nzpy','boto3','boto','pyarrow','google-cloud-bigquery','google-cloud-bigquery-storage','flask-session','smart_open','botocore','psycopg2-binary','mysql-connector-python','numpy','pymssql']
|
args["install_requires"] = ['pyncclient','duckdb-engine','pymongo','sqlalchemy','pandas','typer','pandas-gbq','numpy','cloudant','pika','nzpy','boto3','boto','pyarrow','google-cloud-bigquery','google-cloud-bigquery-storage','flask-session','smart_open','botocore','psycopg2-binary','mysql-connector-python','numpy','pymssql']
|
||||||
args["url"] = "https://healthcareio.the-phi.com/git/code/transport.git"
|
args["url"] = "https://healthcareio.the-phi.com/git/code/transport.git"
|
||||||
args['scripts'] = ['bin/transport']
|
args['scripts'] = ['bin/transport']
|
||||||
# if sys.version_info[0] == 2 :
|
# if sys.version_info[0] == 2 :
|
||||||
|
|
|
@ -3,7 +3,7 @@ This namespace/package wrap the sql functionalities for a certain data-stores
|
||||||
- netezza, postgresql, mysql and sqlite
|
- netezza, postgresql, mysql and sqlite
|
||||||
- mariadb, redshift (also included)
|
- mariadb, redshift (also included)
|
||||||
"""
|
"""
|
||||||
from . import postgresql, mysql, netezza, sqlite, sqlserver
|
from . import postgresql, mysql, netezza, sqlite, sqlserver, duckdb
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
"""
|
||||||
|
This module implements the handler for duckdb (in memory or not)
|
||||||
|
"""
|
||||||
|
from transport.sql.common import Base, BaseReader, BaseWriter
|
||||||
|
|
||||||
|
class Duck :
|
||||||
|
def __init__(self,**_args):
|
||||||
|
self.database = _args['database']
|
||||||
|
def get_provider(self):
|
||||||
|
return "duckdb"
|
||||||
|
|
||||||
|
def _get_uri(self,**_args):
|
||||||
|
return f"""duckdb:///{self.database}"""
|
||||||
|
class Reader(Duck,BaseReader) :
|
||||||
|
def __init__(self,**_args):
|
||||||
|
Duck.__init__(self,**_args)
|
||||||
|
BaseReader.__init__(self,**_args)
|
||||||
|
class Writer(Duck,BaseWriter):
|
||||||
|
def __init__(self,**_args):
|
||||||
|
Duck.__init__(self,**_args)
|
||||||
|
BaseWriter.__init__(self,**_args)
|
Loading…
Reference in New Issue