- Python 3.9 support (tested) (could potentially work for lower versions, but I have not validated such)

This commit is contained in:
Zachary Hampton
2024-05-14 19:13:04 -07:00
parent 803fd618e9
commit 018d3fbac4
7 changed files with 8 additions and 5 deletions

View File

@@ -1,3 +1,4 @@
from __future__ import annotations
from dataclasses import dataclass
import requests
from requests.adapters import HTTPAdapter

View File

@@ -1,3 +1,4 @@
from __future__ import annotations
from dataclasses import dataclass
from enum import Enum
from typing import Optional

View File

@@ -4,7 +4,7 @@ homeharvest.realtor.__init__
This module implements the scraper for realtor.com
"""
from __future__ import annotations
from concurrent.futures import ThreadPoolExecutor, as_completed
from datetime import datetime
from typing import Dict, Union, Optional