[chore] remove unused dependency

pull/34/head v0.3.3
Cullen Watson 2023-10-05 10:10:48 -05:00
parent 735ec021f7
commit 9f50d33bdb
3 changed files with 3 additions and 4 deletions

View File

@ -86,7 +86,7 @@ options:
```
```bash
> homeharvest "San Francisco, CA" -l for_rent -o excel -f HomeHarvest
homeharvest "San Francisco, CA" -l for_rent -o excel -f HomeHarvest
```

View File

@ -1,6 +1,5 @@
from dataclasses import dataclass
import requests
import tls_client
from .models import Property, ListingType, SiteName
@ -19,7 +18,7 @@ class Scraper:
def __init__(
self,
scraper_input: ScraperInput,
session: requests.Session | tls_client.Session = None,
session: requests.Session = None,
):
self.location = scraper_input.location
self.listing_type = scraper_input.listing_type

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "homeharvest"
version = "0.3.2"
version = "0.3.3"
description = "Real estate scraping library supporting Zillow, Realtor.com & Redfin."
authors = ["Zachary Hampton <zachary@zacharysproducts.com>", "Cullen Watson <cullen@cullen.ai>"]
homepage = "https://github.com/ZacharyHampton/HomeHarvest"