Jul-26-2024, 03:00 PM
Hi,
I've built a script, initially for my own use but I've made it public on github in case anyone else can use it, to go through python scripts and add type hints, docstrings and inline comments. It first runs black on the input file, then uses ast to ingest and understand the structure, calls on anthropic claude to generate the docstrings, type hints and comments, then re-assembles the file, saves it and runs black on it again.
I'm pretty pleased with the results, but one thing is still eluding me. It sometimes, but not all the time, gets function decorators wrong. It might indent the @decorator differently than the function or nested function. It might insert whitespace between the decorator and the function signature. Etc.
I find it useful as is -- I just have to edit the results carefully and fix the docstrings and sometimes indentation levels for functions. Especially nested functions. So it isn't bulletproof like, for example, black seems to be.
I've been beating my head against the wall trying to figure it out, but am just seeing the code crosseyed at this point, and each change I introduce seems to cause more trouble than benefit. If anyone is curious about the tool and would be willing to help, it would be wonderful.
The project is public and MIT open source. It's at https://github.com/rickbunker/BetterPython
Thanks.
I've built a script, initially for my own use but I've made it public on github in case anyone else can use it, to go through python scripts and add type hints, docstrings and inline comments. It first runs black on the input file, then uses ast to ingest and understand the structure, calls on anthropic claude to generate the docstrings, type hints and comments, then re-assembles the file, saves it and runs black on it again.
I'm pretty pleased with the results, but one thing is still eluding me. It sometimes, but not all the time, gets function decorators wrong. It might indent the @decorator differently than the function or nested function. It might insert whitespace between the decorator and the function signature. Etc.
I find it useful as is -- I just have to edit the results carefully and fix the docstrings and sometimes indentation levels for functions. Especially nested functions. So it isn't bulletproof like, for example, black seems to be.
I've been beating my head against the wall trying to figure it out, but am just seeing the code crosseyed at this point, and each change I introduce seems to cause more trouble than benefit. If anyone is curious about the tool and would be willing to help, it would be wonderful.
The project is public and MIT open source. It's at https://github.com/rickbunker/BetterPython
Thanks.