Собственно, вопрос:
Я пишу сейчас небольшой проект (на Python'e), стараюсь все функции и методы документировать подобным образом:
"""
Generates random secret. Inputs and return are similar to share()'s, except "secret", which is not
in use here.
@param passphrase: password, if you wish to keep your secret totally confidential
@param recipient: recipient's e-mail, if you wish to send him an invitation to see your secret
@param ttl: TTL of your secret, in seconds. Set to one day by default
@type passphrase: string
@type recipient: string
@type ttl: int
@return res: dict
"""
Чем лучше всего воспользоваться для создания хотябы каркаса документации?