Skip to content

Commit 907bb7d

Browse files
committed
[all] chore: rename PyOBAS to PyOAEV
1 parent ddb9b4e commit 907bb7d

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/development/collectors.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ them against injected expectations in OpenAEV.
1313

1414
Note that while this guide puts an emphasis on the Python language, a collector may be implemented in any language
1515
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.
1717

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
1919
of the Python language, and a working Python install on the development machine.
2020

2121
### High level overview
@@ -25,10 +25,10 @@ expectations from within the OpenAEV system.
2525

2626
![High level process overview](assets/high-level-collector-overview.png)
2727

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):
2929
```python
30-
from pyobas.daemons import CollectorDaemon
31-
from pyobas.configuration import Configuration
30+
from pyoaev.daemons import CollectorDaemon
31+
from pyoaev.configuration import Configuration
3232

3333
# this is where the whole of the collector logic needs
3434
# to be implemented.
@@ -145,4 +145,4 @@ You may find reference implementations in the OpenAEV Collectors repository:
145145
* [Microsoft Sentinel](https://github.com/OpenAEV-Platform/collectors/tree/main/microsoft-sentinel)
146146

147147
You might find them useful to find inspiration on how to implement a matching logic against your EDR or SIEM
148-
of choice, using PyOBAS.
148+
of choice, using PyOAEV.

docs/development/injectors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ internally to access the parameter values.
2626

2727
!!! note "🐍 Python-based injectors"
2828

29-
For injectors created with the Python language, Filigran maintains the [`pyobas` library](https://pypi.org/project/pyobas/)
29+
For injectors created with the Python language, Filigran maintains the [`pyoaev` library](https://pypi.org/project/pyoaev/)
3030
which provides a wealth of utility classes to compose a functional contract.
3131

3232
Note however that injectors are typically independent processes communicating with OpenAEV via a network transport,

0 commit comments

Comments
 (0)