Skip to main content

Utilities for querying and loading data into an Oracle, Snowflake, or Postgres database.

Project description

wdb_utils

Utilities for querying an Oracle, Snowflake, or Postgres database. Gradually expanding to more database types.

All the methods in this package require a yaml config file. For convenience, we assume this file is located in /Users/username/configs/config-default.yml.

Installation

pip install wdb_utils

Usage

import wdb_utils as db

# Assuming your config file is located at /Users/myname/configs/config-default.yml

# Pull all the data from an Oracle database table into a data frame
df = db.run_query_oracle('select * from my_table')

# Pull all the data from a Snowflake database table into a data frame
df = db.run_query_snowflake('select * from other_table')

# Pull all the data from a Postgres database table into a data frame
df = db.run_query_postgres('select * from third_table')

# Delete all the data in those same tables
db.run_command_oracle('delete from my_table')
db.run_command_snowflake('delete from other_table')
db.run_command_postgres('delete from third_table')

# Put all the data back into the table
# Be aware that record order is not guaranteed to be preserved here
# Trying to decide if that's enough of a problem to fix it
db.load_data_oracle(df, 'my_schema', 'my_table')
db.load_data_snowflake(df, 'another_schema', 'other_table')
db.load_data_postgres(df, 'third_schema', 'third_table')

Backward compatibility

Because this package was initially only for Oracle databases, I've also aliased the following methods to keep working:

  • run_query is an alias for run_query_oracle
  • run_command is an alias for run_command_oracle
  • load_data is an alias for load_data_oracle

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

wdb_utils-3.7.4.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wdb_utils-3.7.4-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file wdb_utils-3.7.4.tar.gz.

File metadata

  • Download URL: wdb_utils-3.7.4.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for wdb_utils-3.7.4.tar.gz
Algorithm Hash digest
SHA256 d8614ad75a1c306360b67671867e0295f30959424874e9e0c2e82e8726922c63
MD5 6af8d2828892be71b51c95c702303c88
BLAKE2b-256 e972ea070d14a3321af6fe5cf9d8527c34e405a5b48475734f0c1aa862269c50

See more details on using hashes here.

File details

Details for the file wdb_utils-3.7.4-py3-none-any.whl.

File metadata

  • Download URL: wdb_utils-3.7.4-py3-none-any.whl
  • Upload date:
  • Size: 5.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for wdb_utils-3.7.4-py3-none-any.whl
Algorithm Hash digest
SHA256 35588a432115ba69cb96471ec85890a342f18a5b3e5895c09f56746c87f9291c
MD5 866f7acc1923bdf994aed68e17b3d5e3
BLAKE2b-256 a959b54aa542597fb6a11f6defa51dbdef1901c2b3f121263721b32cb21a4299

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page