Reduct Storage Python SDK v0.4.0이 출시되었습니다.

이것은 Reduct Storage 프로젝트의 작은 업데이트입니다. 오늘 우리는 Python용 Reduct Storage 클라이언트 SDKv0.4.0를 출시했습니다.

이제 SDK는 Reduct StorageHTTP API v0.7을 지원하므로 시간 간격에 대한 레코드(또는 항목의 모든 레코드)를 비동기 반복자로 가져올 수 있습니다.

import asyncio
from reduct import Client, Bucket


async 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())


pip 패키지를 업데이트하는 것을 잊지 마세요 ;)

pip install -U reduct-py

좋은 웹페이지 즐겨찾기