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.0.tar.gz
(44.9 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.0-py3.6.egg
(106.6 kB
view details)
File details
Details for the file awswrangler-1.0.0.tar.gz.
File metadata
- Download URL: awswrangler-1.0.0.tar.gz
- Upload date:
- Size: 44.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73f3d5bef31d5446cf7cd4a1f127d82c2c1688931e4f66ca4514af4b83ae6e14
|
|
| MD5 |
2a94299045defdcff875f33ac5da2301
|
|
| BLAKE2b-256 |
719cf42c51b1cd6a0109436fda760ae547aaa885158b96e636620a29d99c45bb
|
File details
Details for the file awswrangler-1.0.0-py3.6.egg.
File metadata
- Download URL: awswrangler-1.0.0-py3.6.egg
- Upload date:
- Size: 106.6 kB
- Tags: Egg
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddc3826357a55cbe30f118928bbc3487b26cf8d5062e78ebe0ef4c93a1073a71
|
|
| MD5 |
6e2f502b1b3892cea888b421024dd7e9
|
|
| BLAKE2b-256 |
d8a9c53d5137c68d7c750cd3b7c3eaec61fe2d145300f13996eb3403ffb6975d
|
File details
Details for the file awswrangler-1.0.0-py3-none-any.whl.
File metadata
- Download URL: awswrangler-1.0.0-py3-none-any.whl
- Upload date:
- Size: 50.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/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6936979ef03c36e1b996ce401e14c679114fa06453e6a9fb2dd758ad6c7d7de8
|
|
| MD5 |
0d38fb1c0fa389e86aa4a32ba81ad875
|
|
| BLAKE2b-256 |
2c3076e58d4cf292347e3b03b8765f16b6bd85a0b8862f0b26682e3ef81b2ba8
|