Skip to main content

Tools for interacting with the FIX protocol

Project description

Latest Read The Docs

Getting Started

Installing

pip install fixtrate

Session

To connect to and receive messages from a FIX peer:

import asyncio
from fixtrate import FixSession

async def main():
    session = FixSession()
    async with session.connect():
        await session.logon()
        async for msg in session:
            print(msg)

if __name__ == '__main__':
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main())

Documentation

https://fixtrate.readthedocs.io/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

fixtrate-0.1.6-py2.py3-none-any.whl (37.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page