Skip to content

Instantly share code, notes, and snippets.

@magnunleno
magnunleno / propostas_pybr12.py
Last active July 20, 2016 22:38 — forked from marciomazza/propostas_pybr12.py
Scrapping das propostas no site da pybr 12
#!/usr/bin/env python
import re
from bs4 import BeautifulSoup
from requests import get
from collections import defaultdict
assuntos_re = re.compile(r"\[(.*)\]")
res = get('http://speakerfight.com/events/python-brasil12-apresentacoes/')
soup = BeautifulSoup(res.content, 'html.parser')