launch.json 802 B

1234567891011121314151617181920212223242526
  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: Example Print",
  9. "type": "python",
  10. "request": "launch",
  11. "program": "${workspaceFolder}/generate_label_example.py",
  12. "console": "integratedTerminal",
  13. "args": []
  14. },
  15. {
  16. "name": "Python: Print CSV",
  17. "type": "python",
  18. "request": "launch",
  19. "program": "${workspaceFolder}/print_labels_from_csv.py",
  20. "console": "integratedTerminal",
  21. "args": []
  22. }
  23. ]
  24. }