launch.json 1.0 KB

123456789101112131415161718192021
  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. "configurations": [
  6. {
  7. "name": "Python: EasySpider",
  8. "type": "python",
  9. "request": "launch",
  10. "program": "easyspider_executestage.py",
  11. "console": "integratedTerminal",
  12. "justMyCode": false,
  13. // "args": ["--ids", "[7]", "--read_type", "remote", "--headless", "0"]
  14. // "args": ["--ids", "[9]", "--read_type", "remote", "--headless", "0", "--saved_file_name", "YOUTUBE"]
  15. "args": ["--ids", "[1]", "--headless", "0", "--user_data", "0", "--keyboard", "0",
  16. "--read_type", "remote",
  17. ]
  18. // "args": "--ids '[97]' --user_data 1 --server_address http://localhost:8074 --config_folder '/Users/naibo/Documents/EasySpider/ElectronJS/' --headless 0 --read_type remote --config_file_name config.json --saved_file_name"
  19. }
  20. ]
  21. }