Check out the examples/
directory for a demonstration of the functionality.
```python
from shadow_drive import ShadowDriveClient
client = ShadowDriveClient("test.json")
size = 2 ** 20 account, tx = client.createaccount("test", size, useaccount=True)
files = ["./files/alpha.txt", "./files/notalpha.txt"] urls = client.uploadfiles(files)
client.delete_files(urls)
client.delete_account(account) ```
This package uses PyO3 to build a wrapper around the official Shadow Drive Rust SDK. For more information, see the Rust SDK documentation.