dataflows-aws
Dataflows's processors to work with AWS
Features
dump_to_s3processorchange_acl_on_s3processor
Contents
Getting Started
Installation
The package use semantic versioning. It means that major versions could include breaking changes. It's recommended to specify package version range in your setup/requirements file e.g. package>=1.0,<2.0.
$ pip install dataflows-aws
Examples
These processors have to be used as a part of data flow. For example:
flow = Flow(
load('data/data.csv'),
dump_to_s3(
bucket=bucket,
acl='private',
path='my/datapackage',
endpoint_url=os.environ['S3_ENDPOINT_URL'],
),
)
flow.process()
Documentation
dump_to_s3
Saves the DataPackage to AWS S3.
Parameters
bucket- Name of the bucket where DataPackage will be stored (should already be created!)acl- ACL to provide the uploaded files. Default is 'public-read' (see boto3 docs for more info).path- Path (key/prefix) to the DataPackage. May contain format string available fordatapackage.jsonEg:my/example/path/{owner}/{name}/{version}content_type- content type to use when storing files in S3. Defaults to text/plain (usual S3 default is binary/octet-stream but we prefer text/plain).endpoint_url- api endpoint to allow using S3 compatible services (e.g. 'https://ams3.digitaloceanspaces.com')
change_acl_on_s3
Changes ACL of object in given Bucket with given path aka prefix.
Parameters
bucket- Name of the bucket where objects are storedacl- Available options'private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control'path- Path (key/prefix) to the DataPackage.endpoint_url- api endpoint to allow using S3 compatible services (e.g. 'https://ams3.digitaloceanspaces.com')
Contributing
The project follows the Open Knowledge International coding standards.
The recommended way to get started is to create and activate a project virtual environment. To install package and development dependencies into your active environment:
$ make install
To run tests with linting and coverage:
$ make test
For linting, pylama (configured in pylama.ini) is used. At this stage it's already
installed into your environment and could be used separately with more fine-grained control
as described in documentation - https://pylama.readthedocs.io/en/latest/.
For example to sort results by error type:
$ pylama --sort <path>
For testing, tox (configured in tox.ini) is used.
It's already installed into your environment and could be used separately with more fine-grained control as described in documentation - https://testrun.org/tox/latest/.
For example to check subset of tests against Python 2 environment with increased verbosity.
All positional arguments and options after -- will be passed to py.test:
tox -e py37 -- -v tests/<path>
Under the hood tox uses pytest (configured in pytest.ini), coverage
and mock packages. These packages are available only in tox envionments.
Changelog
Here described only breaking and the most important changes. The full changelog and documentation for all released versions can be found in the nicely formatted commit history.
v0.x
- an initial processors implementation
Release files for dataflows-aws 0.2.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| dataflows-aws-0.2.4.tar.gz | 8.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| dataflows_aws-0.2.4-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size: 15.7 kB
Release files / dataflows-aws-0.2.4.tar.gz
| Download URL | dataflows-aws-0.2.4.tar.gz |
|---|---|
| Size | 8.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2671e9bd6fbee538e18aa4fa7738d1b298c2339be65c401ac9c6ff2709ca3b0b
|
|
BLAKE2b-256 checksum How to use checksums |
c76e878d7addaf86312fb36f885c5351522fd41326a8bdbd2432857f6d3b169c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.10.5
|
Release files / dataflows_aws-0.2.4-py2.py3-none-any.whl
| Download URL | dataflows_aws-0.2.4-py2.py3-none-any.whl |
|---|---|
| Size | 7.1 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
7b151cffbe88feeb3bb2fab75c9f12a69d7a9718d0b493475332f052c2b396a7
|
|
BLAKE2b-256 checksum How to use checksums |
d38771adc1fad3f2d10cdce95cf100f4fe54cc43eb8d2b4233e36f9cf375a393
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.10.5
|