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.
- rayel_rpa_executor-0.5.16/PKG-INFO +26 -0
- rayel_rpa_executor-0.5.16/README.md +741 -0
- rayel_rpa_executor-0.5.16/executor/__init__.py +24 -0
- rayel_rpa_executor-0.5.16/executor/config.py +110 -0
- rayel_rpa_executor-0.5.16/executor/env_manager.py +503 -0
- rayel_rpa_executor-0.5.16/executor/exceptions.py +38 -0
- rayel_rpa_executor-0.5.16/executor/executor.py +188 -0
- rayel_rpa_executor-0.5.16/executor/git_manager.py +430 -0
- rayel_rpa_executor-0.5.16/executor/logger.py +217 -0
- rayel_rpa_executor-0.5.16/executor/playwright/__init__.py +48 -0
- rayel_rpa_executor-0.5.16/executor/playwright/base_page.py +1782 -0
- rayel_rpa_executor-0.5.16/executor/playwright/base_service.py +73 -0
- rayel_rpa_executor-0.5.16/executor/playwright/browser_manager.py +849 -0
- rayel_rpa_executor-0.5.16/executor/playwright/login_manager.py +812 -0
- rayel_rpa_executor-0.5.16/executor/response.py +47 -0
- rayel_rpa_executor-0.5.16/executor/script_runner.py +267 -0
- rayel_rpa_executor-0.5.16/rayel_rpa_executor.egg-info/PKG-INFO +26 -0
- rayel_rpa_executor-0.5.16/rayel_rpa_executor.egg-info/SOURCES.txt +50 -0
- rayel_rpa_executor-0.5.16/rayel_rpa_executor.egg-info/dependency_links.txt +1 -0
- rayel_rpa_executor-0.5.16/rayel_rpa_executor.egg-info/requires.txt +14 -0
- rayel_rpa_executor-0.5.16/rayel_rpa_executor.egg-info/top_level.txt +2 -0
- rayel_rpa_executor-0.5.16/setup.cfg +4 -0
- rayel_rpa_executor-0.5.16/setup.py +32 -0
- rayel_rpa_executor-0.5.16/snailjob/__init__.py +30 -0
- rayel_rpa_executor-0.5.16/snailjob/args.py +141 -0
- rayel_rpa_executor-0.5.16/snailjob/builtins/__init__.py +11 -0
- rayel_rpa_executor-0.5.16/snailjob/builtins/_base.py +22 -0
- rayel_rpa_executor-0.5.16/snailjob/builtins/_script_executor.py +131 -0
- rayel_rpa_executor-0.5.16/snailjob/builtins/_util.py +35 -0
- rayel_rpa_executor-0.5.16/snailjob/builtins/cmd_executor.py +30 -0
- rayel_rpa_executor-0.5.16/snailjob/builtins/http_executor.py +110 -0
- rayel_rpa_executor-0.5.16/snailjob/builtins/powershell_executor.py +32 -0
- rayel_rpa_executor-0.5.16/snailjob/builtins/shell_executor.py +29 -0
- rayel_rpa_executor-0.5.16/snailjob/cfg.py +62 -0
- rayel_rpa_executor-0.5.16/snailjob/ctx.py +48 -0
- rayel_rpa_executor-0.5.16/snailjob/deco.py +71 -0
- rayel_rpa_executor-0.5.16/snailjob/err.py +2 -0
- rayel_rpa_executor-0.5.16/snailjob/exec.py +256 -0
- rayel_rpa_executor-0.5.16/snailjob/grpc/__init__.py +7 -0
- rayel_rpa_executor-0.5.16/snailjob/grpc/_rpc.py +40 -0
- rayel_rpa_executor-0.5.16/snailjob/grpc/_server.py +90 -0
- rayel_rpa_executor-0.5.16/snailjob/grpc/snailjob_pb2.py +46 -0
- rayel_rpa_executor-0.5.16/snailjob/grpc/snailjob_pb2_grpc.py +106 -0
- rayel_rpa_executor-0.5.16/snailjob/log.py +193 -0
- rayel_rpa_executor-0.5.16/snailjob/main.py +34 -0
- rayel_rpa_executor-0.5.16/snailjob/rpc.py +47 -0
- rayel_rpa_executor-0.5.16/snailjob/schemas/__init__.py +4 -0
- rayel_rpa_executor-0.5.16/snailjob/schemas/_client.py +132 -0
- rayel_rpa_executor-0.5.16/snailjob/schemas/_common.py +20 -0
- rayel_rpa_executor-0.5.16/snailjob/schemas/_enums.py +44 -0
- rayel_rpa_executor-0.5.16/snailjob/schemas/_server.py +60 -0
- 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
|