Improved documentation
Opened this issue · 0 comments
chr0mag commented
The current documentation consists of a README and the --help
option generated by argparse
.
Some improvements that could be useful:
- proper use of comments vs docstrings in the code: https://realpython.com/documenting-python-code/
- auto-generating basic documentation - https://docs.readthedocs.io/en/stable/tutorial/
- auto-generation of a basic man page - Sphinx has some manpage support (or https://pypi.org/project/argparse-manpage/ ?)
Doing 2 & 3 requires doing 1...