Skip to content

Instantly share code, notes, and snippets.

@rafeeq01101
rafeeq01101 / python-extract-after-scrape.py
Created December 17, 2022 05:01 — forked from rms1000watt/python-extract-after-scrape.py
Python script to extract phone numbers and emails from html pages that were web scraped
import re
import glob
def main():
outputFile = 'output.tsv'
files = glob.glob('*.html')
print "Extracting from %s files" %(len(files))
data = []
@rafeeq01101
rafeeq01101 / WAXP.js
Created December 15, 2022 03:20 — forked from shaneapen/WAXP.js
WhatsApp Group Contacts Exporter
WAXP = (function(){
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var SCROLL_INTERVAL = 600,
SCROLL_INCREMENT = 450,
AUTO_SCROLL = true,
NAME_PREFIX = '',
UNKNOWN_CONTACTS_ONLY = false,
MEMBERS_QUEUE = {},