Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Output 'None'
#2
Turn of JavaScript in browser and reload the page,that what you scrape also None.
Look at this Thread.
Also using Api's is easier when it comes to weather data, eg wttr.in or OpenWeather .
G:\div_code\hex
λ curl wttr.in/Zagrep?format=3
Zagrep: ☀️   +25°C 
In Python this curl command would be.
import requests

params = {
    'format': '3',
}
response = requests.get('http://wttr.in/Zagrep', params=params)
print(response.text)
Output:
Zagrep: ☀️ +25°C
Reply


Messages In This Thread
Output 'None' - by liketocode - May-21-2023, 11:27 AM
RE: Output 'None' - by snippsat - May-21-2023, 01:12 PM
RE: Output 'None' - by snippsat - May-26-2023, 07:13 PM
RE: Output 'None' - by Gaurav_Kumar - Jul-20-2023, 11:21 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020