Installation

Stable release

To install just Contrib (without mongodb, pytz, ujson):

$ pip install fastapi_contrib

To install contrib with mongodb support:

$ pip install fastapi_contrib[mongo]

To install contrib with ujson support:

$ pip install fastapi_contrib[ujson]

To install contrib with pytz support:

$ pip install fastapi_contrib[pytz]

To install contrib with opentracing & Jaeger tracer:

$ pip install fastapi_contrib[jaegertracing]

To install everything:

$ pip install fastapi_contrib[all]

This is the preferred method to install FastAPI Contrib, as it will always install the most recent stable release.

If you don’t have pip installed, this Python installation guide can guide you through the process.

From sources

The sources for FastAPI Contrib can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git://github.com/l@datacorp.ee/fastapi_contrib

Or download the tarball:

$ curl  -OL https://github.com/l@datacorp.ee/fastapi_contrib/tarball/master

Once you have a copy of the source, you can install it with:

$ python setup.py install