# computer-use-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.1
- 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 computer_use_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 computer_use_api
```
## Getting Started
Please follow the [installation procedure](#installation--usage) and then run the following:
```python
from __future__ import print_function
import time
import computer_use_api
from computer_use_api.rest import ApiException
from pprint import pprint
# Configure API key authorization: ComputeUseKey
configuration = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))
body = computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))
body = computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))
body = computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))
body = computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))
body = computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))
body = computer_use_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": "computer-use-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/54/4e/071b1e8d30b880a07c6e6bd3124d41adb5c39315e950efecee09cd0e0ddb/computer_use_api-0.0.1.tar.gz",
"platform": null,
"description": "# computer-use-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.1\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 computer_use_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 computer_use_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 computer_use_api\nfrom computer_use_api.rest import ApiException\nfrom pprint import pprint\n\n# Configure API key authorization: ComputeUseKey\nconfiguration = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))\nbody = computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))\nbody = computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))\nbody = computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))\nbody = computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))\nbody = computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_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 = computer_use_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 = computer_use_api.ComputerUseApi(computer_use_api.ApiClient(configuration))\nbody = computer_use_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.1",
"project_urls": null,
"split_keywords": [
"swagger",
" agentkit computer-use api"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "15d4a417e653c9d19f5ac31bbf3f822c709254bfe7b0e5a02f60fcbe80878467",
"md5": "3cd3996932a37ba63b1a9593ab844f5e",
"sha256": "b3cca5102c3c8341c5641bff6dfba0a31fc675fbc68c629a2bfe1c591c368e06"
},
"downloads": -1,
"filename": "computer_use_api-0.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3cd3996932a37ba63b1a9593ab844f5e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 48783,
"upload_time": "2025-07-22T03:05:43",
"upload_time_iso_8601": "2025-07-22T03:05:43.552261Z",
"url": "https://files.pythonhosted.org/packages/15/d4/a417e653c9d19f5ac31bbf3f822c709254bfe7b0e5a02f60fcbe80878467/computer_use_api-0.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "544e071b1e8d30b880a07c6e6bd3124d41adb5c39315e950efecee09cd0e0ddb",
"md5": "403511134c9638dd46fd70864f489f6a",
"sha256": "0bf66d664310f5611fe627124f3e269803fe3e964aaa3fccbe2cb3b3acacfc96"
},
"downloads": -1,
"filename": "computer_use_api-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "403511134c9638dd46fd70864f489f6a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23985,
"upload_time": "2025-07-22T03:05:45",
"upload_time_iso_8601": "2025-07-22T03:05:45.219486Z",
"url": "https://files.pythonhosted.org/packages/54/4e/071b1e8d30b880a07c6e6bd3124d41adb5c39315e950efecee09cd0e0ddb/computer_use_api-0.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-22 03:05:45",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "computer-use-api"
}