This repository contains the official implementation of QuestDB's dialect for SQLAlchemy, as well as an engine specification for Apache Superset, using psycopg2 for database connectivity.
The Python module is available here:
https://pypi.org/project/questdb-connect/Psycopg2 is a widely used and trusted Python module for connecting to, and working with, QuestDB and other PostgreSQL databases.
SQLAlchemy is a SQL toolkit and ORM library for Python. It provides a high-level API for communicating with relational databases, including schema creation and modification. The ORM layer abstracts away the complexities of the database, allowing developers to work with Python objects instead of raw SQL statements.
Apache Superset is an open-source business intelligence web application that enables users to visualize and explore data through customizable dashboards and reports. It provides a rich set of data visualizations, including charts, tables, and maps.
- Python from 3.9 to 3.11 (superset itself use version 3.9.x)
- Psycopg2
('psycopg2-binary~=2.9.6')
- SQLAlchemy
('SQLAlchemy>=1.4')
You need to install these packages because questdb-connect depends on them. Note that questdb-connect
v1.1
is compatible with both SQLAlchemy
v1.4 and v2.0 while questdb-connect
v1.0 is compatible with SQLAlchemy
v1.4 only.
These are versions released for testing purposes.
You can install this package using pip:
pip install questdb-connect
Use the QuestDB dialect by specifying it in your SQLAlchemy connection string:
questdb://admin:quest@localhost:8812/main
questdb://admin:[email protected]:8812/main
From that point on use standard SQLAlchemy:
import datetime
import os
os.environ.setdefault('SQLALCHEMY_SILENCE_UBER_WARNING', '1')
import questdb_connect.dialect as qdbc
from sqlalchemy import Column, MetaData, create_engine, insert
from sqlalchemy.orm import declarative_base
Base = declarative_base(metadata=MetaData())
class Signal(Base):
__tablename__ = 'signal'
__table_args__ = (qdbc.QDBTableEngine('signal', 'ts', qdbc.PartitionBy.HOUR, is_wal=True),)
source = Column(qdbc.Symbol)
value = Column(qdbc.Double)
ts = Column(qdbc.Timestamp, primary_key=True)
def main():
engine = create_engine('questdb://localhost:8812/main')
try:
Base.metadata.create_all(engine)
with engine.connect() as conn:
conn.execute(insert(Signal).values(
source='coconut',
value=16.88993244,
ts=datetime.datetime.utcnow()
))
finally:
if engine:
engine.dispose()
if __name__ == '__main__':
main()
Follow the instructions available here.
This package is open-source, contributions are welcome. If you find a bug or would like to request a feature, please open an issue on the GitHub repository. Have a look at the instructions for developers if you would like to push a PR.