Skip to main content

Unload utility for Amazon Redshift

Project description

# redshift-unloader
Unloads the result of a query on Amazon Redshift to local storage.

## Prerequisites
- Python 3.6+
- boto3 1.7.84
- psycopg2 2.7.5
- psycopg2-binary 2.7.5

## Installation
The package is available on PyPI:

```bash
pip install redshift-unloader
```

### Usage
Unloaded data is supposed to be gzipped csv.

```py
from redshift_unloader import RedshiftUnloader

ru = RedshiftUnloader(host='<redshift host>',
port=<redshift port>,
user='<redshift user>',
password='<redshift password>',
database='<redshift database name>',
s3_bucket='<s3 bucket name>',
access_key_id='<aws access key id>',
secret_access_key='<aws secret access key>',
region='<aws region>')

# If you don't need header, set with_header as False
ru.unload(query="SELECT * FROM my_table WHERE log_time >= ''",
filename="/path/to/result.csv.gz",
with_header=True)
```


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

redshift-unloader-0.1.0.tar.gz (5.3 kB view hashes)

Uploaded Source

Built Distribution

redshift_unloader-0.1.0-py36-none-any.whl (6.0 kB view hashes)

Uploaded Python 3.6

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