Skip to main content

Jupancon, connector to several DBs that returns pandas. Magic included.

Project description

jupancon

Database Connectors and SQL magics for Jupyter. jupancon = Jupyter + Pandas + Connectors.

Features

  • Connector to Redshift
    • Using user/pass
    • Using IAM profile
  • Connector to Bigquery (using google profile)
  • Optional automatic tunnel setting through an SSH Bastion
  • Querying capabilities
  • IPython kernel magics for querying
  • Always returns Pandas DataFrames
  • Some hidden stuff I rather not document just yet so you don't nuke the Redshift or BigQuery you are connecting to.

Install

pip install jupancon

Configure

Write a ~/.jupancon/config.yml YAML file that looks similar to the following C&P from my actual config file (heavily censored for obvious reasons):

default: my-redshift-cluster

my-redshift-cluster: 
    type: redshift
    host: XXXXXX.XXXXXX.XXXXXXX.redshift.amazonaws.com
    # explicitly setting redshift port (optional)
    port: 5439
    user: XXXXXXXX
    pass: XXXXXXXX
    dbname: XXXXXX


my-redshift-using-iamprofile: 
    type: redshift
    host: XXXXXX.XXXXXX.XXXXXXX.redshift.amazonaws.com
    profile: XXXXXXXXX
    dbname: XXXXXX
    # NOTE: you can choose dbuser and it will be auto-created if it doesn't exist 
    dbuser: XXXXXX
    cluster: XXXXXX


my-gcp:
    type: bigquery
    project: XXXXX-XXXXX-123456


my-redshift-behind-sshbastion:
    type: redshift
    use_bastion: true
    bastion_server: censored.bastion.server.com
    bastion_user: XXXXXX
    bastion_host: XXXXXX.XXXXXX.XXXXXX.redshift.amazonaws.com
    host: censored.main.server.com
    user: XXXXXXXX
    pass: XXXXXXXX
    dbname: XXXXXX

Jupancon will also pick environment variables (which have preference over the config.yml).

  • JPC_DB_TYPE: redshift or bigquery
  • JPC_HOST: for example, XXXXXX.XXXXXX.XXXXXX.redshift.amazonaws.com
  • JPC_USER: User name
  • JPC_DB: Database name
  • JPC_PASS: Password
  • JPC_USE_BASTION: true or leave blank
  • JPC_BASTION_SERVER
  • JPC_BASTION_HOST
  • JPC_PROFILE: IAM profile (for IAM connection only)
  • JPC_CLUSTER: Redshift cluster (for IAM connection only)
  • JPC_DBUSER: Redshift user (for IAM connection only)

How to use

This library is developed primarily for usage within Jupyter Lab. It's likely to work in Jupyter Notebook and Ipython, but untested and unsupported at this stage. It also works and is being used in regular scripts, but it obviously loses its magic.

Regular usage

from jupancon import query, list_schemas, list_tables

list_schemas()

list_tables()

query("select * from foo")

Magical usage

from jupancon import load_magics

load_magics()
select * from foo
df = %select * from foo
%%sql

select * 
from foo
where cond = 1
and label = 'my nice label'

Development

Current status: Jupancon has enough basic features that it's worth open sourcing, but the documentation is still lacking.

TODO list

  • list_table("schema") to detect if schema doesn't exist and return error
  • Add query monitoring and cancelling functionality
  • Complete docs (low level stuff, exhaustive features, maybe sphinx/rdd?)
  • Add animated gifs to docs

Features that aren't worth adding right now

  • Autocomplete and autodiscover of databases is possible, but not trivial at all. In addition, I'll like to find a way of not adding any extra configuration. Regardless, not worth it until the TODO list above is tackled. See this project for a successful example.
  • Because of the current architecture of Jupyter Lab, syntax highlighting is not feasible to add (as it was in Jupyter Notebook). This might change in the future. See this git issue for more details.

A note about Unit Testing

I would like to publish decent unit testing, but this library is hard to test because all the databases currently queried for it's development are either tests that cost me money or private (my clients') databases. Any ideas on how to write an open source, non exploitable set of unit tests for Redshift or BigQuery are very welcome.

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

jupancon-0.2.4.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

jupancon-0.2.4-py2.py3-none-any.whl (8.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file jupancon-0.2.4.tar.gz.

File metadata

  • Download URL: jupancon-0.2.4.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.26.0

File hashes

Hashes for jupancon-0.2.4.tar.gz
Algorithm Hash digest
SHA256 61d5bf6a47e05a20c1a883a6f1d8f8b63a52bd6ea28104d206ca5fcf683d4070
MD5 287ee0dcacf3841affc07561f9cec447
BLAKE2b-256 4d6c7335a37c2fe3d79166e0119af6621bf89e497df0bc8a8a9716839f8baadc

See more details on using hashes here.

File details

Details for the file jupancon-0.2.4-py2.py3-none-any.whl.

File metadata

  • Download URL: jupancon-0.2.4-py2.py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.26.0

File hashes

Hashes for jupancon-0.2.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 23051d357f3da6aad479f98105bd6dedcd6fa7d4a09e4d52ad1b62ea3c944e12
MD5 3dac96607a930bf1d329e69b760b1f0d
BLAKE2b-256 1f633138923f6fff30e6d7bdbf0c35ffb9e23d7989186cdc86b9e5b0108eb6df

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