Skip to main content

A package to upload Pandas DataFrame to Redshift

Project description

df_to_rs

df_to_rs is a Python package that provides a seamless way to copy data from a pandas DataFrame to Amazon Redshift via Amazon S3.

Installation

You can install the package using pip:

pip install df_to_rs

Usage

Here's a simple example of how to use df_to_rs to copy data from a DataFrame to Redshift:

from df_to_rs import df_to_rs
import psycopg2

# Create a Redshift connection
redshift_c = psycopg2.connect(dbname='more', host="hostname.ap-south-1.redshift.amazonaws.com", port=1433, user='username', password='password')
redshift_c.set_session(autocommit=True)

# Initialize df_to_rs
uploader = df_to_rs(
    region_name='ap-south-1',
    s3_bucket='your-s3-bucket',
    aws_access_key_id='YOUR_ACCESS_KEY',
    aws_secret_access_key='YOUR_SECRET_KEY',
    redshift_c=redshift_c
)

# Upload DataFrame to Redshift
uploader.upload_to_redshift(df, dest='analytics.ship_pen')

Parameters

df_to_rs class

  • region_name: AWS region name, e.g., 'ap-south-1'.
  • s3_bucket: Name of the S3 bucket to upload CSV files.
  • aws_access_key_id: AWS access key ID.
  • aws_secret_access_key: AWS secret access key.
  • redshift_c: psycopg2 connection object to Redshift.

upload_to_redshift method

  • df: pandas DataFrame to be uploaded.
  • dest: Redshift destination table, including schema, e.g., 'analytics.ship_pen'.

License

MIT License

Author

Ankit Goel - ankitgoel888@gmail.com

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

df_to_rs-0.1.2.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

df_to_rs-0.1.2-py3-none-any.whl (3.9 kB view hashes)

Uploaded Python 3

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