msq-test-api


Namemsq-test-api JSON
Version 0.0.4 PyPI version JSON
download
home_pageNone
SummaryAgentKit Computer-Use API
upload_time2025-07-21 13:24:09
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseNone
keywords swagger agentkit computer-use api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # msq_test-api
AgentKit Computer-Use API

This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 0.0.1
- Package version: 0.0.4
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen

## Requirements.

Python 2.7 and 3.4+

## Installation & Usage
### pip install

```sh
pip install computer-use-api
```
(you may need to run `pip` with root permission: `sudo pip install computer-use-api`)

Then import the package:
```python
import msq_test_api 
```

### 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 msq_test_api
```

## Getting Started

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

```python
from __future__ import print_function
import time
import msq_test_api
from msq_test_api.rest import ApiException
from pprint import pprint

# Configure API key authorization: ComputeUseKey
configuration = msq_test_api.Configuration()
configuration.host = "YOUR_TOOL_SERVER_URL"
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'

# create an instance of the API class
api_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))
body = msq_test_api.ClickMouseRequest() # ClickMouseRequest | 

try:
    # 鼠标在指定位置点击
    api_response = api_instance.click_mouse(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ComputerUseApi->click_mouse: %s\n" % e)

# Configure API key authorization: ComputeUseKey
configuration = msq_test_api.Configuration()
configuration.host = "YOUR_TOOL_SERVER_URL"
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'

# create an instance of the API class
api_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))
body = msq_test_api.DragMouseRequest() # DragMouseRequest | 

try:
    # 移动鼠标
    api_response = api_instance.drag_mouse(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ComputerUseApi->drag_mouse: %s\n" % e)

# Configure API key authorization: ComputeUseKey
configuration = msq_test_api.Configuration()
configuration.host = "YOUR_TOOL_SERVER_URL"
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'

# create an instance of the API class
api_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))

try:
    # 获取鼠标坐标
    api_response = api_instance.get_cursor_position()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ComputerUseApi->get_cursor_position: %s\n" % e)

# Configure API key authorization: ComputeUseKey
configuration = msq_test_api.Configuration()
configuration.host = "YOUR_TOOL_SERVER_URL"
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'

# create an instance of the API class
api_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))

try:
    # 获取屏幕长宽
    api_response = api_instance.get_screen_size()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ComputerUseApi->get_screen_size: %s\n" % e)

# Configure API key authorization: ComputeUseKey
configuration = msq_test_api.Configuration()
configuration.host = "YOUR_TOOL_SERVER_URL"
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'

# create an instance of the API class
api_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))
body = msq_test_api.MoveMouseRequest() # MoveMouseRequest | 

try:
    # 鼠标移动到指定位置
    api_response = api_instance.move_mouse(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ComputerUseApi->move_mouse: %s\n" % e)

# Configure API key authorization: ComputeUseKey
configuration = msq_test_api.Configuration()
configuration.host = "YOUR_TOOL_SERVER_URL"
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'

# create an instance of the API class
api_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))
body = msq_test_api.PressKeyRequest() # PressKeyRequest | 

try:
    # 按键
    api_response = api_instance.press_key(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ComputerUseApi->press_key: %s\n" % e)

# Configure API key authorization: ComputeUseKey
configuration = msq_test_api.Configuration()
configuration.host = "YOUR_TOOL_SERVER_URL"
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'

# create an instance of the API class
api_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))
body = msq_test_api.ScrollRequest() # ScrollRequest | 

try:
    # 滚动
    api_response = api_instance.scroll(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ComputerUseApi->scroll: %s\n" % e)

# Configure API key authorization: ComputeUseKey
configuration = msq_test_api.Configuration()
configuration.host = "YOUR_TOOL_SERVER_URL"
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'

# create an instance of the API class
api_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))

try:
    # 截屏
    api_response = api_instance.take_screenshot()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ComputerUseApi->take_screenshot: %s\n" % e)

