Skip to content

Instantly share code, notes, and snippets.

@FlyingTerran
FlyingTerran / zillow.py
Created May 28, 2021 03:50 — forked from scrapehero/zillow.py
Python 3 script to find real estate listings of properties up for sale on zillow.com
from lxml import html
import requests
import unicodecsv as csv
import argparse
import json
def clean(text):
if text:
return ' '.join(' '.join(text).split())