Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.31 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.31 KB

Dedicated Instance Tools

Deployment Tests PyPI version Installations

Python utilities for working with Transpose Dedicated Instances.

Getting Started

First, install the package from PyPI:

pip install transpose-dit

Then, connecting to your dedicated instance is as easy as

from transpose_dit import DedicatedInstance

db = DedicatedInstance(
    host=os.environ.get("HOST"),
    port=os.environ.get("PORT"),
    user=os.environ.get("USERNAME"),
    password=os.environ.get("PASSWORD"),
    database=os.environ.get("DATABASE"),
    sslmode=os.environ.get("SSLMODE"),
    debug=True,
)

...

Documentation

You can view the full documentation for this package here, or select the module you're interested in below:

Module Description Documentation
Sync Utilities for pulling data from a dedicated instance View

Examples

You can view examples of how to use this package in the examples directory.