Git Product home page Git Product logo

ejtraderdb's Introduction

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.

ejtraderdb's People

Contributors

traderpedroso avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.