Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python
from random import SystemRandom
import requests
from bs4 import BeautifulSoup
random = SystemRandom()
meetup_url = 'http://www.meetup.com/PyNash/events/223762262/'
r = requests.get(meetup_url)
soup = BeautifulSoup(r.text, "html.parser")