# Configure API key authorization: ComputeUseKey
configuration = msq_test_api.Configuration()
configuration.host = "YOUR_TOOL_SERVER_URL"
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'

# create an instance of the API class
api_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))
body = msq_test_api.TypeTextRequest() # TypeTextRequest | 

try:
    # 发送文本
    api_response = api_instance.type_text(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ComputerUseApi->type_text: %s\n" % e)
```

## Documentation for API Endpoints

All URIs are relative to */*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*ComputerUseApi* | [**click_mouse**](docs/ComputerUseApi.md#click_mouse) | **POST** /2020-04-01/ClickMouse | 鼠标在指定位置点击
*ComputerUseApi* | [**drag_mouse**](docs/ComputerUseApi.md#drag_mouse) | **POST** /2020-04-01/DragMouse | 移动鼠标
*ComputerUseApi* | [**get_cursor_position**](docs/ComputerUseApi.md#get_cursor_position) | **GET** /2020-04-01/GetCursorPosition | 获取鼠标坐标
*ComputerUseApi* | [**get_screen_size**](docs/ComputerUseApi.md#get_screen_size) | **GET** /2020-04-01/GetScreenSize | 获取屏幕长宽
*ComputerUseApi* | [**move_mouse**](docs/ComputerUseApi.md#move_mouse) | **POST** /2020-04-01/MoveMouse | 鼠标移动到指定位置
*ComputerUseApi* | [**press_key**](docs/ComputerUseApi.md#press_key) | **POST** /2020-04-01/PressKey | 按键
*ComputerUseApi* | [**scroll**](docs/ComputerUseApi.md#scroll) | **POST** /2020-04-01/Scroll | 滚动
*ComputerUseApi* | [**take_screenshot**](docs/ComputerUseApi.md#take_screenshot) | **GET** /2020-04-01/TakeScreenshot | 截屏
*ComputerUseApi* | [**type_text**](docs/ComputerUseApi.md#type_text) | **POST** /2020-04-01/TypeText | 发送文本

## Documentation For Models

 - [ClickMouseRequest](docs/ClickMouseRequest.md)
 - [ClickMouseResponse](docs/ClickMouseResponse.md)
 - [ComputeOperateResult](docs/ComputeOperateResult.md)
 - [DragMouseRequest](docs/DragMouseRequest.md)
 - [DragMouseResponse](docs/DragMouseResponse.md)
 - [GetCursorPositionResponse](docs/GetCursorPositionResponse.md)
 - [GetCursorPositionResult](docs/GetCursorPositionResult.md)
 - [GetScreenSizeResponse](docs/GetScreenSizeResponse.md)
 - [GetScreenSizeResult](docs/GetScreenSizeResult.md)
 - [InternalError](docs/InternalError.md)
 - [MoveMouseRequest](docs/MoveMouseRequest.md)
 - [MoveMouseResponse](docs/MoveMouseResponse.md)
 - [PressKeyRequest](docs/PressKeyRequest.md)
 - [PressKeyResponse](docs/PressKeyResponse.md)
 - [ResponseMetadata](docs/ResponseMetadata.md)
 - [ScrollRequest](docs/ScrollRequest.md)
 - [ScrollResponse](docs/ScrollResponse.md)
 - [TakeScreenshotResponse](docs/TakeScreenshotResponse.md)
 - [TakeScreenshotResult](docs/TakeScreenshotResult.md)
 - [TypeTextRequest](docs/TypeTextRequest.md)
 - [TypeTextResponse](docs/TypeTextResponse.md)
 - [UnauthorizedError](docs/UnauthorizedError.md)

## Documentation For Authorization


## ComputeUseKey

- **Type**: API key
- **API key parameter name**: X-API-Key
- **Location**: HTTP header


## Author



            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "msq-test-api",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Swagger, AgentKit Computer-Use API",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/49/c4/3842bcb6b1d9d71055b1059978d490a1fa5d7721987d5ab012255a5bfdae/msq_test_api-0.0.4.tar.gz",
    "platform": null,
    "description": "# msq_test-api\nAgentKit Computer-Use API\n\nThis Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:\n\n- API version: 0.0.1\n- Package version: 0.0.4\n- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen\n\n## Requirements.\n\nPython 2.7 and 3.4+\n\n## Installation & Usage\n### pip install\n\n```sh\npip install computer-use-api\n```\n(you may need to run `pip` with root permission: `sudo pip install computer-use-api`)\n\nThen import the package:\n```python\nimport msq_test_api \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 msq_test_api\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\nimport time\nimport msq_test_api\nfrom msq_test_api.rest import ApiException\nfrom pprint import pprint\n\n# Configure API key authorization: ComputeUseKey\nconfiguration = msq_test_api.Configuration()\nconfiguration.host = \"YOUR_TOOL_SERVER_URL\"\nconfiguration.api_key['X-API-Key'] = 'YOUR_API_KEY'\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['X-API-Key'] = 'Bearer'\n\n# create an instance of the API class\napi_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))\nbody = msq_test_api.ClickMouseRequest() # ClickMouseRequest | \n\ntry:\n    # \u9f20\u6807\u5728\u6307\u5b9a\u4f4d\u7f6e\u70b9\u51fb\n    api_response = api_instance.click_mouse(body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling ComputerUseApi->click_mouse: %s\\n\" % e)\n\n# Configure API key authorization: ComputeUseKey\nconfiguration = msq_test_api.Configuration()\nconfiguration.host = \"YOUR_TOOL_SERVER_URL\"\nconfiguration.api_key['X-API-Key'] = 'YOUR_API_KEY'\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['X-API-Key'] = 'Bearer'\n\n# create an instance of the API class\napi_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))\nbody = msq_test_api.DragMouseRequest() # DragMouseRequest | \n\ntry:\n    # \u79fb\u52a8\u9f20\u6807\n    api_response = api_instance.drag_mouse(body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling ComputerUseApi->drag_mouse: %s\\n\" % e)\n\n# Configure API key authorization: ComputeUseKey\nconfiguration = msq_test_api.Configuration()\nconfiguration.host = \"YOUR_TOOL_SERVER_URL\"\nconfiguration.api_key['X-API-Key'] = 'YOUR_API_KEY'\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['X-API-Key'] = 'Bearer'\n\n# create an instance of the API class\napi_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))\n\ntry:\n    # \u83b7\u53d6\u9f20\u6807\u5750\u6807\n    api_response = api_instance.get_cursor_position()\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling ComputerUseApi->get_cursor_position: %s\\n\" % e)\n\n# Configure API key authorization: ComputeUseKey\nconfiguration = msq_test_api.Configuration()\nconfiguration.host = \"YOUR_TOOL_SERVER_URL\"\nconfiguration.api_key['X-API-Key'] = 'YOUR_API_KEY'\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['X-API-Key'] = 'Bearer'\n\n# create an instance of the API class\napi_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))\n\ntry:\n    # \u83b7\u53d6\u5c4f\u5e55\u957f\u5bbd\n    api_response = api_instance.get_screen_size()\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling ComputerUseApi->get_screen_size: %s\\n\" % e)\n\n# Configure API key authorization: ComputeUseKey\nconfiguration = msq_test_api.Configuration()\nconfiguration.host = \"YOUR_TOOL_SERVER_URL\"\nconfiguration.api_key['X-API-Key'] = 'YOUR_API_KEY'\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['X-API-Key'] = 'Bearer'\n\n# create an instance of the API class\napi_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))\nbody = msq_test_api.MoveMouseRequest() # MoveMouseRequest | \n\ntry:\n    # \u9f20\u6807\u79fb\u52a8\u5230\u6307\u5b9a\u4f4d\u7f6e\n    api_response = api_instance.move_mouse(body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling ComputerUseApi->move_mouse: %s\\n\" % e)\n\n# Configure API key authorization: ComputeUseKey\nconfiguration = msq_test_api.Configuration()\nconfiguration.host = \"YOUR_TOOL_SERVER_URL\"\nconfiguration.api_key['X-API-Key'] = 'YOUR_API_KEY'\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['X-API-Key'] = 'Bearer'\n\n# create an instance of the API class\napi_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))\nbody = msq_test_api.PressKeyRequest() # PressKeyRequest | \n\ntry:\n    # \u6309\u952e\n    api_response = api_instance.press_key(body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling ComputerUseApi->press_key: %s\\n\" % e)\n\n# Configure API key authorization: ComputeUseKey\nconfiguration = msq_test_api.Configuration()\nconfiguration.host = \"YOUR_TOOL_SERVER_URL\"\nconfiguration.api_key['X-API-Key'] = 'YOUR_API_KEY'\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['X-API-Key'] = 'Bearer'\n\n# create an instance of the API class\napi_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))\nbody = msq_test_api.ScrollRequest() # ScrollRequest | \n\ntry:\n    # \u6eda\u52a8\n    api_response = api_instance.scroll(body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling ComputerUseApi->scroll: %s\\n\" % e)\n\n# Configure API key authorization: ComputeUseKey\nconfiguration = msq_test_api.Configuration()\nconfiguration.host = \"YOUR_TOOL_SERVER_URL\"\nconfiguration.api_key['X-API-Key'] = 'YOUR_API_KEY'\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['X-API-Key'] = 'Bearer'\n\n# create an instance of the API class\napi_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))\n\ntry:\n    # \u622a\u5c4f\n    api_response = api_instance.take_screenshot()\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling ComputerUseApi->take_screenshot: %s\\n\" % e)\n\n# Configure API key authorization: ComputeUseKey\nconfiguration = msq_test_api.Configuration()\nconfiguration.host = \"YOUR_TOOL_SERVER_URL\"\nconfiguration.api_key['X-API-Key'] = 'YOUR_API_KEY'\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['X-API-Key'] = 'Bearer'\n\n# create an instance of the API class\napi_instance = msq_test_api.ComputerUseApi(msq_test_api.ApiClient(configuration))\nbody = msq_test_api.TypeTextRequest() # TypeTextRequest | \n\ntry:\n    # \u53d1\u9001\u6587\u672c\n    api_response = api_instance.type_text(body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling ComputerUseApi->type_text: %s\\n\" % e)\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to */*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*ComputerUseApi* | [**click_mouse**](docs/ComputerUseApi.md#click_mouse) | **POST** /2020-04-01/ClickMouse | \u9f20\u6807\u5728\u6307\u5b9a\u4f4d\u7f6e\u70b9\u51fb\n*ComputerUseApi* | [**drag_mouse**](docs/ComputerUseApi.md#drag_mouse) | **POST** /2020-04-01/DragMouse | \u79fb\u52a8\u9f20\u6807\n*ComputerUseApi* | [**get_cursor_position**](docs/ComputerUseApi.md#get_cursor_position) | **GET** /2020-04-01/GetCursorPosition | \u83b7\u53d6\u9f20\u6807\u5750\u6807\n*ComputerUseApi* | [**get_screen_size**](docs/ComputerUseApi.md#get_screen_size) | **GET** /2020-04-01/GetScreenSize | \u83b7\u53d6\u5c4f\u5e55\u957f\u5bbd\n*ComputerUseApi* | [**move_mouse**](docs/ComputerUseApi.md#move_mouse) | **POST** /2020-04-01/MoveMouse | \u9f20\u6807\u79fb\u52a8\u5230\u6307\u5b9a\u4f4d\u7f6e\n*ComputerUseApi* | [**press_key**](docs/ComputerUseApi.md#press_key) | **POST** /2020-04-01/PressKey | \u6309\u952e\n*ComputerUseApi* | [**scroll**](docs/ComputerUseApi.md#scroll) | **POST** /2020-04-01/Scroll | \u6eda\u52a8\n*ComputerUseApi* | [**take_screenshot**](docs/ComputerUseApi.md#take_screenshot) | **GET** /2020-04-01/TakeScreenshot | \u622a\u5c4f\n*ComputerUseApi* | [**type_text**](docs/ComputerUseApi.md#type_text) | **POST** /2020-04-01/TypeText | \u53d1\u9001\u6587\u672c\n\n## Documentation For Models\n\n - [ClickMouseRequest](docs/ClickMouseRequest.md)\n - [ClickMouseResponse](docs/ClickMouseResponse.md)\n - [ComputeOperateResult](docs/ComputeOperateResult.md)\n - [DragMouseRequest](docs/DragMouseRequest.md)\n - [DragMouseResponse](docs/DragMouseResponse.md)\n - [GetCursorPositionResponse](docs/GetCursorPositionResponse.md)\n - [GetCursorPositionResult](docs/GetCursorPositionResult.md)\n - [GetScreenSizeResponse](docs/GetScreenSizeResponse.md)\n - [GetScreenSizeResult](docs/GetScreenSizeResult.md)\n - [InternalError](docs/InternalError.md)\n - [MoveMouseRequest](docs/MoveMouseRequest.md)\n - [MoveMouseResponse](docs/MoveMouseResponse.md)\n - [PressKeyRequest](docs/PressKeyRequest.md)\n - [PressKeyResponse](docs/PressKeyResponse.md)\n - [ResponseMetadata](docs/ResponseMetadata.md)\n - [ScrollRequest](docs/ScrollRequest.md)\n - [ScrollResponse](docs/ScrollResponse.md)\n - [TakeScreenshotResponse](docs/TakeScreenshotResponse.md)\n - [TakeScreenshotResult](docs/TakeScreenshotResult.md)\n - [TypeTextRequest](docs/TypeTextRequest.md)\n - [TypeTextResponse](docs/TypeTextResponse.md)\n - [UnauthorizedError](docs/UnauthorizedError.md)\n\n## Documentation For Authorization\n\n\n## ComputeUseKey\n\n- **Type**: API key\n- **API key parameter name**: X-API-Key\n- **Location**: HTTP header\n\n\n## Author\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "AgentKit Computer-Use API",
    "version": "0.0.4",
    "project_urls": null,
    "split_keywords": [
        "swagger",
        " agentkit computer-use api"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "877ec4e4f3ef59be20cca5938ebe0f1fb1a9fa57c05ad2c320a6c55da2f44956",
                "md5": "e94499920e60faf36d245a3ebf5a2dde",
                "sha256": "f8698b01ac62f5bead036d1a8491b409e9c9bcafca83d17d13c098f5d66b5107"
            },
            "downloads": -1,
            "filename": "msq_test_api-0.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e94499920e60faf36d245a3ebf5a2dde",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 47721,
            "upload_time": "2025-07-21T13:24:08",
            "upload_time_iso_8601": "2025-07-21T13:24:08.216922Z",
            "url": "https://files.pythonhosted.org/packages/87/7e/c4e4f3ef59be20cca5938ebe0f1fb1a9fa57c05ad2c320a6c55da2f44956/msq_test_api-0.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49c43842bcb6b1d9d71055b1059978d490a1fa5d7721987d5ab012255a5bfdae",
                "md5": "ab8846ba15fc3f5b816363532038decb",
                "sha256": "5a68c1e3ac7b9f7cc3c3125817be79c06555c713c5c86fa8b8e8fc078fc5af07"
            },
            "downloads": -1,
            "filename": "msq_test_api-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "ab8846ba15fc3f5b816363532038decb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 23920,
            "upload_time": "2025-07-21T13:24:09",
            "upload_time_iso_8601": "2025-07-21T13:24:09.364602Z",
            "url": "https://files.pythonhosted.org/packages/49/c4/3842bcb6b1d9d71055b1059978d490a1fa5d7721987d5ab012255a5bfdae/msq_test_api-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-21 13:24:09",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "msq-test-api"
}
        
Elapsed time: 0.59113s