-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
47 lines (40 loc) · 1.15 KB
/
__init__.py
File metadata and controls
47 lines (40 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"""
Python Script Runner - Enterprise-Grade Script Execution Engine
A comprehensive Python package for executing scripts with real-time monitoring,
alerting, analytics, and enterprise integrations.
This file provides package-level exports for convenience. The actual implementation
is in the runner.py module.
Quick Start:
>>> from runner import ScriptRunner
>>> runner = ScriptRunner("myscript.py")
>>> result = runner.run_script()
See runner.py for full documentation.
"""
# Re-export from runner module for package-level convenience
try:
from runner import (
ScriptRunner,
HistoryManager,
AlertManager,
CICDIntegration,
AdvancedProfiler,
__version__,
__author__,
__license__,
)
__all__ = [
"ScriptRunner",
"HistoryManager",
"AlertManager",
"CICDIntegration",
"AdvancedProfiler",
"__version__",
"__author__",
"__license__",
]
except ImportError:
# Fallback if imported as a package before installation
__version__ = "7.3.0"
__author__ = "Hayk Jomardyan"
__license__ = "MIT"
__all__ = []