fixpoint_openapi


Namefixpoint_openapi JSON
Version 0.3.0 PyPI version JSON
download
home_pagehttps://github.com/gofixpoint/python-openapi-client
SummaryOpenAPI client for Fixpoint - Auto-improvement to make your LLM apps smarter
upload_time2024-04-21 21:29:06
maintainerNone
docs_urlNone
authorFixpoint
requires_python<4.0,>=3.8
licenseLicense :: OSI Approved :: Apache Software License
keywords openapi openapi-generator
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # fixpoint-openapi
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: version not set
- Package version: 0.1.0
- Generator version: 7.4.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python 3.7+

## Installation & Usage
### pip install

If the python package is hosted on a repository, you can install directly using:

```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)

Then import the package:
```python
import fixpoint_openapi
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import fixpoint_openapi
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import fixpoint_openapi
from fixpoint_openapi.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = fixpoint_openapi.Configuration(
    host = "http://localhost"
)



# Enter a context with an instance of the API client
with fixpoint_openapi.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = fixpoint_openapi.FixpointApi(api_client)
    body = fixpoint_openapi.V1CreateApiSecretRequest() # V1CreateApiSecretRequest | 

    try:
        # Store LLM inference API secret
        api_response = api_instance.fixpoint_create_api_secret(body)
        print("The response of FixpointApi->fixpoint_create_api_secret:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling FixpointApi->fixpoint_create_api_secret: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *http://localhost*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*FixpointApi* | [**fixpoint_create_api_secret**](docs/FixpointApi.md#fixpoint_create_api_secret) | **POST** /v1/api_secrets | Store LLM inference API secret
*FixpointApi* | [**fixpoint_create_app_logs**](docs/FixpointApi.md#fixpoint_create_app_logs) | **POST** /v1/app_logs | Create application logs
*FixpointApi* | [**fixpoint_create_dataset**](docs/FixpointApi.md#fixpoint_create_dataset) | **POST** /v1/datasets | Create LLM dataset
*FixpointApi* | [**fixpoint_create_likes**](docs/FixpointApi.md#fixpoint_create_likes) | **POST** /v1/likes | Add LLM log feedback (\&quot;likes\&quot;)
*FixpointApi* | [**fixpoint_create_log_attribute**](docs/FixpointApi.md#fixpoint_create_log_attribute) | **POST** /v1/attributes | Attach attribute to LLM log
*FixpointApi* | [**fixpoint_create_multi_llm_chat_completion**](docs/FixpointApi.md#fixpoint_create_multi_llm_chat_completion) | **POST** /v1/chat/completions/multi_llm | 
*FixpointApi* | [**fixpoint_create_open_ai_chat_input_log**](docs/FixpointApi.md#fixpoint_create_open_ai_chat_input_log) | **POST** /v1/openai_chats/{modelName}/input_logs | Create an LLM input log
*FixpointApi* | [**fixpoint_create_open_ai_chat_output_log**](docs/FixpointApi.md#fixpoint_create_open_ai_chat_output_log) | **POST** /v1/openai_chats/{modelName}/output_logs | Create an LLM output log
*FixpointApi* | [**fixpoint_create_routing_config**](docs/FixpointApi.md#fixpoint_create_routing_config) | **POST** /v1/routing_configs | Create LLM routing config
*FixpointApi* | [**fixpoint_delete_log_attribute**](docs/FixpointApi.md#fixpoint_delete_log_attribute) | **DELETE** /v1/attributes/{name} | Remove LLM log attribute
*FixpointApi* | [**fixpoint_list_api_secrets**](docs/FixpointApi.md#fixpoint_list_api_secrets) | **GET** /v1/api_secrets | List LLM inference API secrets
*FixpointApi* | [**fixpoint_list_app_logs**](docs/FixpointApi.md#fixpoint_list_app_logs) | **GET** /v1/app_logs | List application logs
*FixpointApi* | [**fixpoint_list_datasets**](docs/FixpointApi.md#fixpoint_list_datasets) | **GET** /v1/datasets | List LLM datasets
*FixpointApi* | [**fixpoint_list_likes**](docs/FixpointApi.md#fixpoint_list_likes) | **GET** /v1/likes | List LLM log feedback (\&quot;likes\&quot;)
*FixpointApi* | [**fixpoint_list_log_attributes**](docs/FixpointApi.md#fixpoint_list_log_attributes) | **GET** /v1/attributes | List attributes on an LLM log
*FixpointApi* | [**fixpoint_list_open_ai_chat_logs**](docs/FixpointApi.md#fixpoint_list_open_ai_chat_logs) | **GET** /v1/{parent}/logs | DEPRECATED: List LLM logs
*FixpointApi* | [**fixpoint_list_routing_configs**](docs/FixpointApi.md#fixpoint_list_routing_configs) | **GET** /v1/routing_configs | List LLM routing configs
*FixpointApi* | [**fixpoint_post_dataset_logs**](docs/FixpointApi.md#fixpoint_post_dataset_logs) | **POST** /v1/datasets/{name}/logs | Add logs to a dataset
*FixpointApi* | [**fixpoint_update_spending_totals**](docs/FixpointApi.md#fixpoint_update_spending_totals) | **PATCH** /v1/routing_configs/{routeConfigId} | Update routing config spending totals


## Documentation For Models

 - [AppLogLevelType](docs/AppLogLevelType.md)
 - [FixpointCreateOpenAIChatInputLogRequest](docs/FixpointCreateOpenAIChatInputLogRequest.md)
 - [FixpointCreateOpenAIChatOutputLogRequest](docs/FixpointCreateOpenAIChatOutputLogRequest.md)
 - [FixpointPostDatasetLogsRequest](docs/FixpointPostDatasetLogsRequest.md)
 - [FixpointUpdateSpendingTotalsRequest](docs/FixpointUpdateSpendingTotalsRequest.md)
 - [Fixpointv1Model](docs/Fixpointv1Model.md)
 - [ProtobufAny](docs/ProtobufAny.md)
 - [ProtobufNullValue](docs/ProtobufNullValue.md)
 - [RpcStatus](docs/RpcStatus.md)
 - [ToolCallFunction](docs/ToolCallFunction.md)
 - [V1ApiSecret](docs/V1ApiSecret.md)
 - [V1ApiSecretProvider](docs/V1ApiSecretProvider.md)
 - [V1AppLog](docs/V1AppLog.md)
 - [V1AttributeFilters](docs/V1AttributeFilters.md)
 - [V1ChatCompletion](docs/V1ChatCompletion.md)
 - [V1ChatCompletionChoice](docs/V1ChatCompletionChoice.md)
 - [V1ChatCompletionUsage](docs/V1ChatCompletionUsage.md)
 - [V1CreateApiSecretRequest](docs/V1CreateApiSecretRequest.md)
 - [V1CreateAppLogsRequest](docs/V1CreateAppLogsRequest.md)
 - [V1CreateAppLogsResponse](docs/V1CreateAppLogsResponse.md)
 - [V1CreateDatasetRequest](docs/V1CreateDatasetRequest.md)
 - [V1CreateDatasetResponse](docs/V1CreateDatasetResponse.md)
 - [V1CreateLikesRequest](docs/V1CreateLikesRequest.md)
 - [V1CreateLikesResponse](docs/V1CreateLikesResponse.md)
 - [V1CreateLogAttributeRequest](docs/V1CreateLogAttributeRequest.md)
 - [V1CreateLogAttributeResponse](docs/V1CreateLogAttributeResponse.md)
 - [V1CreateMultiLLMChatCompletionRequest](docs/V1CreateMultiLLMChatCompletionRequest.md)
 - [V1CreateMultiLLMChatCompletionRequestModel](docs/V1CreateMultiLLMChatCompletionRequestModel.md)
 - [V1CreateRoutingConfigRequest](docs/V1CreateRoutingConfigRequest.md)
 - [V1Dataset](docs/V1Dataset.md)
 - [V1DatasetFilters](docs/V1DatasetFilters.md)
 - [V1DeleteLogAttributeResponse](docs/V1DeleteLogAttributeResponse.md)
 - [V1FallbackStrategy](docs/V1FallbackStrategy.md)
 - [V1InputMessage](docs/V1InputMessage.md)
 - [V1Like](docs/V1Like.md)
 - [V1LikeFilter](docs/V1LikeFilter.md)
 - [V1LikeIngest](docs/V1LikeIngest.md)
 - [V1ListApiSecretsResponse](docs/V1ListApiSecretsResponse.md)
 - [V1ListAppLogsResponse](docs/V1ListAppLogsResponse.md)
 - [V1ListDatasetsResponse](docs/V1ListDatasetsResponse.md)
 - [V1ListLikesResponse](docs/V1ListLikesResponse.md)
 - [V1ListLogAttributesResponse](docs/V1ListLogAttributesResponse.md)
 - [V1ListOpenAIChatLogsResponse](docs/V1ListOpenAIChatLogsResponse.md)
 - [V1ListRoutingConfigsResponse](docs/V1ListRoutingConfigsResponse.md)
 - [V1LogAttribute](docs/V1LogAttribute.md)
 - [V1Mode](docs/V1Mode.md)
 - [V1MultiLLMChatCompletion](docs/V1MultiLLMChatCompletion.md)
 - [V1OpenAIChatInputLog](docs/V1OpenAIChatInputLog.md)
 - [V1OpenAIChatLog](docs/V1OpenAIChatLog.md)
 - [V1OpenAIChatLogsFilters](docs/V1OpenAIChatLogsFilters.md)
 - [V1OpenAIChatOutputLog](docs/V1OpenAIChatOutputLog.md)
 - [V1OpenAIChatOutputLogChoice](docs/V1OpenAIChatOutputLogChoice.md)
 - [V1OpenAIChatOutputLogUsage](docs/V1OpenAIChatOutputLogUsage.md)
 - [V1OriginType](docs/V1OriginType.md)
 - [V1OutputMessage](docs/V1OutputMessage.md)
 - [V1PostDatasetLogsResponse](docs/V1PostDatasetLogsResponse.md)
 - [V1RelativeDateTimeFilters](docs/V1RelativeDateTimeFilters.md)
 - [V1ResetInterval](docs/V1ResetInterval.md)
 - [V1RoutingConfig](docs/V1RoutingConfig.md)
 - [V1SpendCap](docs/V1SpendCap.md)
 - [V1TerminalState](docs/V1TerminalState.md)
 - [V1ThumbsReaction](docs/V1ThumbsReaction.md)
 - [V1ToolCall](docs/V1ToolCall.md)
 - [V1Tracing](docs/V1Tracing.md)
 - [V1TracingFilters](docs/V1TracingFilters.md)
 - [V1UsageTotals](docs/V1UsageTotals.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization

Endpoints do not require authorization.


## Author





            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gofixpoint/python-openapi-client",
    "name": "fixpoint_openapi",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "OpenAPI, OpenAPI-Generator",
    "author": "Fixpoint",
    "author_email": "team@fixpoint.co",
    "download_url": "https://files.pythonhosted.org/packages/e8/05/516c82e654c6b5aee3a3b573d2456810e84b1ea154b4e0f3aad357c87599/fixpoint_openapi-0.3.0.tar.gz",
    "platform": null,
    "description": "# fixpoint-openapi\nNo description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: version not set\n- Package version: 0.1.0\n- Generator version: 7.4.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\n\n## Requirements.\n\nPython 3.7+\n\n## Installation & 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/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport fixpoint_openapi\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 fixpoint_openapi\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport fixpoint_openapi\nfrom fixpoint_openapi.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to http://localhost\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = fixpoint_openapi.Configuration(\n    host = \"http://localhost\"\n)\n\n\n\n# Enter a context with an instance of the API client\nwith fixpoint_openapi.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = fixpoint_openapi.FixpointApi(api_client)\n    body = fixpoint_openapi.V1CreateApiSecretRequest() # V1CreateApiSecretRequest | \n\n    try:\n        # Store LLM inference API secret\n        api_response = api_instance.fixpoint_create_api_secret(body)\n        print(\"The response of FixpointApi->fixpoint_create_api_secret:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling FixpointApi->fixpoint_create_api_secret: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*FixpointApi* | [**fixpoint_create_api_secret**](docs/FixpointApi.md#fixpoint_create_api_secret) | **POST** /v1/api_secrets | Store LLM inference API secret\n*FixpointApi* | [**fixpoint_create_app_logs**](docs/FixpointApi.md#fixpoint_create_app_logs) | **POST** /v1/app_logs | Create application logs\n*FixpointApi* | [**fixpoint_create_dataset**](docs/FixpointApi.md#fixpoint_create_dataset) | **POST** /v1/datasets | Create LLM dataset\n*FixpointApi* | [**fixpoint_create_likes**](docs/FixpointApi.md#fixpoint_create_likes) | **POST** /v1/likes | Add LLM log feedback (\\&quot;likes\\&quot;)\n*FixpointApi* | [**fixpoint_create_log_attribute**](docs/FixpointApi.md#fixpoint_create_log_attribute) | **POST** /v1/attributes | Attach attribute to LLM log\n*FixpointApi* | [**fixpoint_create_multi_llm_chat_completion**](docs/FixpointApi.md#fixpoint_create_multi_llm_chat_completion) | **POST** /v1/chat/completions/multi_llm | \n*FixpointApi* | [**fixpoint_create_open_ai_chat_input_log**](docs/FixpointApi.md#fixpoint_create_open_ai_chat_input_log) | **POST** /v1/openai_chats/{modelName}/input_logs | Create an LLM input log\n*FixpointApi* | [**fixpoint_create_open_ai_chat_output_log**](docs/FixpointApi.md#fixpoint_create_open_ai_chat_output_log) | **POST** /v1/openai_chats/{modelName}/output_logs | Create an LLM output log\n*FixpointApi* | [**fixpoint_create_routing_config**](docs/FixpointApi.md#fixpoint_create_routing_config) | **POST** /v1/routing_configs | Create LLM routing config\n*FixpointApi* | [**fixpoint_delete_log_attribute**](docs/FixpointApi.md#fixpoint_delete_log_attribute) | **DELETE** /v1/attributes/{name} | Remove LLM log attribute\n*FixpointApi* | [**fixpoint_list_api_secrets**](docs/FixpointApi.md#fixpoint_list_api_secrets) | **GET** /v1/api_secrets | List LLM inference API secrets\n*FixpointApi* | [**fixpoint_list_app_logs**](docs/FixpointApi.md#fixpoint_list_app_logs) | **GET** /v1/app_logs | List application logs\n*FixpointApi* | [**fixpoint_list_datasets**](docs/FixpointApi.md#fixpoint_list_datasets) | **GET** /v1/datasets | List LLM datasets\n*FixpointApi* | [**fixpoint_list_likes**](docs/FixpointApi.md#fixpoint_list_likes) | **GET** /v1/likes | List LLM log feedback (\\&quot;likes\\&quot;)\n*FixpointApi* | [**fixpoint_list_log_attributes**](docs/FixpointApi.md#fixpoint_list_log_attributes) | **GET** /v1/attributes | List attributes on an LLM log\n*FixpointApi* | [**fixpoint_list_open_ai_chat_logs**](docs/FixpointApi.md#fixpoint_list_open_ai_chat_logs) | **GET** /v1/{parent}/logs | DEPRECATED: List LLM logs\n*FixpointApi* | [**fixpoint_list_routing_configs**](docs/FixpointApi.md#fixpoint_list_routing_configs) | **GET** /v1/routing_configs | List LLM routing configs\n*FixpointApi* | [**fixpoint_post_dataset_logs**](docs/FixpointApi.md#fixpoint_post_dataset_logs) | **POST** /v1/datasets/{name}/logs | Add logs to a dataset\n*FixpointApi* | [**fixpoint_update_spending_totals**](docs/FixpointApi.md#fixpoint_update_spending_totals) | **PATCH** /v1/routing_configs/{routeConfigId} | Update routing config spending totals\n\n\n## Documentation For Models\n\n - [AppLogLevelType](docs/AppLogLevelType.md)\n - [FixpointCreateOpenAIChatInputLogRequest](docs/FixpointCreateOpenAIChatInputLogRequest.md)\n - [FixpointCreateOpenAIChatOutputLogRequest](docs/FixpointCreateOpenAIChatOutputLogRequest.md)\n - [FixpointPostDatasetLogsRequest](docs/FixpointPostDatasetLogsRequest.md)\n - [FixpointUpdateSpendingTotalsRequest](docs/FixpointUpdateSpendingTotalsRequest.md)\n - [Fixpointv1Model](docs/Fixpointv1Model.md)\n - [ProtobufAny](docs/ProtobufAny.md)\n - [ProtobufNullValue](docs/ProtobufNullValue.md)\n - [RpcStatus](docs/RpcStatus.md)\n - [ToolCallFunction](docs/ToolCallFunction.md)\n - [V1ApiSecret](docs/V1ApiSecret.md)\n - [V1ApiSecretProvider](docs/V1ApiSecretProvider.md)\n - [V1AppLog](docs/V1AppLog.md)\n - [V1AttributeFilters](docs/V1AttributeFilters.md)\n - [V1ChatCompletion](docs/V1ChatCompletion.md)\n - [V1ChatCompletionChoice](docs/V1ChatCompletionChoice.md)\n - [V1ChatCompletionUsage](docs/V1ChatCompletionUsage.md)\n - [V1CreateApiSecretRequest](docs/V1CreateApiSecretRequest.md)\n - [V1CreateAppLogsRequest](docs/V1CreateAppLogsRequest.md)\n - [V1CreateAppLogsResponse](docs/V1CreateAppLogsResponse.md)\n - [V1CreateDatasetRequest](docs/V1CreateDatasetRequest.md)\n - [V1CreateDatasetResponse](docs/V1CreateDatasetResponse.md)\n - [V1CreateLikesRequest](docs/V1CreateLikesRequest.md)\n - [V1CreateLikesResponse](docs/V1CreateLikesResponse.md)\n - [V1CreateLogAttributeRequest](docs/V1CreateLogAttributeRequest.md)\n - [V1CreateLogAttributeResponse](docs/V1CreateLogAttributeResponse.md)\n - [V1CreateMultiLLMChatCompletionRequest](docs/V1CreateMultiLLMChatCompletionRequest.md)\n - [V1CreateMultiLLMChatCompletionRequestModel](docs/V1CreateMultiLLMChatCompletionRequestModel.md)\n - [V1CreateRoutingConfigRequest](docs/V1CreateRoutingConfigRequest.md)\n - [V1Dataset](docs/V1Dataset.md)\n - [V1DatasetFilters](docs/V1DatasetFilters.md)\n - [V1DeleteLogAttributeResponse](docs/V1DeleteLogAttributeResponse.md)\n - [V1FallbackStrategy](docs/V1FallbackStrategy.md)\n - [V1InputMessage](docs/V1InputMessage.md)\n - [V1Like](docs/V1Like.md)\n - [V1LikeFilter](docs/V1LikeFilter.md)\n - [V1LikeIngest](docs/V1LikeIngest.md)\n - [V1ListApiSecretsResponse](docs/V1ListApiSecretsResponse.md)\n - [V1ListAppLogsResponse](docs/V1ListAppLogsResponse.md)\n - [V1ListDatasetsResponse](docs/V1ListDatasetsResponse.md)\n - [V1ListLikesResponse](docs/V1ListLikesResponse.md)\n - [V1ListLogAttributesResponse](docs/V1ListLogAttributesResponse.md)\n - [V1ListOpenAIChatLogsResponse](docs/V1ListOpenAIChatLogsResponse.md)\n - [V1ListRoutingConfigsResponse](docs/V1ListRoutingConfigsResponse.md)\n - [V1LogAttribute](docs/V1LogAttribute.md)\n - [V1Mode](docs/V1Mode.md)\n - [V1MultiLLMChatCompletion](docs/V1MultiLLMChatCompletion.md)\n - [V1OpenAIChatInputLog](docs/V1OpenAIChatInputLog.md)\n - [V1OpenAIChatLog](docs/V1OpenAIChatLog.md)\n - [V1OpenAIChatLogsFilters](docs/V1OpenAIChatLogsFilters.md)\n - [V1OpenAIChatOutputLog](docs/V1OpenAIChatOutputLog.md)\n - [V1OpenAIChatOutputLogChoice](docs/V1OpenAIChatOutputLogChoice.md)\n - [V1OpenAIChatOutputLogUsage](docs/V1OpenAIChatOutputLogUsage.md)\n - [V1OriginType](docs/V1OriginType.md)\n - [V1OutputMessage](docs/V1OutputMessage.md)\n - [V1PostDatasetLogsResponse](docs/V1PostDatasetLogsResponse.md)\n - [V1RelativeDateTimeFilters](docs/V1RelativeDateTimeFilters.md)\n - [V1ResetInterval](docs/V1ResetInterval.md)\n - [V1RoutingConfig](docs/V1RoutingConfig.md)\n - [V1SpendCap](docs/V1SpendCap.md)\n - [V1TerminalState](docs/V1TerminalState.md)\n - [V1ThumbsReaction](docs/V1ThumbsReaction.md)\n - [V1ToolCall](docs/V1ToolCall.md)\n - [V1Tracing](docs/V1Tracing.md)\n - [V1TracingFilters](docs/V1TracingFilters.md)\n - [V1UsageTotals](docs/V1UsageTotals.md)\n\n\n<a id=\"documentation-for-authorization\"></a>\n## Documentation For Authorization\n\nEndpoints do not require authorization.\n\n\n## Author\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "License :: OSI Approved :: Apache Software License",
    "summary": "OpenAPI client for Fixpoint - Auto-improvement to make your LLM apps smarter",
    "version": "0.3.0",
    "project_urls": {
        "Homepage": "https://github.com/gofixpoint/python-openapi-client",
        "Repository": "https://github.com/gofixpoint/python-openapi-client"
    },
    "split_keywords": [
        "openapi",
        " openapi-generator"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae61d81609cac007b15d11b622dddd7c919fb5c3186a65e2f306df2886608a0e",
                "md5": "279abfa61929929c0e27d53d08089faf",
                "sha256": "622ec1067b85fe856118940c7421718f0ef7b66d4fd87e0748be875ec90f8f81"
            },
            "downloads": -1,
            "filename": "fixpoint_openapi-0.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "279abfa61929929c0e27d53d08089faf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 121531,
            "upload_time": "2024-04-21T21:29:02",
            "upload_time_iso_8601": "2024-04-21T21:29:02.101797Z",
            "url": "https://files.pythonhosted.org/packages/ae/61/d81609cac007b15d11b622dddd7c919fb5c3186a65e2f306df2886608a0e/fixpoint_openapi-0.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e805516c82e654c6b5aee3a3b573d2456810e84b1ea154b4e0f3aad357c87599",
                "md5": "ae77ea68e8cc7242f885dd32181eca74",
                "sha256": "752b4798b29548897307f90f935c1ad4aee3092043e216c63ca44ac6c8f6547c"
            },
            "downloads": -1,
            "filename": "fixpoint_openapi-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ae77ea68e8cc7242f885dd32181eca74",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 45891,
            "upload_time": "2024-04-21T21:29:06",
            "upload_time_iso_8601": "2024-04-21T21:29:06.131757Z",
            "url": "https://files.pythonhosted.org/packages/e8/05/516c82e654c6b5aee3a3b573d2456810e84b1ea154b4e0f3aad357c87599/fixpoint_openapi-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-21 21:29:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gofixpoint",
    "github_project": "python-openapi-client",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "fixpoint_openapi"
}
        
Elapsed time: 0.24704s