launch.json 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Python: Kenkyusho Storage Query",
  9. "type": "python",
  10. "request": "launch",
  11. "program": "${workspaceFolder}/shimatta_kenkyusho_print_label.py",
  12. "console": "integratedTerminal",
  13. "args": ["https://parts.shimatta.net/"]
  14. },
  15. {
  16. "name": "Python: Example Print",
  17. "type": "python",
  18. "request": "launch",
  19. "program": "${workspaceFolder}/generate_label_example.py",
  20. "console": "integratedTerminal",
  21. "args": []
  22. },
  23. {
  24. "name": "Python: Print CSV",
  25. "type": "python",
  26. "request": "launch",
  27. "program": "${workspaceFolder}/print_labels_from_csv.py",
  28. "console": "integratedTerminal",
  29. "args": []
  30. }
  31. ]
  32. }