Skip to main content

SQlite and QuestDB

Project description

Pypi Publish Release License

Install requirements:

pip install ejtraderDB - U

Description for DictSQlite

import

from ejtraderDB import DictSQlite

api = DictSQLite('history',multithreading=True)


# save to sqlite
api["keyname"] = dataFrame


# read from sqlite

dataFrame = api['keyname']

print(dataFrame)

Description for QuestDb

API wrapper following the basic API requirements of QuestDB described here.

Import

from ejtraderDB import QuestDB

api = QuestDB()

Methods

/imp - Import

/imp streams tabular text data directly into a table. It supports CSV, TAB and pipe (|) delimited inputs with optional headers. There are no restrictions on data size. Data types and structures are detected automatically, without additional configuration. In some cases, additional configuration can be provided to improve the automatic detection as described in user-defined schema.

res = api.imp(filename="test.csv", name="ejtraderDB")

See qdb_api.py or API reference for all possible parameters.

/exec - Execute queries

/exec compiles and executes the SQL query supplied as a parameter and returns a JSON response.

res = api.exec(query="SELECT * FROM ejtraderDB")

SQL queries will be verified via sqlvalidator==0.0.17 there might be issues with QuestDB SQL Syntax.

See qdb_api.py or API reference for all possible parameters.

/exp - Export data

This endpoint allows you to pass url-encoded queries but the request body is returned in a tabular form to be saved and reused as opposed to JSON.

res = api.exp(query="SELECT * FROM ejtraderDB")

you can now choose between the following output formats:

  • CSV: qdb.exp(query="...", output="csv")
  • DataFrame: qdb.exp(query="...", output="pandas"

See qdb_api.py or API reference for all possible parameters.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ejtraderDB-1.0.4.tar.gz (28.1 kB view hashes)

Uploaded Source

Built Distribution

ejtraderDB-1.0.4-py2.py3-none-any.whl (31.7 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page