Snowy helps us download and upload data across various data sources (e.g. Snowflake, Oracle, SAP Hana and Domo).
Project description
Hi, I'm Snowy and I can be very pushy (in a good way)! :sunglasses:
I'm here to help you with all your data migration woes - grabbing data, saving into CSV files and then pushing all these to another database. But right now, I only understand Snowflake, Oracle, SAP Hana and Domo. If my owner has time to play with me, he might upgrade my skillset and connectivity . Otherwise, you can also teach me a thing or two by contributing to this repository.
To get me working, you got to first tell me everything you know in a configuration file using YAML:
# keeper security vault
KEEPER_URL: ""
KEEPER_NS: ""
KEEPER_TOKEN: ""
KEEPER_SECRET_PATH: ""
KEEPER_PASSWORD_PATH: ""
# snowflake configurations
SF_ACCOUNT: ""
SF_SVC_USER: ""
SF_PASSWORD: ""
SF_WH: ""
SF_SCHEMA: ""
SF_DB: ""
SF_ROLE: ""
SF_TABLE: ""
# domo dataset information
DOMO_CLIENT_ID: ""
DOMO_CLIENT_SECRET: ""
DATASET_ID: ""
DATASET_NAME: ""
DATASET_DESC: ""
UPDATE_METHOD: "REPLACE" # "APPEND"
DOWNLOAD_DIR: ""
CHUNK_SIZE: 5000
# oracle credentials
ORACLE_USER: ""
ORACLE_PASSWORD: ""
ORACLE_HOST: ""
ORACLE_PORT:
ORACLE_DB: ""
ORACLE_SCHEMA: ""
ORACLE_TABLE: ""
# hana credentials
HANA_USER: ""
HANA_PASSWORD: ""
HANA_HOST: ""
HANA_PORT:
HANA_DB: ""
HANA_SCHEMA: ""
HANA_TABLE: ""
HANA_VIEW: ""
If you're using Keeper Security Vault to safekeep your password and private key, you have to fill up all the keeper-related configurations. Otherwise, just leave that blank and I will handle the rest :wink:
Getting Started
pip install snowypushy
Connecting to Database
Just set me up with the file path to your configuration file, and I will return you the respective engine:
from snowypushy.features import App
from snowypushy.settings import Configuration
app = App(Configuration("sample.yml"))
domo = app.connect(source=app.DataSource.DOMO)
hana = app.connect(source=app.DataSource.HANA)
oracle = app.connect(source=app.DataSource.ORACLE)
snowflake = app.connect(source=app.DataSource.SNOWFLAKE)
# do anything you like
# except Domo, other connectors need to be closed after usage
hana.close()
oracle.close()
snowflake.close()
Downloading to local directory
If you don't tell me which directory to save the CSVs, I will just refer to DOWNLOAD_DIR
in the configuration file.
directory = app.download_csv(source=app.DataSource.DOMO, engine=domo)
directory = app.download_csv(source=app.DataSource.HANA, engine=hana)
directory = app.download_csv(source=app.DataSource.ORACLE, engine=oracle)
directory = app.download_csv(source=app.DataSource.SNOWFLAKE, engine=snowflake)
Uploading to Database
I can only push to Domo right now :neutral_face:
Specify keep=True
if you'd like to retain the download CSV files, or I will help you remove them after I'm done uploading.
results = app.upload_csv(source=directory, destination=app.DataSource.DOMO, engine=domo, keep=False)
As I'm trained to be more productive and efficient, I'm actually spawning threads to distribute my workload. So, you can iterate through the results, check if there's any job that died and "resurrect" them again.
for i, message in enumerate(results["messages"]):
if "error" in message:
print("\t-#{}: {}".format(i + 1, message))
print("{} jobs completed and {} died.".format(results["n_completed"], results["n_died"]))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file snowypushy-0.4.3.tar.gz
.
File metadata
- Download URL: snowypushy-0.4.3.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd7d56d9b1e5504f9920d80c372bb18a3d0e5e44fc629f7d679fb76aeeb63e21 |
|
MD5 | 4d98a947072fa46ddfc99f4876ada8ad |
|
BLAKE2b-256 | f5a029b6b34dcc7f7b00bc375138540f6801f446ee596c1fbd9450da2792fe63 |
File details
Details for the file snowypushy-0.4.3-py3-none-any.whl
.
File metadata
- Download URL: snowypushy-0.4.3-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ac579bc7b3326e420cc3f3b5f0c681eb26da0eac3e9628c31bb75eec02829df |
|
MD5 | a8809a1a46e1e0340f711f7e5264b3d3 |
|
BLAKE2b-256 | 22310cbf8e6530b388d5e76baa57af6191782f11287796b26877bc4548b36708 |