Local cache of S3 buckets
Project description
S3 Cache for Python
Niall McCarroll wrote a neat little AWS S3 cache on his blog that I found really useful, but could not find on PyPI, so here it is in a refactored form as a public service.
Instructions
from s3cache import S3Cache
s3 = S3Cache("/tmp", "t13d-misc")
s3.connect()
s3.create_bucket()
assert(s3.bucket_exists())
s3.set_verbosity(True)
s3.set_caching(True)
f = s3.open("/tmp/world.txt", "w")
f.write("Hello")
f.close()
f = s3.open("/tmp/world.txt", "a")
f.write(" World")
f.close()
f2 = s3.open("/tmp/world.txt", "r")
f2.close()
assert(s3.object_exists("/tmp/world.txt"))
s3.remove_object("/tmp/world.txt")
References
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
s3cache-0.1.1.tar.gz
(4.9 kB
view details)
File details
Details for the file s3cache-0.1.1.tar.gz.
File metadata
- Download URL: s3cache-0.1.1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1f82db4c08de0f38d416b273fdbb47d876cb65ca3961da0bd0e897c59ac96e0
|
|
| MD5 |
abae8903cbfd772aeada69d2e8983bfe
|
|
| BLAKE2b-256 |
b7f7bd1ceea00e7abc31d84ac5cceaa63953a0d777a764108a52bd60a29decf8
|