An asynchronous wrapper for the Zipline v4 API.
import asyncio
import zipline
async def main():
async with zipline.Client("your_zipline_site.com", "your_zipline_token") as client:
resp = await client.get_files()
for file in resp.page:
print(file.name)
asyncio.run(main())
Additional examples available HERE
Documentation available HERE
For Zipline v3 support, please use version 0.20.0
. This version will not be maintained in the future.