From 9f50d33bdbec72238127d7a26a8cfc22e80ecefd Mon Sep 17 00:00:00 2001 From: Cullen Watson Date: Thu, 5 Oct 2023 10:10:48 -0500 Subject: [PATCH] [chore] remove unused dependency --- README.md | 2 +- homeharvest/core/scrapers/__init__.py | 3 +-- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5d87b18..77aaf3b 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/homeharvest/core/scrapers/__init__.py b/homeharvest/core/scrapers/__init__.py index f82b321..f8a108e 100644 --- a/homeharvest/core/scrapers/__init__.py +++ b/homeharvest/core/scrapers/__init__.py @@ -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 diff --git a/pyproject.toml b/pyproject.toml index d14c343..f85d587 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 ", "Cullen Watson "] homepage = "https://github.com/ZacharyHampton/HomeHarvest"