是否有用于Python代码的语义编辑工具?

时间:2019-05-29 13:35:03

标签: python python-3.x

我发现自己处于无法接受的位置,不得不更换很多

def bar():
    …
    client = FooClass()
    [ code using client ]
    client = FooClass(args)
    [ code using the other client ]
    [ code no longer using client ]

使用

@some_decorator
async def bar():
    …
    async with make_foo() as client:
        [ code using client ]
    async with make_foo(args) as client:
        [ code using the other client ]
    [ code no longer using client ]

在不影响任何其他格式,注释或其他任何内容的情况下。

现在,我可以付钱给某人做很多无意识的编辑,或者自己做……或者我可以找到可以被教导去做的工具或库。

赞赏指针。

0 个答案:

没有答案