- ScriptRunnerでdebugpy_OSGeo4W.pyを実行。
- 次で.vscode/launch.jsonを作成。remoteRootを${workspaceFolder}に変更。
Menu / Run / Add Configuration…
# Works on Git Bash | |
cat 2023*.txt > temp.txt | |
sort temp.txt | uniq > 2023.txt | |
rm temp.txt |
import sys | |
from xml.dom import minidom | |
filename = sys.argv[1] | |
print("Parsing " + filename) | |
dom = minidom.parse(filename) | |
notes = dom.getElementsByTagName("note") |