This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
# | |
# ---------------------------------------------------------------------------- | |
# "THE BEER-WARE LICENSE" (Revision 42): | |
# <[email protected]> wrote this file. As long as you retain this notice you | |
# can do whatever you want with this stuff. If we meet some day, and you think | |
# this stuff is worth it, you can buy me a beer in return Gnonthgol | |
# ---------------------------------------------------------------------------- | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import time | |
import urllib2 | |
from HTMLParser import HTMLParser | |
url = 'http://donate.osm.org/comments/' | |
class DonationHTMLParser(HTMLParser): | |
donations = [] | |
keys = ['name', 'when', 'amount'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Scraperwiki som hentar veglengder frå veglistene til vegvesenet | |
#Av Gnonthgol | |
import scraperwiki | |
import urllib2 | |
import lxml.etree | |
import re | |
res = {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CFLAGS = -g `pkg-config --cflags glib-2.0` `libgcrypt-config --cflags` | |
LDFLAGS = `pkg-config --libs glib-2.0` `libgcrypt-config --libs` |