rayel-rpa-executor 0.5.16__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 (52) hide show
  1. rayel_rpa_executor-0.5.16/PKG-INFO +26 -0
  2. rayel_rpa_executor-0.5.16/README.md +741 -0
  3. rayel_rpa_executor-0.5.16/executor/__init__.py +24 -0
  4. rayel_rpa_executor-0.5.16/executor/config.py +110 -0
  5. rayel_rpa_executor-0.5.16/executor/env_manager.py +503 -0
  6. rayel_rpa_executor-0.5.16/executor/exceptions.py +38 -0
  7. rayel_rpa_executor-0.5.16/executor/executor.py +188 -0
  8. rayel_rpa_executor-0.5.16/executor/git_manager.py +430 -0
  9. rayel_rpa_executor-0.5.16/executor/logger.py +217 -0
  10. rayel_rpa_executor-0.5.16/executor/playwright/__init__.py +48 -0
  11. rayel_rpa_executor-0.5.16/executor/playwright/base_page.py +1782 -0
  12. rayel_rpa_executor-0.5.16/executor/playwright/base_service.py +73 -0
  13. rayel_rpa_executor-0.5.16/executor/playwright/browser_manager.py +849 -0
  14. rayel_rpa_executor-0.5.16/executor/playwright/login_manager.py +812 -0
  15. rayel_rpa_executor-0.5.16/executor/response.py +47 -0
  16. rayel_rpa_executor-0.5.16/executor/script_runner.py +267 -0
  17. rayel_rpa_executor-0.5.16/rayel_rpa_executor.egg-info/PKG-INFO +26 -0
  18. rayel_rpa_executor-0.5.16/rayel_rpa_executor.egg-info/SOURCES.txt +50 -0
  19. rayel_rpa_executor-0.5.16/rayel_rpa_executor.egg-info/dependency_links.txt +1 -0
  20. rayel_rpa_executor-0.5.16/rayel_rpa_executor.egg-info/requires.txt +14 -0
  21. rayel_rpa_executor-0.5.16/rayel_rpa_executor.egg-info/top_level.txt +2 -0
  22. rayel_rpa_executor-0.5.16/setup.cfg +4 -0
  23. rayel_rpa_executor-0.5.16/setup.py +32 -0
  24. rayel_rpa_executor-0.5.16/snailjob/__init__.py +30 -0
  25. rayel_rpa_executor-0.5.16/snailjob/args.py +141 -0
  26. rayel_rpa_executor-0.5.16/snailjob/builtins/__init__.py +11 -0
  27. rayel_rpa_executor-0.5.16/snailjob/builtins/_base.py +22 -0
  28. rayel_rpa_executor-0.5.16/snailjob/builtins/_script_executor.py +131 -0
  29. rayel_rpa_executor-0.5.16/snailjob/builtins/_util.py +35 -0
  30. rayel_rpa_executor-0.5.16/snailjob/builtins/cmd_executor.py +30 -0
  31. rayel_rpa_executor-0.5.16/snailjob/builtins/http_executor.py +110 -0
  32. rayel_rpa_executor-0.5.16/snailjob/builtins/powershell_executor.py +32 -0
  33. rayel_rpa_executor-0.5.16/snailjob/builtins/shell_executor.py +29 -0
  34. rayel_rpa_executor-0.5.16/snailjob/cfg.py +62 -0
  35. rayel_rpa_executor-0.5.16/snailjob/ctx.py +48 -0
  36. rayel_rpa_executor-0.5.16/snailjob/deco.py +71 -0
  37. rayel_rpa_executor-0.5.16/snailjob/err.py +2 -0
  38. rayel_rpa_executor-0.5.16/snailjob/exec.py +256 -0
  39. rayel_rpa_executor-0.5.16/snailjob/grpc/__init__.py +7 -0
  40. rayel_rpa_executor-0.5.16/snailjob/grpc/_rpc.py +40 -0
  41. rayel_rpa_executor-0.5.16/snailjob/grpc/_server.py +90 -0
  42. rayel_rpa_executor-0.5.16/snailjob/grpc/snailjob_pb2.py +46 -0
  43. rayel_rpa_executor-0.5.16/snailjob/grpc/snailjob_pb2_grpc.py +106 -0
  44. rayel_rpa_executor-0.5.16/snailjob/log.py +193 -0
  45. rayel_rpa_executor-0.5.16/snailjob/main.py +34 -0
  46. rayel_rpa_executor-0.5.16/snailjob/rpc.py +47 -0
  47. rayel_rpa_executor-0.5.16/snailjob/schemas/__init__.py +4 -0
  48. rayel_rpa_executor-0.5.16/snailjob/schemas/_client.py +132 -0
  49. rayel_rpa_executor-0.5.16/snailjob/schemas/_common.py +20 -0
  50. rayel_rpa_executor-0.5.16/snailjob/schemas/_enums.py +44 -0
  51. rayel_rpa_executor-0.5.16/snailjob/schemas/_server.py +60 -0
  52. rayel_rpa_executor-0.5.16/snailjob/utils.py +101 -0
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: rayel-rpa-executor
3
+ Version: 0.5.16
4
+ Summary: Distributed task scheduler and RPA executor with FastAPI and browser pool management
5
+ Classifier: Programming Language :: Python :: 3
6
+ Classifier: Programming Language :: Python :: 3.12
7
+ Classifier: Operating System :: OS Independent
8
+ Requires-Python: >=3.12
9
+ Requires-Dist: pydantic>=2.7.4
10
+ Requires-Dist: python-dotenv>=1.0.1
11
+ Requires-Dist: aiohttp>=3.10.9
12
+ Requires-Dist: protobuf>=5.27.2
13
+ Requires-Dist: grpcio>=1.66.2
14
+ Requires-Dist: GitPython>=3.1.0
15
+ Requires-Dist: playwright>=1.55.0
16
+ Requires-Dist: fastapi>=0.122.0
17
+ Requires-Dist: uvicorn[standard]>=0.38.0
18
+ Requires-Dist: apscheduler>=3.11.1
19
+ Provides-Extra: dev
20
+ Requires-Dist: ruff>=0.3.0; extra == "dev"
21
+ Requires-Dist: grpcio-tools>=1.66.2; extra == "dev"
22
+ Dynamic: classifier
23
+ Dynamic: provides-extra
24
+ Dynamic: requires-dist
25
+ Dynamic: requires-python
26
+ Dynamic: summary