Read parted and encrypted S3 files like a single file object
Project description
# S3Query
S3Query opens file or files in s3 file system as text file, will perform unzip if necessary. It also handles hadoop liked part-* files and treat all files within a directory as one single file.
# Example
>>> from s3query import s3open
>>> import sys
>>>
>>> with s3open("s3://s3query/data/testgz/") as fgz:
... for line in fgz:
... sys.stdout.write(line)
...
one
two
three
four
five
six
seven
eight
nine
>>> with s3open("s3://s3query/data/test/") as fplain:
... for line in fplain:
... sys.stdout.write(line)
...
one
two
three
four
five
six
seven
eight
nine
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
s3query-0.3.tar.gz
(3.9 kB
view details)
File details
Details for the file s3query-0.3.tar.gz.
File metadata
- Download URL: s3query-0.3.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6c3afd387cef78918401c8d2d79ffb06333217a1906dab5e52c11e8d8f7446a
|
|
| MD5 |
53199ff611ca54743f8f13b14c131de7
|
|
| BLAKE2b-256 |
630c054d72a3d763ed9863936697ad1f067d4c8dac93acf8ae985bc58cce7f05
|