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.
Files changed (39) hide show
  1. {use_computer-0.0.13 → use_computer-0.0.14}/PKG-INFO +4 -4
  2. {use_computer-0.0.13 → use_computer-0.0.14}/README.md +3 -3
  3. {use_computer-0.0.13 → use_computer-0.0.14}/pyproject.toml +1 -1
  4. {use_computer-0.0.13 → use_computer-0.0.14}/.env.example +0 -0
  5. {use_computer-0.0.13 → use_computer-0.0.14}/.gitignore +0 -0
  6. {use_computer-0.0.13 → use_computer-0.0.14}/.pre-commit-config.yaml +0 -0
  7. {use_computer-0.0.13 → use_computer-0.0.14}/examples/_1_hello_macos.py +0 -0
  8. {use_computer-0.0.13 → use_computer-0.0.14}/examples/_2_hello_ios.py +0 -0
  9. {use_computer-0.0.13 → use_computer-0.0.14}/examples/_3_recording.py +0 -0
  10. {use_computer-0.0.13 → use_computer-0.0.14}/examples/_4_file_transfer.py +0 -0
  11. {use_computer-0.0.13 → use_computer-0.0.14}/examples/_5_keepalive.py +0 -0
  12. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/__init__.py +0 -0
  13. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/ax_transpile.py +0 -0
  14. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/client.py +0 -0
  15. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/display.py +0 -0
  16. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/errors.py +0 -0
  17. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/ios/__init__.py +0 -0
  18. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/ios/apps.py +0 -0
  19. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/ios/environment.py +0 -0
  20. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/ios/input.py +0 -0
  21. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/macos/__init__.py +0 -0
  22. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/macos/keyboard.py +0 -0
  23. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/macos/mouse.py +0 -0
  24. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/models.py +0 -0
  25. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/parsers.py +0 -0
  26. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/py.typed +0 -0
  27. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/recording.py +0 -0
  28. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/retry.py +0 -0
  29. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/sandbox.py +0 -0
  30. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/screenshot.py +0 -0
  31. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/__init__.py +0 -0
  32. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/pre_command.sh +0 -0
  33. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/task.toml +0 -0
  34. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_ios.sh +0 -0
  35. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_ios_nograder.sh +0 -0
  36. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_macos.sh +0 -0
  37. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_macos_check.sh +0 -0
  38. {use_computer-0.0.13 → use_computer-0.0.14}/use_computer/tasks/templates/test_macos_nograder.sh +0 -0
  39. {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.13
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, and Apple Vision
46
- with visionOS. If omitted, the gateway defaults to iPhone 17 Pro on the latest
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, and Apple Vision
24
- with visionOS. If omitted, the gateway defaults to iPhone 17 Pro on the latest
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
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "use-computer"
7
- version = "0.0.13"
7
+ version = "0.0.14"
8
8
  description = "Python SDK for the use.computer macOS and iOS Computer Use API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes