Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 836 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 836 Bytes

demo for quickfix (python)

This repo will generate nice quickfix message class(use dataclass) like how C++ bindings does. But the performance is bad in runtime(due to runtime tag check and conversion). If you want know how to use quickfix, look at quickfix-python-samples

how to setup

# on linux
conda install -c conda-forge quickfix # or python -m pip install quickfix
conda install click attrs # used in example

how to use

# python3.8
cd .

mkdir -p logs sessions

# generate message objects
python build.py

# startup server
python server.py -c server.cfg

# startup client
python client.py -c client.cfg