Metadata-Version: 2.1
Name: neops_graphql
Version: 1.8.1
Summary: A low-level generated GraphQL for Neops
Author: Leandro Lerena
Author-email: leandro.lerena@zebbra.ch
Requires-Python: >=3.9,<4.0
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
Requires-Dist: httpx
Requires-Dist: pydantic
Requires-Dist: websockets
Description-Content-Type: text/markdown

# Generated Neops GraphQL Client

```shell
pip install neops_graphql
```

**ALPHA**

A low level generated graphql client for neops.

This is an low level client and should not be included directly into a project

## Generate a new Cliebt

To generate a new client, execute following steps

```shell
make get-latest-schema
poetry install --no-root
poetry run ariadne-codegen
poetry build
```

## Publish a new client

```shell
# Get API token on pypi
poetry config pypi-token.pypi your-api-token
poetry publish
```
