Skip to main content

QAPI SDK provides a library of classes for working with Query API in your Python code.

Project description

QAPI SDK

QAPI SDK provides a library of classes for working with Query API in your Python code.

Requirements

  • Python 3.6+
  • Must be logged into the private VPN.

Installation

pip install qapi-sdk 

Environment Variables

  • QAPI_URL: QAPI Base URL.

  • EMAIL: Your Email

    Optional: If you choose to add your AWS credentials, you can use the read_columns method to read in the headers of your CSV file automatically.

  • AWS_ACCESS_KEY_ID: AWS Access Key ID

  • AWS_SECRET_ACCESS_KEY: AWS Secret Access Key

  • AWS_DEFAULT_REGION: AWS Default Region

Examples

Query

  • FEED ID: The table must exist in Athena.
  • QUERY ID: The query id is used as an identifier for the query. Query id must be unique. Once you have retrieved your data from S3 it is advised to delete the query.
  • SQL: The SQL query to be executed.
import time

from dotenv import load_dotenv

from qapi_sdk import Query

load_dotenv()

# Step 1: Assign your FEED ID, QUERY ID, and SQL QUERY
feed_id = "[FEED/TABLE NAME]"
query_id = "[QUERY NAME]"
query = f"SELECT * FROM {feed_id}"

# Step 2: Create a Query object
my_query = Query(
    feed_id=feed_id,
    query_id=query_id
)

# Step 3: Execute the query push
my_query.push_query(sql=query)

# Step 4: Wait for the query to complete
while my_query.query_status():
    print("Waiting for query to complete...")
    time.sleep(10)

# Step 5 (Optional): Delete the query
my_query.delete_query()

Feed

  • FEED ID: The table name you want to create in Athena.
  • PUSH ID: The push id is used as an identifier for the query. Push id must be unique.
  • COLUMNS: The name of the columns that will be pushed to Athena.
import time

from dotenv import load_dotenv

from qapi_sdk import Feed

load_dotenv()

# Step 1: Assign your FEED ID, PUSH ID, and COLUMNS
feed_id = "test_feed"
push_id = "test_push"

# Step 1A: You can manually assign the columns
columns = [
    {
        "name": "email",
        "type": "string"
    },
    {
        "name": "md5email",
        "type": "string"
    },
    {
        "name": "firstname",
        "type": "string"
    }
]

# Step 1B (Optional): If you added AWS credentials, you can use the `read_columns` method to read 
# in the headers of your CSV file automatically.
columns = my_feed.read_columns(
    data_bucket="[DATA BUCKET]",
    data_key_dir="path/to/your/data/",
    delimiter=","
)

# Step 2: Create a Feed object
my_feed = Feed(feed_id=feed_id, push_id=push_id)

# Step 3: Define where to grab the data and format of the data.Then push the data to Athena.
my_feed.push_feed(
    pull_path_bucket="[DATA BUCKET]",
    pull_path_key="path/to/your/data/",
    columns=columns,
    separator=","
)

# Step 4: Wait for the push to complete
while my_feed.push_status():
    print("Waiting for push to complete...")
    time.sleep(10)

# Step 5 (Optional): Delete the push
my_feed.delete_push()

# Step 6 (Optional): Delete the feed
my_feed.delete_feed()

CHANGELOG

[0.2.0] - 2020-05-29

  • Added FEED object to the SDK.
  • Added read_columns method to Feed class.
  • Added delete_push method to Feed class.
  • Added delete_feed method to Feed class.
  • Added push_status method to Feed class.
  • Added push_feed method to Feed class.
  • Updated README.md

[0.1.4] - 2022-05-29

  • Added QUERY object to the SDK.
  • Added delete_query method to Query class.
  • Added query_status method to Query class.
  • Added push_query method to Query class.
  • Added the CHANGELOG section.
  • Updated README.md

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

qapi-sdk-0.2.0.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

qapi_sdk-0.2.0-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file qapi-sdk-0.2.0.tar.gz.

File metadata

  • Download URL: qapi-sdk-0.2.0.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.10.4 Darwin/21.6.0

File hashes

Hashes for qapi-sdk-0.2.0.tar.gz
Algorithm Hash digest
SHA256 859311376f609d71df999e9a590905de0bde6c86b8c19a9d26a980267ccdff9e
MD5 03c2a63a0902584864c2d7a2e5208348
BLAKE2b-256 b15c43b5cc543b98fdb7982c46fff08f0fb6e2790012c6557fd48d45756e2ab1

See more details on using hashes here.

File details

Details for the file qapi_sdk-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: qapi_sdk-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.10.4 Darwin/21.6.0

File hashes

Hashes for qapi_sdk-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fa6754e71d4f583a9d48d9af904f396b7a79f657c61499cf21f7259adc43edfb
MD5 792d8d92df3e6e5bc89d5b2fa0c634d1
BLAKE2b-256 8903d8a17f46008a1a2cd781d9c72c9b42157d5e7cc69fb6147ecdd9a581439d

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