2 个不稳定版本
0.6.2 | 2023年3月15日 |
---|---|
0.0.0 | 2022年12月20日 |
#2360 in 开发工具
155KB
3K SLoC
Shadow Drive 的 Python SDK
由:GenesysGo
入门指南
查看 examples/
目录,以了解功能演示。
from shadow_drive import ShadowDriveClient
# Initialize client
client = ShadowDriveClient("test.json")
# Create account
size = 2 ** 20
account, tx = client.create_account("test", size, use_account=True)
# Upload files
files = ["./files/alpha.txt", "./files/not_alpha.txt"]
urls = client.upload_files(files)
# Delete files
client.delete_files(urls)
# Delete account
client.delete_account(account)
关于此仓库
此包使用 PyO3 在官方 Shadow Drive Rust SDK 上构建包装器。更多信息,请参阅 Rust SDK 文档。
依赖项
~78MB
~1.5M SLoC