Skip to content

Instantly share code, notes, and snippets.

View underr's full-sized avatar
🎯
Focusing

Under underr

🎯
Focusing
View GitHub Profile
@marsam
marsam / baka.py
Created May 26, 2012 08:21
Baka Updates Crawler
#!/usr/bin/env python
from lxml.html import parse
def get_today_releases():
url = 'http://www.mangaupdates.com/releases.html'
root = parse(url).getroot()
today_rls = root.xpath("//div/div[2]//tr[position()>=2]")
releases = []