use-computer 0.0.12__tar.gz → 0.0.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {use_computer-0.0.12 → use_computer-0.0.13}/PKG-INFO +11 -5
- {use_computer-0.0.12 → use_computer-0.0.13}/README.md +10 -4
- {use_computer-0.0.12 → use_computer-0.0.13}/pyproject.toml +1 -1
- {use_computer-0.0.12 → use_computer-0.0.13}/.env.example +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/.gitignore +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/.pre-commit-config.yaml +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/examples/_1_hello_macos.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/examples/_2_hello_ios.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/examples/_3_recording.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/examples/_4_file_transfer.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/examples/_5_keepalive.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/__init__.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/ax_transpile.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/client.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/display.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/errors.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/ios/__init__.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/ios/apps.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/ios/environment.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/ios/input.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/macos/__init__.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/macos/keyboard.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/macos/mouse.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/models.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/parsers.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/py.typed +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/recording.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/retry.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/sandbox.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/screenshot.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/__init__.py +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/templates/pre_command.sh +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/templates/task.toml +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/templates/test_ios.sh +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/templates/test_ios_nograder.sh +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/templates/test_macos.sh +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/templates/test_macos_check.sh +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/templates/test_macos_nograder.sh +0 -0
- {use_computer-0.0.12 → use_computer-0.0.13}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: use-computer
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.13
|
|
4
4
|
Summary: Python SDK for the use.computer macOS and iOS Computer Use API
|
|
5
5
|
Project-URL: Homepage, https://use.computer
|
|
6
6
|
Project-URL: Documentation, https://api.use.computer/docs
|
|
@@ -22,7 +22,7 @@ Description-Content-Type: text/markdown
|
|
|
22
22
|
|
|
23
23
|
# use-computer Python SDK
|
|
24
24
|
|
|
25
|
-
Python client for [use.computer](https://use.computer) — rent dedicated Mac minis with macOS and
|
|
25
|
+
Python client for [use.computer](https://use.computer) — rent dedicated Mac minis with macOS and Apple simulator sandboxes built for computer-use agents.
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
28
|
pip install use-computer
|
|
@@ -38,14 +38,20 @@ with Computer().create() as mac:
|
|
|
38
38
|
png = mac.screenshot.take_full_screen()
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
Full DSL reference (macOS +
|
|
41
|
+
Full DSL reference (macOS + simulator): [docs.use.computer/docs/sdk](https://docs.use.computer/docs/sdk)
|
|
42
|
+
|
|
43
|
+
Simulator sandboxes use `type="ios"` for the SDK/API route, but `device_type`
|
|
44
|
+
and `runtime` can target any installed compatible CoreSimulator pair: iPhone or
|
|
45
|
+
iPad with iOS, Apple Watch with watchOS, Apple TV with tvOS, and Apple Vision
|
|
46
|
+
with visionOS. If omitted, the gateway defaults to iPhone 17 Pro on the latest
|
|
47
|
+
installed iOS runtime.
|
|
42
48
|
|
|
43
49
|
## Examples
|
|
44
50
|
|
|
45
51
|
| File | What it shows |
|
|
46
52
|
| -------------------------------------------------------------- | ------------------------------------------ |
|
|
47
53
|
| [`examples/_1_hello_macos.py`](examples/_1_hello_macos.py) | create → exec → keyboard → screenshot |
|
|
48
|
-
| [`examples/_2_hello_ios.py`](examples/_2_hello_ios.py) | create
|
|
54
|
+
| [`examples/_2_hello_ios.py`](examples/_2_hello_ios.py) | create simulator → open URL → screenshot |
|
|
49
55
|
| [`examples/_3_recording.py`](examples/_3_recording.py) | start / stop / download a screen recording |
|
|
50
56
|
| [`examples/_4_file_transfer.py`](examples/_4_file_transfer.py) | upload bytes, download a file back |
|
|
51
57
|
| [`examples/_5_keepalive.py`](examples/_5_keepalive.py) | heartbeat for sessions idle > 2 min |
|
|
@@ -54,7 +60,7 @@ For agent loops and evals: [use-computer-cookbook](https://github.com/josancamon
|
|
|
54
60
|
|
|
55
61
|
## Skill for AI coding assistants
|
|
56
62
|
|
|
57
|
-
Point your assistant at [`use-computer-cookbook/skills/SKILL.md`](https://github.com/josancamon19/use-computer-cookbook/blob/main/skills/SKILL.md) — short body with per-topic references for macOS,
|
|
63
|
+
Point your assistant at [`use-computer-cookbook/skills/SKILL.md`](https://github.com/josancamon19/use-computer-cookbook/blob/main/skills/SKILL.md) — short body with per-topic references for macOS, Apple simulators, lifecycle, and the Harbor harness.
|
|
58
64
|
|
|
59
65
|
## HTTP API
|
|
60
66
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# use-computer Python SDK
|
|
2
2
|
|
|
3
|
-
Python client for [use.computer](https://use.computer) — rent dedicated Mac minis with macOS and
|
|
3
|
+
Python client for [use.computer](https://use.computer) — rent dedicated Mac minis with macOS and Apple simulator sandboxes built for computer-use agents.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
pip install use-computer
|
|
@@ -16,14 +16,20 @@ with Computer().create() as mac:
|
|
|
16
16
|
png = mac.screenshot.take_full_screen()
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
Full DSL reference (macOS +
|
|
19
|
+
Full DSL reference (macOS + simulator): [docs.use.computer/docs/sdk](https://docs.use.computer/docs/sdk)
|
|
20
|
+
|
|
21
|
+
Simulator sandboxes use `type="ios"` for the SDK/API route, but `device_type`
|
|
22
|
+
and `runtime` can target any installed compatible CoreSimulator pair: iPhone or
|
|
23
|
+
iPad with iOS, Apple Watch with watchOS, Apple TV with tvOS, and Apple Vision
|
|
24
|
+
with visionOS. If omitted, the gateway defaults to iPhone 17 Pro on the latest
|
|
25
|
+
installed iOS runtime.
|
|
20
26
|
|
|
21
27
|
## Examples
|
|
22
28
|
|
|
23
29
|
| File | What it shows |
|
|
24
30
|
| -------------------------------------------------------------- | ------------------------------------------ |
|
|
25
31
|
| [`examples/_1_hello_macos.py`](examples/_1_hello_macos.py) | create → exec → keyboard → screenshot |
|
|
26
|
-
| [`examples/_2_hello_ios.py`](examples/_2_hello_ios.py) | create
|
|
32
|
+
| [`examples/_2_hello_ios.py`](examples/_2_hello_ios.py) | create simulator → open URL → screenshot |
|
|
27
33
|
| [`examples/_3_recording.py`](examples/_3_recording.py) | start / stop / download a screen recording |
|
|
28
34
|
| [`examples/_4_file_transfer.py`](examples/_4_file_transfer.py) | upload bytes, download a file back |
|
|
29
35
|
| [`examples/_5_keepalive.py`](examples/_5_keepalive.py) | heartbeat for sessions idle > 2 min |
|
|
@@ -32,7 +38,7 @@ For agent loops and evals: [use-computer-cookbook](https://github.com/josancamon
|
|
|
32
38
|
|
|
33
39
|
## Skill for AI coding assistants
|
|
34
40
|
|
|
35
|
-
Point your assistant at [`use-computer-cookbook/skills/SKILL.md`](https://github.com/josancamon19/use-computer-cookbook/blob/main/skills/SKILL.md) — short body with per-topic references for macOS,
|
|
41
|
+
Point your assistant at [`use-computer-cookbook/skills/SKILL.md`](https://github.com/josancamon19/use-computer-cookbook/blob/main/skills/SKILL.md) — short body with per-topic references for macOS, Apple simulators, lifecycle, and the Harbor harness.
|
|
36
42
|
|
|
37
43
|
## HTTP API
|
|
38
44
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/templates/test_ios_nograder.sh
RENAMED
|
File without changes
|
|
File without changes
|
{use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/templates/test_macos_check.sh
RENAMED
|
File without changes
|
{use_computer-0.0.12 → use_computer-0.0.13}/use_computer/tasks/templates/test_macos_nograder.sh
RENAMED
|
File without changes
|
|
File without changes
|