use-computer 0.0.13__tar.gz → 0.0.14__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.13 → use_computer-0.0.14}/PKG-INFO +4 -4
- {use_computer-0.0.13 → use_computer-0.0.14}/README.md +3 -3
- {use_computer-0.0.13 → use_computer-0.0.14}/pyproject.toml +1 -1
- {use_computer-0.0.13 → use_computer-0.0.14}/.env.example +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/.gitignore +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/.pre-commit-config.yaml +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/examples/_1_hello_macos.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/examples/_2_hello_ios.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/examples/_3_recording.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/examples/_4_file_transfer.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/examples/_5_keepalive.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/__init__.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/ax_transpile.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/client.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/display.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/errors.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/ios/__init__.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/ios/apps.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/ios/environment.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/ios/input.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/macos/__init__.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/macos/keyboard.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/macos/mouse.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/models.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/parsers.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/py.typed +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/recording.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/retry.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/sandbox.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/screenshot.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/__init__.py +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/pre_command.sh +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/task.toml +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_ios.sh +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_ios_nograder.sh +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_macos.sh +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_macos_check.sh +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_macos_nograder.sh +0 -0
- {use_computer-0.0.13 → use_computer-0.0.14}/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.14
|
|
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
|
|
@@ -42,9 +42,9 @@ Full DSL reference (macOS + simulator): [docs.use.computer/docs/sdk](https://doc
|
|
|
42
42
|
|
|
43
43
|
Simulator sandboxes use `type="ios"` for the SDK/API route, but `device_type`
|
|
44
44
|
and `runtime` can target any installed compatible CoreSimulator pair: iPhone or
|
|
45
|
-
iPad with iOS, Apple Watch with watchOS, Apple TV with tvOS
|
|
46
|
-
|
|
47
|
-
installed iOS runtime.
|
|
45
|
+
iPad with iOS, Apple Watch with watchOS, or Apple TV with tvOS. Vision is
|
|
46
|
+
unavailable for now. If omitted, the gateway defaults to iPhone 17 Pro on the
|
|
47
|
+
latest installed iOS runtime.
|
|
48
48
|
|
|
49
49
|
## Examples
|
|
50
50
|
|
|
@@ -20,9 +20,9 @@ Full DSL reference (macOS + simulator): [docs.use.computer/docs/sdk](https://doc
|
|
|
20
20
|
|
|
21
21
|
Simulator sandboxes use `type="ios"` for the SDK/API route, but `device_type`
|
|
22
22
|
and `runtime` can target any installed compatible CoreSimulator pair: iPhone or
|
|
23
|
-
iPad with iOS, Apple Watch with watchOS, Apple TV with tvOS
|
|
24
|
-
|
|
25
|
-
installed iOS runtime.
|
|
23
|
+
iPad with iOS, Apple Watch with watchOS, or Apple TV with tvOS. Vision is
|
|
24
|
+
unavailable for now. If omitted, the gateway defaults to iPhone 17 Pro on the
|
|
25
|
+
latest installed iOS runtime.
|
|
26
26
|
|
|
27
27
|
## Examples
|
|
28
28
|
|
|
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.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_ios_nograder.sh
RENAMED
|
File without changes
|
|
File without changes
|
{use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_macos_check.sh
RENAMED
|
File without changes
|
{use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_macos_nograder.sh
RENAMED
|
File without changes
|
|
File without changes
|