This library is an experimental project porting the original PyMISP project to python async to address I/O bound processing difficulties often encountered when using large MISP instances.
It is an ALPHA release, this code has not been tested, USE AT YOUR OWN RISK!
PyMISP is a Python library to access MISP platforms via their REST API.
PyMISP allows you to fetch events, add or update events/attributes, add or update samples or search for attributes.
This project aims at porting the original PyMISP project to Python async using the aiohttp
library instead of the synchronous requests
library.
It is strongly recommended to use a virtual environment
If you want to know more about virtual environments, python has you covered
Only basic dependencies:
pip3 install pymisp-async
Note: poetry is required; e.g., "pip3 install poetry"
git clone https://github.com/pixmaip/PyMISP-async.git && cd PyMISP-async
git submodule update --init
poetry install
Initialize the PyMISP
object using the asynchronous context manager:
async with PyMISP(url, key) as misp_obj:
events = await misp_obj.events()
The official MISP documentation is available here.
All async
functions present in this library use the same API as the original MISP package.
PyMISP is distributed under an open source license. A simplified 2-BSD license.