grasp-sdk 0.1.8__py3-none-any.whl → 0.2.0a1__py3-none-any.whl

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.

Potentially problematic release.


This version of grasp-sdk might be problematic. Click here for more details.

Files changed (38) hide show
  1. examples/example_async_context.py +122 -0
  2. examples/example_binary_file_support.py +127 -0
  3. examples/example_grasp_usage.py +82 -0
  4. examples/example_readfile_usage.py +136 -0
  5. examples/grasp_terminal.py +110 -0
  6. examples/grasp_usage.py +111 -0
  7. examples/test_async_context.py +64 -0
  8. examples/test_get_replay_screenshots.py +90 -0
  9. examples/test_grasp_classes.py +80 -0
  10. examples/test_python_script.py +160 -0
  11. examples/test_removed_methods.py +80 -0
  12. examples/test_shutdown_deprecation.py +62 -0
  13. examples/test_terminal_updates.py +196 -0
  14. grasp_sdk/__init__.py +131 -239
  15. grasp_sdk/grasp/__init__.py +26 -0
  16. grasp_sdk/grasp/browser.py +69 -0
  17. grasp_sdk/grasp/index.py +122 -0
  18. grasp_sdk/grasp/server.py +250 -0
  19. grasp_sdk/grasp/session.py +108 -0
  20. grasp_sdk/grasp/terminal.py +32 -0
  21. grasp_sdk/grasp/utils.py +90 -0
  22. grasp_sdk/models/__init__.py +1 -1
  23. grasp_sdk/services/__init__.py +8 -1
  24. grasp_sdk/services/browser.py +92 -63
  25. grasp_sdk/services/filesystem.py +94 -0
  26. grasp_sdk/services/sandbox.py +391 -20
  27. grasp_sdk/services/terminal.py +177 -0
  28. grasp_sdk/utils/auth.py +6 -8
  29. {grasp_sdk-0.1.8.dist-info → grasp_sdk-0.2.0a1.dist-info}/METADATA +2 -3
  30. grasp_sdk-0.2.0a1.dist-info/RECORD +36 -0
  31. {grasp_sdk-0.1.8.dist-info → grasp_sdk-0.2.0a1.dist-info}/top_level.txt +1 -0
  32. grasp_sdk/sandbox/bootstrap-chrome-stable.mjs +0 -69
  33. grasp_sdk/sandbox/chrome-stable.mjs +0 -424
  34. grasp_sdk/sandbox/chromium.mjs +0 -395
  35. grasp_sdk/sandbox/http-proxy.mjs +0 -324
  36. grasp_sdk-0.1.8.dist-info/RECORD +0 -18
  37. {grasp_sdk-0.1.8.dist-info → grasp_sdk-0.2.0a1.dist-info}/WHEEL +0 -0
  38. {grasp_sdk-0.1.8.dist-info → grasp_sdk-0.2.0a1.dist-info}/entry_points.txt +0 -0
@@ -1,18 +0,0 @@
1
- grasp_sdk/__init__.py,sha256=etsVcw17O9QHIq7vomg5ofhKZKIeKx_5tEcGM6yQ2Es,8431
2
- grasp_sdk/models/__init__.py,sha256=mUfYvCX2S9Fmir9sTsQVV7LdLIPhq2UXQs5fSTRc0eM,2619
3
- grasp_sdk/sandbox/bootstrap-chrome-stable.mjs,sha256=WMnFHgK8lXmKwFpnDP6Ed8CClnpl_cH6ump8YvdBgdc,1683
4
- grasp_sdk/sandbox/chrome-stable.mjs,sha256=DRECJ9st1xqJHBwW-6STX6DuUcd_u-Ssd3PJji_bTos,12422
5
- grasp_sdk/sandbox/chromium.mjs,sha256=bFMY5qc7npo0iQaWCIJAj0nKY2g6elyWCHOeLFhR28E,11933
6
- grasp_sdk/sandbox/http-proxy.mjs,sha256=AXRotTuwyJ7jzG4QGgGnmItGfNPZnP11-312Te3VMV4,9880
7
- grasp_sdk/services/__init__.py,sha256=HqRD-WRedLwOb2gZPXPFzI-3892VT9IknKSbuDyiss8,327
8
- grasp_sdk/services/browser.py,sha256=5iGeNHT-WmS2a0Y6_kEsZLuXuuOUgLjuG1ta62wen4w,14051
9
- grasp_sdk/services/sandbox.py,sha256=HdR5e30TW2_TPlsE6IBUIeUGnF8yssbsXGEzHrwdK58,21960
10
- grasp_sdk/utils/__init__.py,sha256=IQzRV-iZJXanSlaXBcgXBCcOXTVBCY6ZujxQpDTGW9w,816
11
- grasp_sdk/utils/auth.py,sha256=M_SX3uKTjjfi6fzk384IqPvUtqt98bif22HHMgio1D4,7258
12
- grasp_sdk/utils/config.py,sha256=NhHnUwmYOaaV_DZVep_BXsKoZPNT_-yRsiV04q83IXw,3967
13
- grasp_sdk/utils/logger.py,sha256=k6WDmzL3cPTcQbiiTD4Q6fsDdUO_kyXQHz7nlmtv7G4,7228
14
- grasp_sdk-0.1.8.dist-info/METADATA,sha256=tV8gs_6qiZRITmU4VYcABaxxL0joXDV-FuNfu9Pznv8,10167
15
- grasp_sdk-0.1.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
- grasp_sdk-0.1.8.dist-info/entry_points.txt,sha256=roDjUu4JR6b1tUtRmq018mw167AbfC5zQiOtv3o6IMo,45
17
- grasp_sdk-0.1.8.dist-info/top_level.txt,sha256=C9GL798_aP9Hgjq7UUlaGHLDfUohO2PSGYuGDV0cMx8,10
18
- grasp_sdk-0.1.8.dist-info/RECORD,,