AgentKit Computer-Use API
Project description
msq_test-api
AgentKit Computer-Use API
This Python package is automatically generated by the 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
pip install computer-use-api
(you may need to run pip with root permission: sudo pip install computer-use-api)
Then import the package:
import msq_test_api
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import msq_test_api
Getting Started
Please follow the installation procedure and then run the following:
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 | POST /2020-04-01/ClickMouse | 鼠标在指定位置点击 |
| ComputerUseApi | drag_mouse | POST /2020-04-01/DragMouse | 移动鼠标 |
| ComputerUseApi | get_cursor_position | GET /2020-04-01/GetCursorPosition | 获取鼠标坐标 |
| ComputerUseApi | get_screen_size | GET /2020-04-01/GetScreenSize | 获取屏幕长宽 |
| ComputerUseApi | move_mouse | POST /2020-04-01/MoveMouse | 鼠标移动到指定位置 |
| ComputerUseApi | press_key | POST /2020-04-01/PressKey | 按键 |
| ComputerUseApi | scroll | POST /2020-04-01/Scroll | 滚动 |
| ComputerUseApi | take_screenshot | GET /2020-04-01/TakeScreenshot | 截屏 |
| ComputerUseApi | type_text | POST /2020-04-01/TypeText | 发送文本 |
Documentation For Models
- ClickMouseRequest
- ClickMouseResponse
- ComputeOperateResult
- DragMouseRequest
- DragMouseResponse
- GetCursorPositionResponse
- GetCursorPositionResult
- GetScreenSizeResponse
- GetScreenSizeResult
- InternalError
- MoveMouseRequest
- MoveMouseResponse
- PressKeyRequest
- PressKeyResponse
- ResponseMetadata
- ScrollRequest
- ScrollResponse
- TakeScreenshotResponse
- TakeScreenshotResult
- TypeTextRequest
- TypeTextResponse
- UnauthorizedError
Documentation For Authorization
ComputeUseKey
- Type: API key
- API key parameter name: X-API-Key
- Location: HTTP header
Author
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file msq_test_api-0.0.4.tar.gz.
File metadata
- Download URL: msq_test_api-0.0.4.tar.gz
- Upload date:
- Size: 23.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a68c1e3ac7b9f7cc3c3125817be79c06555c713c5c86fa8b8e8fc078fc5af07
|
|
| MD5 |
ab8846ba15fc3f5b816363532038decb
|
|
| BLAKE2b-256 |
49c43842bcb6b1d9d71055b1059978d490a1fa5d7721987d5ab012255a5bfdae
|
File details
Details for the file msq_test_api-0.0.4-py3-none-any.whl.
File metadata
- Download URL: msq_test_api-0.0.4-py3-none-any.whl
- Upload date:
- Size: 47.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8698b01ac62f5bead036d1a8491b409e9c9bcafca83d17d13c098f5d66b5107
|
|
| MD5 |
e94499920e60faf36d245a3ebf5a2dde
|
|
| BLAKE2b-256 |
877ec4e4f3ef59be20cca5938ebe0f1fb1a9fa57c05ad2c320a6c55da2f44956
|