This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import logging.config | |
# ==================== ------ STD LIBRARIES ------- ==================== | |
import pathlib | |
import json | |
# ==================== ------ PREPARATION ------- ==================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("test") | |
class Test(): | |
def __init__(self) : | |
print("initiated") | |
def start(self): | |
print("started") | |
def stop(self): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sources : | |
https://goldilocks.readthedocs.io/en/latest/source/goldilocks.html#module-goldilocks.strategies | |
https://samnicholls.net/2016/06/15/how-to-sphinx-readthedocs/ | |
https://gisellezeno.com/tutorials/sphinx-for-python-documentation.html | |
http://www.sphinx-doc.org/en/master/man/sphinx-apidoc.html | |
https://stackoverflow.com/questions/2701998/sphinx-autodoc-is-not-automatic-enough | |
https://github.com/MISP/PyMISP/blob/master/docs/source/conf.py | |
https://raw.githubusercontent.com/MISP/PyMISP/master/docs/source/index.rst | |
https://raw.githubusercontent.com/MISP/PyMISP/master/docs/source/modules.rst | |
https://stackoverflow.com/questions/13516404/sphinx-error-unknown-directive-type-automodule-or-autoclass/17004855 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# See : https://github.com/docker/docker-py | |
import docker | |
import argparse | |
import pathlib | |
from collections import deque | |
import time | |
import datetime |