trixelmanagementclient


Nametrixelmanagementclient JSON
Version 0.2.0 PyPI version JSON
download
home_pageNone
SummaryA client module for accessing the Trixel Management Service (API)
upload_time2024-10-06 18:04:42
maintainerNone
docs_urlNone
authorNone
requires_python<4.0,>=3.8
license# MIT License Copyright (c) [2024] [Till Fleisch] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords
VCS
bugtrack_url
requirements fastapi uvicorn packaging pydantic-settings toml trixellookupclient colorlog SQLAlchemy sqlalchemy-timescaledb pynyhtm PyJWT aiosqlite filterpy
Travis-CI No Travis.
coveralls test coverage No coveralls.
            This python client module for the Trixel Management Service was entirely generated using [openapi-pyhton-client](https://github.com/openapi-generators/openapi-python-client).
---
---
# trixelmanagementclient
A client library for accessing Trixel Management Service

## Usage
First, create a client:

```python
from trixelmanagementclient import Client

client = Client(base_url="https://api.example.com")
```

If the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:

```python
from trixelmanagementclient import AuthenticatedClient

client = AuthenticatedClient(base_url="https://api.example.com", token="SuperSecretToken")
```

Now call your endpoint and use your models:

```python
from trixelmanagementclient.models import MyDataModel
from trixelmanagementclient.api.my_tag import get_my_data_model
from trixelmanagementclient.types import Response

with client as client:
    my_data: MyDataModel = get_my_data_model.sync(client=client)
    # or if you need more info (e.g. status_code)
    response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)
```

Or do the same thing with an async version:

```python
from trixelmanagementclient.models import MyDataModel
from trixelmanagementclient.api.my_tag import get_my_data_model
from trixelmanagementclient.types import Response

async with client as client:
    my_data: MyDataModel = await get_my_data_model.asyncio(client=client)
    response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)
```

By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.

```python
client = AuthenticatedClient(
    base_url="https://internal_api.example.com", 
    token="SuperSecretToken",
    verify_ssl="/path/to/certificate_bundle.pem",
)
```

You can also disable certificate validation altogether, but beware that **this is a security risk**.

```python
client = AuthenticatedClient(
    base_url="https://internal_api.example.com", 
    token="SuperSecretToken", 
    verify_ssl=False
)
```

Things to know:
1. Every path/method combo becomes a Python module with four functions:
    1. `sync`: Blocking request that returns parsed data (if successful) or `None`
    1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
    1. `asyncio`: Like `sync` but async instead of blocking
    1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking

1. All path/query params, and bodies become method arguments.
1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)
1. Any endpoint which did not have a tag will be in `trixelmanagementclient.api.default`

## Advanced customizations

There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info. You can also customize the underlying `httpx.Client` or `httpx.AsyncClient` (depending on your use-case):

```python
from trixelmanagementclient import Client

def log_request(request):
    print(f"Request event hook: {request.method} {request.url} - Waiting for response")

def log_response(response):
    request = response.request
    print(f"Response event hook: {request.method} {request.url} - Status {response.status_code}")

client = Client(
    base_url="https://api.example.com",
    httpx_args={"event_hooks": {"request": [log_request], "response": [log_response]}},
)

# Or get the underlying httpx client to modify directly with client.get_httpx_client() or client.get_async_httpx_client()
```

You can even set the httpx client directly, but beware that this will override any existing settings (e.g., base_url):

