deepnoodle-mobius 0.0.1__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.
- deepnoodle_mobius-0.0.1/.gitignore +85 -0
- deepnoodle_mobius-0.0.1/PKG-INFO +8 -0
- deepnoodle_mobius-0.0.1/deepnoodle/mobius/__init__.py +15 -0
- deepnoodle_mobius-0.0.1/deepnoodle/mobius/_api/__init__.py +2 -0
- deepnoodle_mobius-0.0.1/deepnoodle/mobius/_api/models.py +2086 -0
- deepnoodle_mobius-0.0.1/deepnoodle/mobius/action.py +22 -0
- deepnoodle_mobius-0.0.1/deepnoodle/mobius/client.py +120 -0
- deepnoodle_mobius-0.0.1/deepnoodle/mobius/worker.py +209 -0
- deepnoodle_mobius-0.0.1/pyproject.toml +26 -0
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# --- Go ---------------------------------------------------------------------
|
|
2
|
+
# Compiled binaries and shared objects
|
|
3
|
+
*.exe
|
|
4
|
+
*.exe~
|
|
5
|
+
*.dll
|
|
6
|
+
*.so
|
|
7
|
+
*.dylib
|
|
8
|
+
cmd/mobius/mobius
|
|
9
|
+
cmd/mobius-cligen/mobius-cligen
|
|
10
|
+
|
|
11
|
+
# Test binary built with `go test -c`
|
|
12
|
+
*.test
|
|
13
|
+
|
|
14
|
+
# Code coverage profiles and other test artifacts
|
|
15
|
+
*.out
|
|
16
|
+
coverage.*
|
|
17
|
+
*.coverprofile
|
|
18
|
+
profile.cov
|
|
19
|
+
|
|
20
|
+
# Go workspace file
|
|
21
|
+
go.work
|
|
22
|
+
go.work.sum
|
|
23
|
+
|
|
24
|
+
# --- Python -----------------------------------------------------------------
|
|
25
|
+
__pycache__/
|
|
26
|
+
**/__pycache__/
|
|
27
|
+
*.pyc
|
|
28
|
+
*.pyo
|
|
29
|
+
*.pyd
|
|
30
|
+
*.py[cod]
|
|
31
|
+
*$py.class
|
|
32
|
+
*.egg
|
|
33
|
+
*.egg-info/
|
|
34
|
+
.eggs/
|
|
35
|
+
build/
|
|
36
|
+
dist/
|
|
37
|
+
pip-log.txt
|
|
38
|
+
pip-delete-this-directory.txt
|
|
39
|
+
|
|
40
|
+
# Virtual environments
|
|
41
|
+
.venv/
|
|
42
|
+
venv/
|
|
43
|
+
env/
|
|
44
|
+
ENV/
|
|
45
|
+
|
|
46
|
+
# Tooling caches
|
|
47
|
+
.pytest_cache/
|
|
48
|
+
.ruff_cache/
|
|
49
|
+
.mypy_cache/
|
|
50
|
+
.pytype/
|
|
51
|
+
.pyre/
|
|
52
|
+
.tox/
|
|
53
|
+
.nox/
|
|
54
|
+
.coverage
|
|
55
|
+
.coverage.*
|
|
56
|
+
htmlcov/
|
|
57
|
+
coverage.xml
|
|
58
|
+
|
|
59
|
+
# uv lock file — this is a library, not an application
|
|
60
|
+
python/uv.lock
|
|
61
|
+
|
|
62
|
+
# --- TypeScript / Node ------------------------------------------------------
|
|
63
|
+
node_modules/
|
|
64
|
+
dist/
|
|
65
|
+
build/
|
|
66
|
+
build-test/
|
|
67
|
+
*.tsbuildinfo
|
|
68
|
+
|
|
69
|
+
# Log files
|
|
70
|
+
npm-debug.log*
|
|
71
|
+
yarn-debug.log*
|
|
72
|
+
yarn-error.log*
|
|
73
|
+
pnpm-debug.log*
|
|
74
|
+
|
|
75
|
+
# --- Environments / secrets -------------------------------------------------
|
|
76
|
+
.env
|
|
77
|
+
.env.*
|
|
78
|
+
!.env.example
|
|
79
|
+
|
|
80
|
+
# --- Editor / IDE -----------------------------------------------------------
|
|
81
|
+
.vscode/
|
|
82
|
+
.idea/
|
|
83
|
+
*.swp
|
|
84
|
+
*.swo
|
|
85
|
+
.DS_Store
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""Mobius SDK for Python — build workflow workers that poll Mobius for runs."""
|
|
2
|
+
|
|
3
|
+
from .action import action
|
|
4
|
+
from .client import DEFAULT_BASE_URL, Client, ClientOptions, LeaseLostError
|
|
5
|
+
from .worker import Worker, WorkerConfig
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
"Client",
|
|
9
|
+
"ClientOptions",
|
|
10
|
+
"DEFAULT_BASE_URL",
|
|
11
|
+
"LeaseLostError",
|
|
12
|
+
"Worker",
|
|
13
|
+
"WorkerConfig",
|
|
14
|
+
"action",
|
|
15
|
+
]
|