rappel 0.4.1__py3-none-win_amd64.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 rappel might be problematic. Click here for more details.
- proto/ast_pb2.py +117 -0
- proto/ast_pb2.pyi +1609 -0
- proto/ast_pb2_grpc.py +24 -0
- proto/ast_pb2_grpc.pyi +22 -0
- proto/messages_pb2.py +106 -0
- proto/messages_pb2.pyi +1170 -0
- proto/messages_pb2_grpc.py +406 -0
- proto/messages_pb2_grpc.pyi +380 -0
- rappel/__init__.py +56 -0
- rappel/actions.py +81 -0
- rappel/bin/boot-rappel-singleton.exe +0 -0
- rappel/bin/rappel-bridge.exe +0 -0
- rappel/bin/start-workers.exe +0 -0
- rappel/bridge.py +228 -0
- rappel/dependencies.py +135 -0
- rappel/exceptions.py +11 -0
- rappel/formatter.py +110 -0
- rappel/ir_builder.py +3146 -0
- rappel/logger.py +39 -0
- rappel/registry.py +75 -0
- rappel/schedule.py +294 -0
- rappel/serialization.py +205 -0
- rappel/worker.py +191 -0
- rappel/workflow.py +236 -0
- rappel/workflow_runtime.py +137 -0
- rappel-0.4.1.data/scripts/boot-rappel-singleton.exe +0 -0
- rappel-0.4.1.data/scripts/rappel-bridge.exe +0 -0
- rappel-0.4.1.data/scripts/start-workers.exe +0 -0
- rappel-0.4.1.dist-info/METADATA +292 -0
- rappel-0.4.1.dist-info/RECORD +32 -0
- rappel-0.4.1.dist-info/WHEEL +4 -0
- rappel-0.4.1.dist-info/entry_points.txt +2 -0
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rappel
|
|
3
|
+
Version: 0.4.1
|
|
4
|
+
Summary: Distributed & durable background events in Python
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
Requires-Dist: googleapis-common-protos>=1.72.0
|
|
7
|
+
Requires-Dist: grpcio<2,>=1.66
|
|
8
|
+
Requires-Dist: protobuf<6,>=5.29
|
|
9
|
+
Requires-Dist: pydantic<3,>=2
|
|
10
|
+
Provides-Extra: dev
|
|
11
|
+
Requires-Dist: pytest>=8; extra == 'dev'
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# rappel
|
|
15
|
+
|
|
16
|
+