```python
import httpx
from trixelmanagementclient import Client

client = Client(
    base_url="https://api.example.com",
)
# Note that base_url needs to be re-set, as would any shared cookies, headers, etc.
client.set_httpx_client(httpx.Client(base_url="https://api.example.com", proxies="http://localhost:8030"))
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "trixelmanagementclient",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Till <till@fleisch.dev>",
    "download_url": "https://files.pythonhosted.org/packages/95/62/c0ca9a540f6163170fe0f27f2e814327f1995e9b1f97d2880794effc92b2/trixelmanagementclient-0.2.0.tar.gz",
    "platform": null,
    "description": "This python client module for the Trixel Management Service was entirely generated using [openapi-pyhton-client](https://github.com/openapi-generators/openapi-python-client).\n---\n---\n# trixelmanagementclient\nA client library for accessing Trixel Management Service\n\n## Usage\nFirst, create a client:\n\n```python\nfrom trixelmanagementclient import Client\n\nclient = Client(base_url=\"https://api.example.com\")\n```\n\nIf the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:\n\n```python\nfrom trixelmanagementclient import AuthenticatedClient\n\nclient = AuthenticatedClient(base_url=\"https://api.example.com\", token=\"SuperSecretToken\")\n```\n\nNow call your endpoint and use your models:\n\n```python\nfrom trixelmanagementclient.models import MyDataModel\nfrom trixelmanagementclient.api.my_tag import get_my_data_model\nfrom trixelmanagementclient.types import Response\n\nwith client as client:\n    my_data: MyDataModel = get_my_data_model.sync(client=client)\n    # or if you need more info (e.g. status_code)\n    response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)\n```\n\nOr do the same thing with an async version:\n\n```python\nfrom trixelmanagementclient.models import MyDataModel\nfrom trixelmanagementclient.api.my_tag import get_my_data_model\nfrom trixelmanagementclient.types import Response\n\nasync with client as client:\n    my_data: MyDataModel = await get_my_data_model.asyncio(client=client)\n    response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)\n```\n\nBy default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.\n\n```python\nclient = AuthenticatedClient(\n    base_url=\"https://internal_api.example.com\", \n    token=\"SuperSecretToken\",\n    verify_ssl=\"/path/to/certificate_bundle.pem\",\n)\n```\n\nYou can also disable certificate validation altogether, but beware that **this is a security risk**.\n\n```python\nclient = AuthenticatedClient(\n    base_url=\"https://internal_api.example.com\", \n    token=\"SuperSecretToken\", \n    verify_ssl=False\n)\n```\n\nThings to know:\n1. Every path/method combo becomes a Python module with four functions:\n    1. `sync`: Blocking request that returns parsed data (if successful) or `None`\n    1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.\n    1. `asyncio`: Like `sync` but async instead of blocking\n    1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking\n\n1. All path/query params, and bodies become method arguments.\n1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)\n1. Any endpoint which did not have a tag will be in `trixelmanagementclient.api.default`\n\n## Advanced customizations\n\nThere are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info. You can also customize the underlying `httpx.Client` or `httpx.AsyncClient` (depending on your use-case):\n\n```python\nfrom trixelmanagementclient import Client\n\ndef log_request(request):\n    print(f\"Request event hook: {request.method} {request.url} - Waiting for response\")\n\ndef log_response(response):\n    request = response.request\n    print(f\"Response event hook: {request.method} {request.url} - Status {response.status_code}\")\n\nclient = Client(\n    base_url=\"https://api.example.com\",\n    httpx_args={\"event_hooks\": {\"request\": [log_request], \"response\": [log_response]}},\n)\n\n# Or get the underlying httpx client to modify directly with client.get_httpx_client() or client.get_async_httpx_client()\n```\n\nYou can even set the httpx client directly, but beware that this will override any existing settings (e.g., base_url):\n\n```python\nimport httpx\nfrom trixelmanagementclient import Client\n\nclient = Client(\n    base_url=\"https://api.example.com\",\n)\n# Note that base_url needs to be re-set, as would any shared cookies, headers, etc.\nclient.set_httpx_client(httpx.Client(base_url=\"https://api.example.com\", proxies=\"http://localhost:8030\"))\n```\n\n",
    "bugtrack_url": null,
    "license": "# MIT License  Copyright (c) [2024] [Till Fleisch]  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "A client module for accessing the Trixel Management Service (API)",
    "version": "0.2.0",
    "project_urls": {
        "Homepage": "https://github.com/TillFleisch/TrixelManagementService",
        "Issues": "https://github.com/TillFleisch/TrixelManagementService/issues",
        "Repository": "https://github.com/TillFleisch/TrixelManagementService.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8116138b01e015b4c382b0cdf1e153cef63580f5f36f9011bca792f5f560fcf",
                "md5": "46acbb6ad4927a071275cf289608d3cb",
                "sha256": "704312a5d4675a94f1bdd93cc70ca78bf3336ec81fe2d64b558568225d691fe0"
            },
            "downloads": -1,
            "filename": "trixelmanagementclient-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "46acbb6ad4927a071275cf289608d3cb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 41363,
            "upload_time": "2024-10-06T18:04:40",
            "upload_time_iso_8601": "2024-10-06T18:04:40.518211Z",
            "url": "https://files.pythonhosted.org/packages/f8/11/6138b01e015b4c382b0cdf1e153cef63580f5f36f9011bca792f5f560fcf/trixelmanagementclient-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9562c0ca9a540f6163170fe0f27f2e814327f1995e9b1f97d2880794effc92b2",
                "md5": "c6a37005730c4cb7fd4239a963c48c86",
                "sha256": "d5d527e0bfad4127f844fe34fbe2cf6dd01c81129f9b87740b639a5bfcb67e4b"
            },
            "downloads": -1,
            "filename": "trixelmanagementclient-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c6a37005730c4cb7fd4239a963c48c86",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 16763,
            "upload_time": "2024-10-06T18:04:42",
            "upload_time_iso_8601": "2024-10-06T18:04:42.087430Z",
            "url": "https://files.pythonhosted.org/packages/95/62/c0ca9a540f6163170fe0f27f2e814327f1995e9b1f97d2880794effc92b2/trixelmanagementclient-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-06 18:04:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "TillFleisch",
    "github_project": "TrixelManagementService",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "fastapi",
            "specs": [
                [
                    "==",
                    "0.111"
                ]
            ]
        },
        {
            "name": "uvicorn",
            "specs": [
                [
                    "==",
                    "0.30"
                ]
            ]
        },
        {
            "name": "packaging",
            "specs": [
                [
                    "~=",
                    "24.1"
                ]
            ]
        },
        {
            "name": "pydantic-settings",
            "specs": [
                [
                    "~=",
                    "2.3"
                ]
            ]
        },
        {
            "name": "toml",
            "specs": [
                [
                    "==",
                    "0.10.2"
                ]
            ]
        },
        {
            "name": "trixellookupclient",
            "specs": [
                [
                    "==",
                    "0.2.0"
                ]
            ]
        },
        {
            "name": "colorlog",
            "specs": [
                [
                    "~=",
                    "6.8"
                ]
            ]
        },
        {
            "name": "SQLAlchemy",
            "specs": [
                [
                    "~=",
                    "2.0"
                ]
            ]
        },
        {
            "name": "sqlalchemy-timescaledb",
            "specs": [
                [
                    "==",
                    "0.4.1"
                ]
            ]
        },
        {
            "name": "pynyhtm",
            "specs": [
                [
                    "==",
                    "0.1.0"
                ]
            ]
        },
        {
            "name": "PyJWT",
            "specs": [
                [
                    "~=",
                    "2.8"
                ]
            ]
        },
        {
            "name": "aiosqlite",
            "specs": [
                [
                    "==",
                    "0.20.0"
                ]
            ]
        },
        {
            "name": "filterpy",
            "specs": [
                [
                    "~=",
                    "1.4"
                ]
            ]
        }
    ],
    "lcname": "trixelmanagementclient"
}
        
Elapsed time: 0.38893s