A set of utilities to be able to use the Pricefx API from a Python package. The package is available on PyPI and can be installed with pip or Poetry.
pip install pyfxlibOr with Poetry:
poetry add pyfxlibTo connect to a Pricefx partition:
from pyfxlib.lowlevel import Session
session = Session.from_partition_url(
"https://your-partition.pricefx.eu",
username="your-username",
password="your-password"
)And then use the session to interact with the platform (see documentation for full API details)
Full API documentation is available at: https://developer.pricefx.eu/pricefx-api/pyfxlib/index.html
See CHANGELOG for release notes.
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.