|
|
17
|
+
|
|
18
|
+
rappel is a library to let you build durable background tasks that withstand server restarts, task crashes, and long-running jobs. It's built for Python and Postgres without any additional deploy time requirements.
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
Let's say you need to send welcome emails to a batch of users, but only the active ones. You want to fetch them all, filter out inactive accounts, then fan out emails in parallel. This is how you write that workflow in rappel:
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
import asyncio
|
|
26
|
+
from rappel import Workflow, action, workflow
|
|
27
|
+
|
|
28
|
+
@workflow
|
|
29
|
+
class WelcomeEmailWorkflow(Workflow):
|
|
30
|
+
async def run(self, user_ids: list[str]) -> list[EmailResult]:
|
|
31
|
+
users = await fetch_users(user_ids)
|
|
32
|
+
active_users = [user for user in users if user.active]
|
|
33
|
+
|
|
34
|
+
results = await asyncio.gather(*[
|
|
35
|
+
send_email(to=user.email, subject="Welcome")
|
|
36
|
+
for user in active_users
|
|
37
|
+
])
|
|
38
|
+
|
|
39
|
+
return results
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
And here's how you define the actions distributed to your worker cluster:
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
@action
|
|
46
|
+
async def fetch_users(
|
|
47
|
+
user_ids: list[str],
|
|
48
|
+
db: Annotated[Database, Depend(get_db)],
|
|
49
|
+
) -> list[User]:
|
|
50
|
+
return await db.get_many(User, user_ids)
|
|
51
|
+
|
|
52
|
+
@action
|
|
53
|
+
async def send_email(
|
|
54
|
+
to: str,
|
|
55
|
+
subject: str,
|
|
56
|
+
emailer: Annotated[EmailClient, Depend(get_email_client)],
|
|
57
|
+
) -> EmailResult:
|
|
58
|
+
return await emailer.send(to=to, subject=subject)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
To kick off a background job and wait for completion:
|
|
62
|
+
|
|
63
|
+
```python
|
|
64
|
+
async def welcome_users(user_ids: list[str]):
|
|
65
|
+
workflow = WelcomeEmailWorkflow()
|
|
66
|
+
await workflow.run(user_ids)
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
When you call `await workflow.run()`, we parse the AST of your `run()` method and compile it into the Rappel Runtime Language. The `for` loop becomes a filter node, the `asyncio.gather` becomes a parallel fan-out. None of this executes inline in your webserver, instead it's queued to Postgres and orchestrated by the Rust runtime across your worker cluster.
|
|
70
|
+
|
|
71
|
+
**Actions** are the distributed work: network calls, database queries, anything that can fail and should be retried independently.
|
|
72
|
+
|
|
73
|
+
**Workflows** are the control flow: loops, conditionals, parallel branches. They orchestrate actions but don't do heavy lifting themselves.
|
|
74
|
+
|
|
75
|
+
### Complex Workflows
|
|
76
|
+
|
|
77
|
+
Workflows can get much more complex than the example above:
|
|
78
|
+
|
|
79
|
+
1. Customizable retry policy
|
|
80
|
+
|
|
81
|
+
By default your Python code will execute like native logic would: any exceptions will throw and immediately fail. Actions are set to timeout after ~5min to keep the queues from backing up - although we will continuously retry timed out actions in case they were caused by a failed node in your cluster. If you want to control this logic to be more robust, you can set retry policies and backoff intervals so you can attempt the action multiple times until it succeeds.
|
|
82
|
+
|
|
83
|
+
```python
|
|
84
|
+
from rappel import RetryPolicy, BackoffPolicy
|
|
85
|
+
from datetime import timedelta
|
|
86
|
+
|
|
87
|
+
async def run(self):
|
|
88
|
+
await self.run_action(
|
|
89
|
+
inconsistent_action(0.5),
|
|
90
|
+
# control handling of failures
|
|
91
|
+
retry=RetryPolicy(attempts=50),
|
|
92
|
+
backoff=BackoffPolicy(base_delay=5),
|
|
93
|
+
timeout=timedelta(minutes=10)
|
|
94
|
+
)
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
1. Branching control flows
|
|
98
|
+
|
|
99
|
+
Use if statements, for loops, or any other Python primitives within the control logic. We will automatically detect these branches and compile them into a DAG node that gets executed just like your other actions.
|
|
100
|
+
|
|
101
|
+
```python
|
|
102
|
+
async def run(self, user_id: str) -> Summary:
|
|
103
|
+
# loop + non-action helper call
|
|
104
|
+
top_spenders: list[float] = []
|
|
105
|
+
for record in summary.transactions.records:
|
|
106
|
+
if record.is_high_value:
|
|
107
|
+
top_spenders.append(record.amount)
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
1. asyncio primitives
|
|
111
|
+
|
|
112
|
+
Use asyncio.gather to parallelize tasks. Use asyncio.sleep to sleep for a longer period of time.
|
|
113
|
+
|
|
114
|
+
```python
|
|
115
|
+
import asyncio
|
|
116
|
+
|
|
117
|
+
async def run(self, user_id: str) -> Summary:
|
|
118
|
+
# parallelize independent actions with gather
|
|
119
|
+
profile, settings, history = await asyncio.gather(
|
|
120
|
+
fetch_profile(user_id=user_id),
|
|
121
|
+
fetch_settings(user_id=user_id),
|
|
122
|
+
fetch_purchase_history(user_id=user_id)
|
|
123
|
+
)
|
|
124
|
+
|
|
125
|
+
# wait before sending email
|
|
126
|
+
await asyncio.sleep(24*60*60)
|
|
127
|
+
recommendations = await email_ping(history)
|
|
128
|
+
|
|
129
|
+
return Summary(profile=profile, settings=settings, recommendations=recommendations)
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
### Error handling
|
|
133
|
+
|
|
134
|
+
To build truly robust background tasks, you need to consider how things can go wrong. Actions can 'fail' in a couple ways. This is supported by our `.run_action` syntax that allows users to provide additional parameters to modify the execution bounds on each action.
|
|
135
|
+
|
|
136
|
+
1. Action explicitly throws an error and we want to retry it. Caused by intermittent database connectivity / overloaded webservers / or simply buggy code will throw an error. This comes from a standard python `raise Exception()`
|
|
137
|
+
1. Actions raise an error that is a really a RappelTimeout. This indicates that we dequeued the task but weren't able to complete it in the time allocated. This could be because we dequeued the task, started work on it, then the server crashed. Or it could still be running in the background but simply took too much time. Either way we will raise a synthetic error that is representative of this execution.
|
|
138
|
+
|
|
139
|
+
By default we will only try explicit actions one time if there is an explicit exception raised. We will try them infinite times in the case of a timeout since this is usually caused by cross device coordination issues.
|
|
140
|
+
|
|
141
|
+
## Project Status
|
|
142
|
+
|
|
143
|
+
_NOTE: Right now you shouldn't use rappel in any production applications. The spec is changing too quickly and we don't guarantee backwards compatibility before 1.0.0. But we would love if you try it out in your side project and see how you find it._
|
|
144
|
+
|
|
145
|
+
Rappel is in an early alpha. Particular areas of focus include:
|
|
146
|
+
|
|
147
|
+
1. Finalizing the Rappel Runtime Language
|
|
148
|
+
1. Extending AST parsing logic to handle most core control flows
|
|
149
|
+
1. Performance tuning
|
|
150
|
+
1. Unit and integration tests
|
|
151
|
+
|
|
152
|
+
If you have a particular workflow that you think should be working but isn't yet producing the correct DAG (you can visualize it via CLI by `.visualize()`) please file an issue.
|
|
153
|
+
|
|
154
|
+
## Configuration
|
|
155
|
+
|
|
156
|
+
The main rappel configuration is done through env vars, which is what you'll typically use in production when using a docker deployment pipeline. If we can't find an environment parameter we will fallback to looking for an .env that specifies it within your local filesystem.
|
|
157
|
+
|
|
158
|
+
| Environment Variable | Description | Default | Example |
|
|
159
|
+
|---------------------|-------------|---------|---------|
|
|
160
|
+
| `DATABASE_URL` | PostgreSQL connection string for the rappel server | (required) | `postgresql://user:pass@localhost:5433/rappel` |
|
|
161
|
+
| `RAPPEL_HTTP_ADDR` | HTTP bind address for `rappel-bridge` | `127.0.0.1:24117` | `0.0.0.0:24117` |
|
|
162
|
+
| `RAPPEL_GRPC_ADDR` | gRPC bind address for `rappel-bridge` | HTTP port + 1 | `0.0.0.0:24118` |
|
|
163
|
+
| `RAPPEL_WORKER_COUNT` | Number of Python worker processes | `num_cpus` | `8` |
|
|
164
|
+
| `RAPPEL_CONCURRENT_PER_WORKER` | Max concurrent actions per worker | `10` | `20` |
|
|
165
|
+
| `RAPPEL_USER_MODULE` | Python module preloaded into each worker | none | `my_app.actions` |
|
|
166
|
+
| `RAPPEL_POLL_INTERVAL_MS` | Poll interval for the dispatch loop (ms) | `100` | `50` |
|
|
167
|
+
| `RAPPEL_BATCH_SIZE` | Max actions fetched per poll | `workers * concurrent_per_worker` | `200` |
|
|
168
|
+
| `RAPPEL_WEBAPP_ENABLED` | Enable the web dashboard | `false` | `true` |
|
|
169
|
+
| `RAPPEL_WEBAPP_ADDR` | Web dashboard bind address | `0.0.0.0:24119` | `0.0.0.0:8080` |
|
|
170
|
+
|
|
171
|
+
## Philosophy
|
|
172
|
+
|
|
173
|
+
Background jobs in webapps are so frequently used that they should really be a primitive of your fullstack library: database, backend, frontend, _and_ background jobs. Otherwise you're stuck in a situation where users either have to always make blocking requests to an API or you spin up ephemeral tasks that will be killed during re-deployments or an accidental docker crash.
|
|
174
|
+
|
|
175
|
+
After trying most of the ecosystem in the last 3 years, I believe background jobs should provide a few key features:
|
|
176
|
+
|
|
177
|
+
- Easy to write control flow in normal Python
|
|
178
|
+
- Should be both very simple to test locally and very simple to deploy remotely
|
|
179
|
+
- Reasonable default configurations to scale to a reasonable request volume without performance tuning
|
|
180
|
+
|
|
181
|
+
On the point of control flow, we shouldn't be forced into a DAG definition (decorators, custom syntax). It should be regular control flow just distinguished because the flows are durable and because some portions of the parallelism can be run across machines.
|
|
182
|
+
|
|
183
|
+
Nothing on the market provides this balance - `rappel` aims to try. We don't expect ourselves to reach best in class functionality for load performance. Instead we intend for this to scale _most_ applications well past product market fit.
|
|
184
|
+
|
|
185
|
+
## How It Works
|
|
186
|
+
|
|
187
|
+
Rappel takes a different approach from replay-based workflow engines like Temporal or Vercel Workflow.
|
|
188
|
+
|
|
189
|
+
| Approach | How it works | Constraint on users |
|
|
190
|
+
|----------|-------------|-------------------|
|
|
191
|
+
| **Temporal/Vercel Workflows** | Replay-based. Your workflow code re-executes from the beginning on each step; completed activities return cached results. | Code must be deterministic. No `random()`, no `datetime.now()`, no side effects in workflow logic. |
|
|
192
|
+
| **Rappel** | Compile-once. Parse your Python AST → intermediate representation → DAG. Execute the DAG directly. Your code never re-runs. | Code must use supported patterns. But once parsed, a node is self-aware where it lives in the computation graph. |
|
|
193
|
+
|
|
194
|
+
When you decorate a class with `@workflow`, Rappel parses the `run()` method's AST and compiles it to an intermediate representation (IR). This IR captures your control flow—loops, conditionals, parallel branches—as a static directed graph. The DAG is stored in Postgres and executed by the Rust runtime. Your original Python run definition is never re-executed during workflow recovery.
|
|
195
|
+
|
|
196
|
+
This is convenient in practice because it means that if your workflow compiles, your workflow will run as advertised. There's no need to hack around stdlib functions that are non-deterministic (like time/uuid/etc) because you'll get an error on compilation to switch these into an explicit `@action` where all non-determinism should live.
|
|
197
|
+
|
|
198
|
+
## Other options
|
|
199
|
+
|
|
200
|
+
**When should you use Rappel?**
|
|
201
|
+
|
|
202
|
+
- You're already using Python & Postgres for the core of your stack, either with Mountaineer or FastAPI
|
|
203
|
+
- You have a lot of async heavy logic that needs to be durable and can be retried if it fails (common with 3rd party API calls, db jobs, etc)
|
|
204
|
+
- You want something that works the same locally as when deployed remotely
|
|
205
|
+
- You want background job code to plug and play with your existing unit test & static analysis stack
|
|
206
|
+
- You are focused on getting to product market fit versus scale
|
|
207
|
+
|
|
208
|
+
Performance is a top priority of rappel. That's why it's written with a Rust core, is lightweight on your database connection by isolating them to ~1 pool per machine host, and runs continuous benchmarks on CI. But it's not the _only_ priority. After all there's only so much we can do with Postgres as an ACID backing store. Once you start to tax Postgres' capabilities you're probably at the scale where you should switch to a more complicated architecture.
|
|
209
|
+
|
|
210
|
+
**When shouldn't you?**
|
|
211
|
+
|
|
212
|
+
- You have particularly latency sensitive background jobs, where you need <100ms acknowledgement and handling of each task.
|
|
213
|
+
- You have a huge scale of concurrent background jobs, order of magnitude >10k actions being coordinated concurrently.
|
|
214
|
+
- You have tried some existing task coordinators and need to scale your solution to the next 10x worth of traffic.
|
|
215
|
+
|
|
216
|
+
There is no shortage of robust background queues in Python, including ones like Temporal.io/RabbitMQ that scale to millions of requests a second.
|
|
217
|
+
|
|
218
|
+
Almost all of these require a dedicated task broker that you host alongside your app. This usually isn't a huge deal during POCs but can get complex as you need to performance tune it for production. Cloud hosting of most of these are billed per-event and can get very expensive depending on how you orchestrate your jobs. They also typically force you to migrate your logic to fit the conventions of the framework.
|
|
219
|
+
|
|
220
|
+
Open source solutions like RabbitMQ have been battle tested over decades & large companies like Temporal are able to throw a lot of resources towards optimization. Both of these solutions are great choices - just intended to solve for different scopes. Expect an associated higher amount of setup and management complexity.
|
|
221
|
+
|
|
222
|
+
## Worker Pool
|
|
223
|
+
|
|
224
|
+
`start-workers` is the main invocation point to boot your worker cluster on a new node. It launches the gRPC bridge plus a polling dispatcher that streams
|
|
225
|
+
queued actions from Postgres into the Python workers. You should use this as your docker entrypoint:
|
|
226
|
+
|
|
227
|
+
```bash
|
|
228
|
+
$ cargo run --bin start-workers
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
## Development
|
|
232
|
+
|
|
233
|
+
### Packaging
|
|
234
|
+
|
|
235
|
+
Use the helper script to produce distributable wheels that bundle the Rust executables with the
|
|
236
|
+
Python package:
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
$ uv run scripts/build_wheel.py --out-dir target/wheels
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
The script compiles every Rust binary (release profile), stages the required entrypoints
|
|
243
|
+
(`rappel-bridge`, `boot-rappel-singleton`) inside the Python package, and invokes
|
|
244
|
+
`uv build --wheel` to produce an artifact suitable for publishing to PyPI.
|
|
245
|
+
|
|
246
|
+
### Local Server Runtime
|
|
247
|
+
|
|
248
|
+
The Rust runtime exposes both HTTP and gRPC APIs via the `rappel-bridge` binary:
|
|
249
|
+
|
|
250
|
+
```bash
|
|
251
|
+
$ cargo run --bin rappel-bridge
|
|
252
|
+
```
|
|
253
|
+
|
|
254
|
+
Developers can either launch it directly or rely on the `boot-rappel-singleton` helper which finds (or starts) a single shared instance on
|
|
255
|
+
`127.0.0.1:24117`. The helper prints the active HTTP port to stdout so Python clients can connect without additional
|
|
256
|
+
configuration:
|
|
257
|
+
|
|
258
|
+
```bash
|
|
259
|
+
$ cargo run --bin boot-rappel-singleton
|
|
260
|
+
24117
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
The Python bridge automatically shells out to the helper unless you provide `RAPPEL_SERVER_URL`
|
|
264
|
+
(`RAPPEL_GRPC_ADDR` for direct sockets) overrides. Once the ports are known it opens a gRPC channel to the
|
|
265
|
+
`WorkflowService`.
|
|
266
|
+
|
|
267
|
+
### Benchmarking
|
|
268
|
+
|
|
269
|
+
Stream benchmark output directly into our parser to summarize throughput and latency samples:
|
|
270
|
+
|
|
271
|
+
```bash
|
|
272
|
+
$ cargo run --bin bench -- \
|
|
273
|
+
--messages 100000 \
|
|
274
|
+
--payload 1024 \
|
|
275
|
+
--concurrency 64 \
|
|
276
|
+
--workers 4 \
|
|
277
|
+
--log-interval 15 \
|
|
278
|
+
uv run python/tools/parse_bench_logs.py
|
|
279
|
+
|
|
280
|
+
The `bench` binary seeds raw actions to measure dequeue/execute/ack throughput. Use `bench_instances` for an end-to-end workflow run (queueing and executing full workflow instances via the scheduler) without installing a separate `rappel-worker` binary—the harness shells out to `uv run python -m rappel.worker` automatically:
|
|
281
|
+
|
|
282
|
+
```bash
|
|
283
|
+
$ cargo run --bin bench_instances -- \
|
|
284
|
+
--instances 200 \
|
|
285
|
+
--batch-size 4 \
|
|
286
|
+
--payload-size 1024 \
|
|
287
|
+
--concurrency 64 \
|
|
288
|
+
--workers 4
|
|
289
|
+
```
|
|
290
|
+
```
|
|
291
|
+
|
|
292
|
+
Add `--json` to the parser if you prefer JSON output.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
proto/ast_pb2.py,sha256=SzKthXwCp7WcCtxwkGeXCzXM547FziGGw4reMxITgWY,13426
|
|
2
|
+
proto/ast_pb2.pyi,sha256=T7TdeA17MwGimm6oaIYyR6cftXmF-UdEf39bGFNXTDA,51866
|
|
3
|
+
proto/ast_pb2_grpc.py,sha256=o2pCTeLO0yrFf0G9tvXiW5FbNQcX6dTZW3Dhh2iXp4g,892
|
|
4
|
+
proto/ast_pb2_grpc.pyi,sha256=r1dIOwEi02duT6jiuPHWbC01f5z-dBoXc18gZ54pKZA,488
|
|
5
|
+
proto/messages_pb2.py,sha256=Zcvm0ONz-9xo2-LPMinbHKC1rLJUAtWUfm_y4h7eKEM,12592
|
|
6
|
+
proto/messages_pb2.pyi,sha256=lzv_RubGC8ZNVwh70FQr6DI9MECKHbvmVrL0hcBUDPc,39801
|
|
7
|
+
proto/messages_pb2_grpc.py,sha256=6MhQxDSSTSiW55qZh7nIRtiEsuBp5t9tCbcZxiuWcF4,16252
|
|
8
|
+
proto/messages_pb2_grpc.pyi,sha256=dAauApqvlu5Ij7JncrOIhKgcQZJEeV8FrdoJydMbfRo,12702
|
|
9
|
+
rappel/__init__.py,sha256=2jnekFrCK42PbFxBiXKLa5wzzYcIy7VQ1zFizv1ZUpo,1391
|
|
10
|
+
rappel/actions.py,sha256=wUcmBCLjMb-406T7N5S-uR73p9grKbfomXLNjsQvFpo,2735
|
|
11
|
+
rappel/bridge.py,sha256=t-j6k3rHO84qIoOB_VFCUJ87RHKwDDHejxXkNsfQfi0,8219
|
|
12
|
+
rappel/dependencies.py,sha256=40NiWV9fsn-_G5XivCUz2OMNoYC2H6cdVAQG7ziEhS0,5347
|
|
13
|
+
rappel/exceptions.py,sha256=mLkNf1a44rbRxuFZp9saiSp0Ec3Y4gXPXI7Ozkhdt1U,348
|
|
14
|
+
rappel/formatter.py,sha256=mNLJ24nkl5zN-zXe_ObpZGeC__Pyv-7J-iPde-wLvbM,3223
|
|
15
|
+
rappel/ir_builder.py,sha256=wBLdp0pndpBSmzLXGIVGZJ6p4k4OlNi30xErY2Z7ZDk,128070
|
|
16
|
+
rappel/logger.py,sha256=auFfr0gdVP9J53OiADhJlCSdS9As-1DA14WNtAqgv3Y,1157
|
|
17
|
+
rappel/registry.py,sha256=AZftT8r-Lsb0JgX6vbbnydqegheYXViYsCzF_NoqX40,2302
|
|
18
|
+
rappel/schedule.py,sha256=k_DD2BZBnJCK60VoOLlIJh6QHIIMiEnSOKsUSRved_I,9464
|
|
19
|
+
rappel/serialization.py,sha256=k4uq_Wka5ptVYp0SIjXD5zflbmgxUV05pNmQs-b5i8o,8028
|
|
20
|
+
rappel/worker.py,sha256=0iZkruFbGBXLLZNmENqxGF4f-ot5v9m0HzWNt8pT24s,7027
|
|
21
|
+
rappel/workflow.py,sha256=Jv6SzPhLxS6oNfiKFCbp7GroWK8rGY1pMd8JqoVEPDM,8270
|
|
22
|
+
rappel/workflow_runtime.py,sha256=GBLaAi1MB7rQmTtL7adAJt9rDLoWS9n52aD1YcJA-ZI,4403
|
|
23
|
+
rappel/bin/boot-rappel-singleton.exe,sha256=_qbWkDd4tfd4WkfMW6-m1Z1SxFtGE06UXgZO024TVrU,5104128
|
|
24
|
+
rappel/bin/rappel-bridge.exe,sha256=kOGR0ENIJ_c3qjpz85yFEhaVnBmvTezclXchCk-Z79g,9680896
|
|
25
|
+
rappel/bin/start-workers.exe,sha256=wKdShH7oKt0Gmhkvkhx0xBOR1TvPD-CytRBvyli0cAw,15662592
|
|
26
|
+
rappel-0.4.1.dist-info/METADATA,sha256=xUr4y0umv-V16uvqR9UO3LmaswP-eGo-DTiUjYl5Lbk,15381
|
|
27
|
+
rappel-0.4.1.dist-info/entry_points.txt,sha256=h9D-AufOUWpdE7XjnyZyQCc-kER-ZIKj1Jryc1JNL_I,53
|
|
28
|
+
rappel-0.4.1.dist-info/RECORD,,
|
|
29
|
+
rappel-0.4.1.data/scripts/boot-rappel-singleton.exe,sha256=_qbWkDd4tfd4WkfMW6-m1Z1SxFtGE06UXgZO024TVrU,5104128
|
|
30
|
+
rappel-0.4.1.data/scripts/rappel-bridge.exe,sha256=kOGR0ENIJ_c3qjpz85yFEhaVnBmvTezclXchCk-Z79g,9680896
|
|
31
|
+
rappel-0.4.1.data/scripts/start-workers.exe,sha256=wKdShH7oKt0Gmhkvkhx0xBOR1TvPD-CytRBvyli0cAw,15662592
|
|
32
|
+
rappel-0.4.1.dist-info/WHEEL,sha256=phIoPJnECdbLLKrTiGU1mv92w_v6wBxRMAejLbbrKno,94
|