Skip to main content

Tool to organize query through factories.

Project description

QUERY FACTORY

This tool should help organizing SQL queries into python projects.

USAGE

You should seperate query template in a yaml file as in the following example:

# template.yaml
description: |
  This is a simple query for demonstration purpose.

variables:
  - start_date:
    - description: UTC datetime string to gather data from (inclusive)
  - end_date:
    - description: UTC datetime string to gather data to (exclusive)

query_template: |
  SELECT *
  FROM db.table
  WHERE event_date <= {start_date}
  AND event_date > {end_date}
  LIMIT = 100;

Then get your factory up and run some queries:

import pandas as pd
from query_factory import SQLQueryFactory

# factory setup.
factory = SQLQueryFactory("/path/to/template.yaml")

connection = ...
data_2020_02_01 = pd.read_sql(
    factory(start_date="2020-02-01", end_date="2020-02-02"),
    con=connection
)
data_2020_02_02 = pd.read_sql(
    factory(start_date="2020-02-02", end_date="2020-02-03"),
    con=connection
)

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

query_factory-0.0.1.tar.gz (2.7 kB view hashes)

Uploaded Source

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