Skip to content

gucciplateau/fixtrate

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

575 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fixtrate: Tools for interacting with the FIX protocol.

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/

About

Tools for working with the Financial Information eXchange (FIX) protocol

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 100.0%