Skip to content

fretgfr/zipline.py

Repository files navigation

An asynchronous wrapper for the Zipline v4 API.

Quickstart

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages