Metadata-Version: 2.4
Name: textplus-openapi-python
Version: 1.0.0
Summary: CLARIN FCS Aggregator REST API Python client generated by OpenAPI Generator.
Home-page: https://github.com/clarin-eric/fcs-sru-aggregator
Author: OpenAPI Generator
Author-email: info@example.com
Project-URL: Source, https://github.com/clarin-eric/fcs-sru-aggregator
Keywords: openapi client clarin fcs aggregator
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Classifier: Typing :: Typed
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: python-dateutil>=2.8.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: pydantic-core>=2.0.0
Requires-Dist: typing-extensions>=4.0.0
Requires-Dist: urllib3>=1.26.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# TextPlus OpenAPI Python Client

Python client for the CLARIN FCS Aggregator REST API.

## Installation

Install locally:

```bash
pip install .
```

Build wheel and source distribution:

```bash
python -m build
```

Publish to PyPI:

```bash
python -m twine upload dist/*
```

## Usage

```python
import openapi_client

configuration = openapi_client.Configuration()
configuration.host = "https://api.example.com"
client = openapi_client.ApiClient(configuration)
api = openapi_client.DefaultApi(client)
```

## Package name

This package is published as `textplus-openapi-python` on PyPI and installs as `openapi_client`.
