I have the below py
code:
@app.route('/v1/api/checkCurrentWeather?city=Tel-aviv')
def check_current_weather_by_city():
city = None
How Do I get the city parameter from the GET
request?
I'm working with this service.
I have the below py
code:
@app.route('/v1/api/checkCurrentWeather?city=Tel-aviv')
def check_current_weather_by_city():
city = None
How Do I get the city parameter from the GET
request?
I'm working with this service.