{"id":20916230,"url":"https://github.com/qualityunit/liveagent-internal-api-python-client","last_synced_at":"2026-04-20T23:33:20.490Z","repository":{"id":166003247,"uuid":"641382166","full_name":"QualityUnit/LiveAgent-Internal-Api-Python-client","owner":"QualityUnit","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-11T20:50:55.000Z","size":101,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-31T14:02:50.962Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/QualityUnit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-16T11:00:15.000Z","updated_at":"2023-05-16T12:24:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"0f8b6841-336e-458a-968e-182f7c11a6b5","html_url":"https://github.com/QualityUnit/LiveAgent-Internal-Api-Python-client","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/QualityUnit/LiveAgent-Internal-Api-Python-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QualityUnit%2FLiveAgent-Internal-Api-Python-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QualityUnit%2FLiveAgent-Internal-Api-Python-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QualityUnit%2FLiveAgent-Internal-Api-Python-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QualityUnit%2FLiveAgent-Internal-Api-Python-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/QualityUnit","download_url":"https://codeload.github.com/QualityUnit/LiveAgent-Internal-Api-Python-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QualityUnit%2FLiveAgent-Internal-Api-Python-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32070656,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T21:26:33.338Z","status":"ssl_error","status_checked_at":"2026-04-20T21:26:22.081Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-18T16:20:45.897Z","updated_at":"2026-04-20T23:33:20.464Z","avatar_url":"https://github.com/QualityUnit.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# qu.la-internal\nThis API is for async event communication\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0.8\n- Package version: 1.0.8\n- Build package: org.openapitools.codegen.languages.PythonNextgenClientCodegen\n\n## Requirements.\n\nPython 3.7+\n\n## Installation \u0026 Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/qualityunit/LiveAgent-Internal-Api-Python-client.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/qualityunit/LiveAgent-Internal-Api-Python-client.git`)\n\nThen import the package:\n```python\nimport qu.la_internal\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport qu.la_internal\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\nfrom __future__ import print_function\n\nimport time\nimport qu.la_internal\nfrom qu.la_internal.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to http://localhost/public/api/internal\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = qu.la_internal.Configuration(\n    host = \"http://localhost/public/api/internal\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\n# Configure Bearer authorization (JWT): bearerAuth\nconfiguration = qu.la_internal.Configuration(\n    access_token = os.environ[\"BEARER_TOKEN\"]\n)\n\n\n# Enter a context with an instance of the API client\nasync with qu.la_internal.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = qu.la_internal.EventsApi(api_client)\n    handler_payload = qu.la_internal.HandlerPayload() # HandlerPayload |  (optional)\n\n    try:\n        # Execute event handlers\n        await api_instance.execute_handler(handler_payload=handler_payload)\n    except ApiException as e:\n        print(\"Exception when calling EventsApi-\u003eexecute_handler: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost/public/api/internal*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*EventsApi* | [**execute_handler**](docs/EventsApi.md#execute_handler) | **POST** /handlers | Execute event handlers\n*EventsApi* | [**get_event_consumers**](docs/EventsApi.md#get_event_consumers) | **GET** /handlers | Get event consumer definitions\n\n\n## Documentation For Models\n\n - [Consumer](docs/Consumer.md)\n - [Event](docs/Event.md)\n - [HandlerPayload](docs/HandlerPayload.md)\n\n\n## Documentation For Authorization\n\n\n## bearerAuth\n\n- **Type**: Bearer authentication (JWT)\n\n\n## Author\n\nmcivan@qualityunit.com\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqualityunit%2Fliveagent-internal-api-python-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqualityunit%2Fliveagent-internal-api-python-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqualityunit%2Fliveagent-internal-api-python-client/lists"}