dora-rs 0.3.2__cp37-abi3-macosx_10_12_x86_64.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 dora-rs might be problematic. Click here for more details.
- dora/__init__.py +32 -0
- dora/dora.abi3.so +0 -0
- dora_rs-0.3.2.dist-info/METADATA +21 -0
- dora_rs-0.3.2.dist-info/RECORD +5 -0
- dora_rs-0.3.2.dist-info/WHEEL +4 -0
dora/__init__.py
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""
|
|
2
|
+
# dora-rs
|
|
3
|
+
|
|
4
|
+
This is the dora python client for interacting with dora dataflow.
|
|
5
|
+
|
|
6
|
+
You can install it via:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
pip install dora-rs
|
|
10
|
+
```
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from enum import Enum
|
|
14
|
+
|
|
15
|
+
from .dora import *
|
|
16
|
+
|
|
17
|
+
__author__ = "Dora-rs Authors"
|
|
18
|
+
__version__ = "0.3.2"
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class DoraStatus(Enum):
|
|
22
|
+
"""Dora status to indicate if operator `on_input` loop
|
|
23
|
+
should be stopped.
|
|
24
|
+
|
|
25
|
+
Args:
|
|
26
|
+
Enum (u8): Status signaling to dora operator to
|
|
27
|
+
stop or continue the operator.
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
CONTINUE = 0
|
|
31
|
+
STOP = 1
|
|
32
|
+
STOP_ALL = 2
|
dora/dora.abi3.so
ADDED
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: dora-rs
|
|
3
|
+
Version: 0.3.2
|
|
4
|
+
Requires-Dist: pyarrow
|
|
5
|
+
Summary: `dora` goal is to be a low latency, composable, and distributed data flow.
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
8
|
+
|
|
9
|
+
This crate corresponds to the Node API for Dora.
|
|
10
|
+
|
|
11
|
+
## Building
|
|
12
|
+
|
|
13
|
+
To build the Python module for development:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
python -m venv .env
|
|
17
|
+
source .env/bin/activate
|
|
18
|
+
pip install maturin
|
|
19
|
+
maturin develop
|
|
20
|
+
```
|
|
21
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
dora_rs-0.3.2.dist-info/METADATA,sha256=rZvEwbtHuErpgAOaE0cNb4TpuMAxHJz27V3jBmqG8m4,449
|
|
2
|
+
dora_rs-0.3.2.dist-info/WHEEL,sha256=KLO-L3iESXnpD4aBmtLZGXEb2gHQL4oZJiU_nxbTYiI,104
|
|
3
|
+
dora/__init__.py,sha256=JSLZlGClmqKVsKPAtCGNw1nYMgyfZjzp7L1LQgA25rA,514
|
|
4
|
+
dora/dora.abi3.so,sha256=-_G4vzPxzy9C3CJaDUgrHYU90ZhMaw1cptqa63IYUfY,19580184
|
|
5
|
+
dora_rs-0.3.2.dist-info/RECORD,,
|