We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please support openweathermap.org Python 2 import ast import urllib2 weather = ast.literal_eval(urllib2.urlopen('http://api.openweathermap.org/data/2.5/weather ?q=Paris,fr&units=metric').read()) Python 3 import ast import urllib.request weather = ast.literal_eval(urllib.request.urllopen('http://api.openweathermap.org/data/2.5 /weather?q=Paris,fr&units=metric').read()) For all services to support, see http://openweathermap.org/api
Original issue reported on code.google.com by [email protected] on 15 Dec 2014 at 1:00
[email protected]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Original issue reported on code.google.com by
[email protected]
on 15 Dec 2014 at 1:00The text was updated successfully, but these errors were encountered: