Skip to main content

ThanoSQL SDK for Python

Project description

ThanoSQL Python Library

The ThanoSQL Python library provides convenient access to the ThanoSQL API from any Python 3.8+ application. The library covers all ThanoSQL operations that users can do, such as querying, editing tables, and much more.

Installation

Refer to the following instructions to install the ThanoSQL Python library from PyPI.

pip install thanosql

[!WARNING] Make sure to uninstall ThanoSQL Magic first.

pip uninstall thanosql-magic

In order to use the library with ThanoSQL Magic,

pip install 'thanosql[magic]'

Alternatively, you can also install from source. First, clone this repository.

git clone https://github.com/smartmind-team/thanosql-sdk-python.git
cd thanosql-sdk-python

Install the SDK by using pip install. Note that the Python version used during development is 3.8.10.

pip install -e .
pip install -e ."[dev]" # include unit test & docs (requires python >= 3.9)
pip install -e ."[magic]" # include magic

Usage

In order to use the library, a working workspace engine is required. Create a new Python or IPython notebook file. Import the thanosql package, create a ThanoSQL client with your API token and engine URL, and then you can use all the functions in the library. For more examples, head over to the examples directory.

  1. First, set up your API_TOKEN and ENGINE_URL (recommended). You can find them by accessing your workspace's settings page. Head over to the Developer tab, and then copy your API Token and Engine URL.

    export THANOSQL_API_TOKEN='your-api-token-here'
    export THANOSQL_ENGINE_URL='your-engine-url-here'
    
  2. Import the ThanoSQL client and use it to query your ThanoSQL Workspace.

    from thanosql import ThanoSQL
    
    client = ThanoSQL()
    # defaults to getting the token using os.environ.get("THANOSQL_API_TOKEN"),
    # and also defaults to getting the url using os.environ.get("THANOSQL_ENGINE_URL"),
    # client = ThanoSQL(
    #     api_token='your-api-token-here',
    #     engine_url='your-engine-url-here'
    # )
    
    res = client.query.execute(query="SELECT 1")
    print(res.model_dump_json(indent=4))
    
    tables = client.table.list(schema="public")
    
    # do something with the list of tables
    for table in tables:
       print(table.name)
    

Magic

thanosql-magic is a Jupyter Notebook extension that provides SQL query capabilities using ThanoSQL. This magic extension enables users to interact with ThanoSQL Workspace databases using extended SQL syntax within a Jupyter notebook.

thanosql-magic uses IPython magic. IPython magic is a special command that can be used in the IPython shell to perform specific tasks before executing the code. Since Jupyter includes the IPython shell, you can also use these magic commands in Jupyter Notebook.

IPython magic commands are prefixed with % or %% and % applies the magic to a single line of code, while %% applies the magic to multiple lines of code.

Installation

To install thanosql-magic, you can use pip:

pip install 'thanosql[magic]'

Once installed, you can load the extension in your Jupyter notebook by running:

%load_ext thanosql

Usage

After loading the extension, you can connect to your ThanoSQL Engine instance by setting the thanosql variable:

  1. Setting API_TOKEN

    %thanosql API_TOKEN=<Issued_API_TOKEN>
    
  2. Changing the Default API URI (Optional)

    %thanosql http://localhost:8000/api/v1/query
    
  3. Using Magic Commands

    You can then execute SQL queries on your Thanos data using the %thanosql magic command:

    %%thanosql
    SELECT * FROM users
    

    This will run the SQL query and display the results in your Jupyter notebook.

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

thanosql-1.0.11.tar.gz (30.2 kB view details)

Uploaded Source

Built Distribution

thanosql-1.0.11-py3-none-any.whl (28.9 kB view details)

Uploaded Python 3

File details

Details for the file thanosql-1.0.11.tar.gz.

File metadata

  • Download URL: thanosql-1.0.11.tar.gz
  • Upload date:
  • Size: 30.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for thanosql-1.0.11.tar.gz
Algorithm Hash digest
SHA256 eb2e508bb6e79f4ef4e84a49ca4e4332665d0a36711162823e8165a90619ddc8
MD5 8594b6b184649aa4f28e1f461993bf54
BLAKE2b-256 d81b65c82a07ea5944bb2622e2243d44a4974faa5e47f3ae78d01ac094ea58cb

See more details on using hashes here.

File details

Details for the file thanosql-1.0.11-py3-none-any.whl.

File metadata

  • Download URL: thanosql-1.0.11-py3-none-any.whl
  • Upload date:
  • Size: 28.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for thanosql-1.0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 12bbac9775ed19d11fddb48170266708c2a0b23e06b4cf7965a0214e36624efd
MD5 02852d76cad01a10268bb40f361d6b86
BLAKE2b-256 f99139899670fa402a8abd5eff265a99937430cf9896cf4992bb1e635943e439

See more details on using hashes here.

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