robert0714 / Packt-Machine-Learning-in-Microservices-2023

Packt-Machine Learning in Microservices, published by Packt-2023

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Debug python in Visual Code / Cloud Shell

Configuration Example

  • launch.json
    • If you have arguement like python3 simulate_api_rqsts.py 1 http://www.google.com
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "args":   [      "1","http://www.google.com"  ], 
            "console": "integratedTerminal"
        } 
    ]
}

About

Packt-Machine Learning in Microservices, published by Packt-2023

License:MIT License


Languages

Language:Python 72.7%Language:Dockerfile 16.9%Language:Shell 6.1%Language:JavaScript 2.2%Language:HTML 2.0%