Python Forum
help with a script that adds docstrings and type hints to other scripts
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
help with a script that adds docstrings and type hints to other scripts
#1
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.
Reply
#2
(Jul-26-2024, 03:00 PM)rickbunk Wrote: 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/basketball stars

Thanks.
Hi, Rick.

This looks like a wonderful tool, and I'm glad to see you share it with the community! Automating the addition of type hints, docstrings, and inline comments saves a lot of effort, and I'm confident that many users will find it useful.

I understand the frustration of getting decorators correct; they can be tricky with indentation and spacing. Have you considered utilizing a more structured technique to parse and reassemble the functions with decorators? There may be some quirks in how decorators are handled in the AST that can assist you improve that area of your script.

I'd love to look at your GitHub repository and see if I can help. Keep up the great work—this is an excellent contribution to open source!
buran write Feb-22-2025, 05:13 AM:
Link removed
Reply
#3
When you parse the code using ast, you can use ast.NodeVisitor or ast.NodeTransformer to traverse and modify the AST (Abstract Syntax Tree) in a structured way. This can help ensure that decorators and their associated functions are handled consistently.

For example, when visiting a FunctionDef node, you can check for decorators and ensure they are properly aligned with the function definition.

import ast

class DecoratorFixer(ast.NodeTransformer):
    def visit_FunctionDef(self, node):
        # Ensure decorators are properly aligned
        for decorator in node.decorator_list:
            # Fix indentation or spacing issues here
            pass
        return self.generic_visit(node)
When reassembling the code from the AST, ensure that you preserve the original whitespace and formatting as much as possible. This can be tricky, but libraries like astor (now replaced by ast.unparse in Python 3.9+) can help.

If you're using ast.unparse, so be aware that it might not always preserve formatting perfectly. You might need to manually adjust the output to ensure decorators are correctly aligned.

Since you're already using black, you can rely on it to handle the final formatting. However, black might not always fix decorator-related issues if the AST is not correctly structured.

However, if ast is not giving you enough control over formatting, consider using libcst. It provides more granular control over code formatting and might help you handle decorators and indentation more precisely.

import libcst as cst

class DecoratorFixer(cst.CSTTransformer):
    def leave_FunctionDef(self, original_node, updated_node):
        # Fix decorator formatting here
        return updated_node
Our Scratch project: scratch geometry dash
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  word guessing game, hints STUdevil 1 1,475 Oct-12-2024, 01:53 AM
Last Post: menator01
  word game, how to give hints STUdevil 5 1,468 Oct-07-2024, 06:20 PM
Last Post: STUdevil
  2d Array adds last element to entire list waiteup 2 2,919 Nov-19-2020, 08:25 PM
Last Post: bowlofred
  SQLAlchemy with type hints gontajones 1 8,369 Jun-17-2020, 06:52 PM
Last Post: gontajones
  My code which adds fibonacci numbers to a list adds too many terms. STBK 7 3,736 Jun-10-2020, 03:41 PM
Last Post: DPaul
  Type hints and style MaxPowers 1 2,323 Feb-19-2020, 06:56 PM
Last Post: micseydel
  Type hinting - return type based on parameter micseydel 2 3,106 Jan-14-2020, 01:20 AM
Last Post: micseydel
  Dictionary adds an unexpected list erina 1 2,448 Mar-14-2019, 01:13 PM
Last Post: ichabod801
  Should a function ever be more permissive than its type hints? Shay 1 2,462 Mar-13-2019, 05:36 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020