dora-rs 0.1.3__cp37-abi3-manylinux_2_28_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 +17 -0
- dora/dora.abi3.so +0 -0
- dora.libs/libcrypto-6b2af14b.so.1.1 +0 -0
- dora.libs/libssl-d4a0d08d.so.1.1 +0 -0
- dora_rs-0.1.3.dist-info/METADATA +19 -0
- dora_rs-0.1.3.dist-info/RECORD +7 -0
- dora_rs-0.1.3.dist-info/WHEEL +4 -0
dora/__init__.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
|
|
3
|
+
from .dora import *
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class DoraStatus(Enum):
|
|
7
|
+
"""Dora status to indicate if operator `on_input` loop
|
|
8
|
+
should be stopped.
|
|
9
|
+
|
|
10
|
+
Args:
|
|
11
|
+
Enum (u8): Status signaling to dora operator to
|
|
12
|
+
stop or continue the operator.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
CONTINUE = 0
|
|
16
|
+
STOP = 1
|
|
17
|
+
STOP_ALL = 2
|
dora/dora.abi3.so
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: dora-rs
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
License: Apache-2.0
|
|
5
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
6
|
+
|
|
7
|
+
This crate corresponds to the Node API for Dora.
|
|
8
|
+
|
|
9
|
+
## Building
|
|
10
|
+
|
|
11
|
+
To build the Python module for development:
|
|
12
|
+
|
|
13
|
+
````bash
|
|
14
|
+
python3 -m venv .env
|
|
15
|
+
source .env/bin/activate
|
|
16
|
+
pip install maturin
|
|
17
|
+
maturin develop
|
|
18
|
+
````
|
|
19
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
dora_rs-0.1.3.dist-info/METADATA,sha256=o5i4Uw77e5vCa7Nm4PL5FWZJ5ebYUjmO-6mu7-5lssk,345
|
|
2
|
+
dora_rs-0.1.3.dist-info/WHEEL,sha256=83j-JWkV-M22pftC6m1BC6XvX35XGnvZfNkWtK-BpD4,107
|
|
3
|
+
dora.libs/libcrypto-6b2af14b.so.1.1,sha256=jUAduizOJlqlSVgfbZGI3yD9JIyzJkBZj_zZerxhqjo,3087817
|
|
4
|
+
dora.libs/libssl-d4a0d08d.so.1.1,sha256=TBTcdLQqMs30Rv1hAzXv4SCBHixNJyHoHr694nws__w,646121
|
|
5
|
+
dora/__init__.py,sha256=xcWkPntr1snQg36I1Jiw6ybAJVCfVnKNlRjnKo5jywE,314
|
|
6
|
+
dora/dora.abi3.so,sha256=3iyUpImpG_1VcsogOnUGycHP2wtmvOw7lkCaZf6YIMA,5931577
|
|
7
|
+
dora_rs-0.1.3.dist-info/RECORD,,
|