realtimex-computer-use 1.3.0.dev0__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 (22) hide show
  1. realtimex_computer_use-1.3.0.dev0/.gitignore +45 -0
  2. realtimex_computer_use-1.3.0.dev0/2025-11-10-caveat-the-messages-below-were-generated-by-the-u.txt +2091 -0
  3. realtimex_computer_use-1.3.0.dev0/COORDINATE_SCALING_DESIGN.md +218 -0
  4. realtimex_computer_use-1.3.0.dev0/PKG-INFO +254 -0
  5. realtimex_computer_use-1.3.0.dev0/README.md +235 -0
  6. realtimex_computer_use-1.3.0.dev0/SECURE_CREDENTIAL_TYPING_DESIGN.md +395 -0
  7. realtimex_computer_use-1.3.0.dev0/examples/realtimex_pyautogui_server/__init__.py +3 -0
  8. realtimex_computer_use-1.3.0.dev0/examples/realtimex_pyautogui_server/__main__.py +3 -0
  9. realtimex_computer_use-1.3.0.dev0/examples/realtimex_pyautogui_server/server.py +299 -0
  10. realtimex_computer_use-1.3.0.dev0/fastmcp.json +10 -0
  11. realtimex_computer_use-1.3.0.dev0/prompt.md +56 -0
  12. realtimex_computer_use-1.3.0.dev0/pyproject.toml +40 -0
  13. realtimex_computer_use-1.3.0.dev0/smithery.yaml +13 -0
  14. realtimex_computer_use-1.3.0.dev0/src/realtimex_computer_use/__init__.py +10 -0
  15. realtimex_computer_use-1.3.0.dev0/src/realtimex_computer_use/__main__.py +3 -0
  16. realtimex_computer_use-1.3.0.dev0/src/realtimex_computer_use/server.py +22 -0
  17. realtimex_computer_use-1.3.0.dev0/src/realtimex_computer_use/tools/__init__.py +5 -0
  18. realtimex_computer_use-1.3.0.dev0/src/realtimex_computer_use/tools/browser.py +107 -0
  19. realtimex_computer_use-1.3.0.dev0/src/realtimex_computer_use/tools/credential_typing.py +138 -0
  20. realtimex_computer_use-1.3.0.dev0/src/realtimex_computer_use/tools/credentials.py +45 -0
  21. realtimex_computer_use-1.3.0.dev0/test.py +14 -0
  22. realtimex_computer_use-1.3.0.dev0/uv.lock +2165 -0
@@ -0,0 +1,45 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual environments
24
+ venv/
25
+ ENV/
26
+ env/
27
+
28
+ # uv
29
+ .uv/
30
+
31
+ # IDE
32
+ .vscode/
33
+ .idea/
34
+ *.swp
35
+ *.swo
36
+ *~
37
+
38
+ # OS
39
+ .DS_Store
40
+ Thumbs.db
41
+
42
+ # Testing
43
+ .pytest_cache/
44
+ .coverage
45
+ htmlcov/