Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 24, 2022 07:47 pm GMT

Reduct Storage Python SDK v0.4.0 has been released

This is a little update from the Reduct Storage project. Today, we have released Reduct Storage Client SDK for Python v0.4.0.

Now the SDK supports Reduct Storage HTTP API v0.7, so you can get records for a time interval (or all records in an entry) as asynchronous iterator:

import asynciofrom reduct import Client, Bucketasync def main():    client = Client('https://play.reduct-storage.dev', api_token="reduct")    bucket: Bucket = await client.create_bucket("my-bucket", exist_ok=True)    # Query all data in entry    async for record in bucket.query("entry-1"):        print(f"Time={record.timestamp}, Size={record.size} bytes")        print("Content: ", await record.read_all())loop = asyncio.new_event_loop()loop.run_until_complete(main())

Don't forget to update your pip package ;)

pip install -U reduct-py

Original Link: https://dev.to/reduct-storage/reduct-storage-python-sdk-v040-has-been-released-4k6a

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To