I’m trying to insert some import lines into a python source file, but i would ideally like to place them right after the initial docstring. Let’s say I load the file into the lines variable like this:
lines = open('filename.py').readlines()
How to find the line number, where the docstring ends?
If you’re using the standard docstring format, you can do something like this:
Might need some adaptation for files with no docstrings, but if your files are formatted consistently it should be easy enough.