You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/development/collectors.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ them against injected expectations in OpenAEV.
13
13
14
14
Note that while this guide puts an emphasis on the Python language, a collector may be implemented in any language
15
15
because it communicates with the OpenAEV server via its REST API. However, Filigran provides an official implementation
16
-
of a REST client for the OpenAEV API, in python: PyOBAS.
16
+
of a REST client for the OpenAEV API, in python: PyOAEV.
17
17
18
-
In this guide, we will use [PyOBAS](https://pypi.org/project/pyobas/), the official OpenAEV API client for Python. The guide requires a basic understanding
18
+
In this guide, we will use [PyOAEV](https://pypi.org/project/pyoaev/), the official OpenAEV API client for Python. The guide requires a basic understanding
19
19
of the Python language, and a working Python install on the development machine.
20
20
21
21
### High level overview
@@ -25,10 +25,10 @@ expectations from within the OpenAEV system.
25
25
26
26

27
27
28
-
This would translate to this partially-pseudo code, using PyOBAS (some functions omitted for brevity):
28
+
This would translate to this partially-pseudo code, using PyOAEV (some functions omitted for brevity):
29
29
```python
30
-
frompyobas.daemons import CollectorDaemon
31
-
frompyobas.configuration import Configuration
30
+
frompyoaev.daemons import CollectorDaemon
31
+
frompyoaev.configuration import Configuration
32
32
33
33
# this is where the whole of the collector logic needs
34
34
# to be implemented.
@@ -145,4 +145,4 @@ You may find reference implementations in the OpenAEV Collectors repository:
0 commit comments