Skip to content

Instantly share code, notes, and snippets.

View jayronsoares's full-sized avatar

Jayron Soares jayronsoares

View GitHub Profile
@jayronsoares
jayronsoares / weather.py
Created May 17, 2012 18:51 — forked from jleclanche/weather.py
Quick python weather script using Google's Weather API
#!/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: