Skip to content

Instantly share code, notes, and snippets.

View sladjandr's full-sized avatar
💻

Sladjan Drazic sladjandr

💻
View GitHub Profile
@sladjandr
sladjandr / email-scrape.py
Created October 4, 2016 21:00
Scrape all mailto links from a page - Python
import requests
import xlwt
from bs4 import BeautifulSoup
wb = xlwt.Workbook()
ws = wb.add_sheet('Emails')
ws.write(0,0,'Emails')
emailList= []