Metadata-Version: 2.1
Name: infima-client
Version: 0.287.0
Summary: A client library for accessing Infima
Author: Alex Papanicolaou
Author-email: alex@infima.io
Requires-Python: >=3.7.1,<4.0.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: attrs (>=20.1.0,<21.0.0)
Requires-Dist: httpx (>=0.15.4,<0.17.0)
Requires-Dist: importlib_metadata (>=4.2,<5.0); python_version >= "3.7" and python_version < "3.8"
Requires-Dist: more-itertools (>=8.12.0,<9.0.0)
Requires-Dist: pandas (>=1.1.0,<2.0.0)
Requires-Dist: python-dateutil (>=2.8.0,<3.0.0)
Requires-Dist: semver (>=2.13.0,<3.0.0)
Requires-Dist: tqdm (>=4.62.3,<5.0.0)
Requires-Dist: typing_extensions (>=4.0.1,<5.0.0); python_version >= "3.7" and python_version < "3.8"
Description-Content-Type: text/markdown

# infima_client

A client library for accessing Infima. It will manage the HTTP REST requests for you.

## System requirements

The infima_client requires Python 3.7+. It is multi-platform, and the goal is to make
it work equally well on Windows, Linux and OSX.

## Installation

The library is published in PyPi.

```shell
pip install infima_client
```

## Usage

Contact [Support](support@infima.io) for an access token.

```python
from infima_client import InfimaClient

token = "..."
client = InfimaClient(token=token)
client.demo()
```

Alternatively, the token can be configured with the `INFIMA_TOKEN` environment variable.

## More Information

See the [Docs](http://docs.infima.io/) for more information.

Contact [Support](support@infima.io) if you have any questions.

