Skip to content

Instantly share code, notes, and snippets.

@jbran
jbran / weather.py
Created May 14, 2012 05:55 — forked from jleclanche/weather.py
Quick python weather script using Google's Weather API and Fucking Weather
#!/usr/bin/env python
# encoding: utf-8
import sys
from argparse import ArgumentParser
from xml.dom import minidom
try:
from urllib.request import urlopen
from urllib.parse import urlencode
except ImportError: