Tools for interacting with the FIX protocol
Project description
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
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file fixtrate-0.1.16-py2.py3-none-any.whl
.
File metadata
- Download URL: fixtrate-0.1.16-py2.py3-none-any.whl
- Upload date:
- Size: 40.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.1 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a35bb87d9480926c2e048fb6fdef2895b492a048e36513c170b7553310017a0a |
|
MD5 | 669fb977955c6521861009d5b774a727 |
|
BLAKE2b-256 | 19a6575136e5db038ae5278dd93c6c92f3a07d583e8577bc53718e2c91f6d221 |