Metadata-Version: 2.4
Name: indico-client
Version: 7.10.0
Summary: A Python Wrapper for indico app API.
Project-URL: Homepage, https://github.com/IndicoDataSolutions/indico-client-python
Project-URL: Documentation, https://indicodatasolutions.github.io/indico-client-python/
Author-email: indico <engineering@indico.io>
License: MIT License
License-File: AUTHORS
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Requires-Dist: aiohttp[speedups]
Requires-Dist: deprecation>=2.1.0
Requires-Dist: jsons
Requires-Dist: requests>=2.22.0
Provides-Extra: all
Requires-Dist: msgpack-numpy==0.4.4.3; extra == 'all'
Requires-Dist: msgpack>=0.5.6; extra == 'all'
Requires-Dist: numpy>=1.16.0; extra == 'all'
Requires-Dist: pandas>=1.0.3; extra == 'all'
Provides-Extra: datasets
Requires-Dist: pandas>=1.0.3; extra == 'datasets'
Provides-Extra: deploy
Requires-Dist: jaraco-functools; extra == 'deploy'
Requires-Dist: twine==3.3.0; extra == 'deploy'
Provides-Extra: deserialization
Requires-Dist: msgpack-numpy==0.4.4.3; extra == 'deserialization'
Requires-Dist: msgpack>=0.5.6; extra == 'deserialization'
Requires-Dist: numpy>=1.16.0; extra == 'deserialization'
Provides-Extra: exports
Requires-Dist: pandas>=1.0.3; extra == 'exports'
Provides-Extra: test
Requires-Dist: tox==4.11.3; extra == 'test'
Description-Content-Type: text/x-rst

indicoio-py
===============

A wrapper for the `indico API <http://indico.io>`__.

The indico API is free to use, and no training data is required.

Installation
------------

From PyPI:

.. code:: bash

    pip install indico-client

From source:

Using UV (recommended):

.. code:: bash

    curl -LsSf https://astral.sh/uv/install.sh | sh
    git clone https://github.com/IndicoDataSolutions/indico-client-python.git
    cd indico-client-python
    uv pip install -e ".[all]"

Or using pip:

.. code:: bash

    git clone https://github.com/IndicoDataSolutions/indico-client-python.git
    cd indico-client-python
    pip install -e ".[all]"
