Skip to content

fretgfr/zipline.py

Repository files navigation

An asynchronous wrapper for the Zipline API.

Quickstart

import asyncio

import zipline

async def main():
    async with zipline.Client("your_zipline_site.com", "your_zipline_token") as client:
        files = await client.get_all_files()

        for file in files:
            print(file.name)

asyncio.run(main())

Additional examples available HERE

Documentation available HERE

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages