Skip to content

Instantly share code, notes, and snippets.

View littmus's full-sized avatar

Dongwon Shin littmus

View GitHub Profile
#!/usr/bin/env python
import bs4
import requests
import time
def main():
r = requests.get("http://www.caffebene.co.kr/sub03/searchStore/map")
b = bs4.BeautifulSoup(r.text)
sido_data = b.find_all("map", id="Map")[0].find_all("area")