Niko Wenselowski
Niko Wenselowski
Don't have an idea yet but can take a look. To reproduce: restructuredText with _code_ directive like shown [in the handbook](https://getnikola.com/handbook.html#code)?
There is new REST based API for CheckMK: https://docs.checkmk.com/master/de/rest_api.html It uses OpenAPI and creating a client should be very straightforward.
General idea: use `sphinx-autodoc` for creating package documentation and only create handwritten documents to explain things like workflows, concepts etc. For this to work having the code itself documented is...
Change proposal: If you make use of Pythons [Truth Value Testing](https://docs.python.org/3/library/stdtypes.html#truth-value-testing) the critical code can be simplified: if len(crit_services) > 0: Can be written as: if crit_services: The length check...