0 purchases
pymispasync 2.4.182a3
Advisory
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 - Python Library to access MISP
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.
Install from pip
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
Install the latest version from repo from development purposes
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
Usage
Initialize the PyMISP object using the asynchronous context manager:
async with PyMISP(url, key) as misp_obj:
events = await misp_obj.events()
Documentation
The official MISP documentation is available here.
All async functions present in this library use the same API as the original MISP package.
License
PyMISP is distributed under an open source license. A simplified 2-BSD license.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.