Reduct Storage Python SDK v0.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
Reference
이 문제에 관하여(Reduct Storage Python SDK v0.4.0이 출시되었습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/reduct-storage/reduct-storage-python-sdk-v040-has-been-released-4k6a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)