Pandas on AWS.
Project description
AWS Data Wrangler
Pandas on AWS
| Source | Downloads | Page | Installation Command |
|---|---|---|---|
| PyPi | Link | pip install awswrangler |
|
| Conda | Link | conda install -c conda-forge awswrangler |
Quick Start
Install the Wrangler with: pip install awswrangler
import awswrangler as wr
import pandas as pd
df = pd.DataFrame({"id": [1, 2], "value": ["foo", "boo"]})
# Storing data on Data Lake
wr.s3.to_parquet(
df=df,
path="s3://bucket/dataset/",
dataset=True,
database="my_db",
table="my_table"
)
# Retrieving the data directly from Amazon S3
df = wr.s3.read_parquet("s3://bucket/dataset/", dataset=True)
# Retrieving the data from Amazon Athena
df = wr.athena.read_sql_query("SELECT * FROM my_table", database="my_db")
Read The Docs
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
awswrangler-1.0.1.tar.gz
(45.4 kB
view details)
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
awswrangler-1.0.1-py3.6.egg
(107.4 kB
view details)
File details
Details for the file awswrangler-1.0.1.tar.gz.
File metadata
- Download URL: awswrangler-1.0.1.tar.gz
- Upload date:
- Size: 45.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d891ea6b0949e2df5d13165acbd68168ca659884e318ce5285c4573b63b46a58
|
|
| MD5 |
4fcd245f6a6c547c45200411c8277dc9
|
|
| BLAKE2b-256 |
6a652203601615080dbea085d2d9f44c017788f507e7dd321405265bb36f4403
|
File details
Details for the file awswrangler-1.0.1-py3.6.egg.
File metadata
- Download URL: awswrangler-1.0.1-py3.6.egg
- Upload date:
- Size: 107.4 kB
- Tags: Egg
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
448d047de56037b31e84ba589c051bc093461dcc14af360e22f3f139cbd5ea17
|
|
| MD5 |
4ed78b5531be19ca88b0c2fb02b6e7b5
|
|
| BLAKE2b-256 |
63e13a54e21d4007a58490ed7066c6abd91346272987b764495b702b4619ad34
|
File details
Details for the file awswrangler-1.0.1-py3-none-any.whl.
File metadata
- Download URL: awswrangler-1.0.1-py3-none-any.whl
- Upload date:
- Size: 50.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d2f431acc8710a9d91c1ba05fb356e3fa8d68512f9da16266c09663e4ad1e58
|
|
| MD5 |
dc0977c9c5cb7caca69378e232c187df
|
|
| BLAKE2b-256 |
fc77bb1cbe9bf40b4a7d029c2f7d7d7485c2d76e1ee5f17eb101ac1593f018de
|