Installation Requirements
--------------------------
You have to install the following softwares


PYTHON 2.7
-------
www.python.org


QUICKFIX
--------

This product includes software developed by quickfixengine.org http://www.quickfixengine.org/
Orignially, quickfix is a C++ implementation. So, quickfix module in python is an API to call class and functions of C-module.
http://blog.junmin.info/2015/04/25/a05-quickfix/

Quickfix python API install
For Windows
------------
For windows, no offical guide for compilation yet. Easiest way is using offical built binary package (python 2.7):
x86 & amd64

Installation: 
pip install quickfix-1.14.3-cp27-none-win_amd64.whl
or
pip install quickfix-1.14.3-cp27-none-win32.whl

For Linux
---------
Requirement: gcc, gcc-c++, python-devel (centOS 6)

Installation: pii install quickfix

If the above steps doesnt work for installing quickfix you can try the following steps

pip install quickfix

Python unittest
----------------
Python unittest is part of python standard library and see if its installed by doing "import unittest" in python prompt.
If it is not installed you can try installation: pip install unittest


