mirror of
https://github.com/Bunsly/HomeHarvest.git
synced 2026-03-04 19:44:29 -08:00
- Fix PENDING properties to filter by pending_date instead of list_date - Add client-side filtering for PENDING as server-side pending_date filter is broken - Include contingent properties without pending_date for comprehensive results - Enhance documentation to clarify past_days behavior per listing type - Add property_history field to GraphQL queries for future enhancements - Add comprehensive test for pending date filtering functionality - Optimize filtering logic with helper methods for better maintainability 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
621 B
TOML
27 lines
621 B
TOML
[tool.poetry]
|
|
name = "homeharvest"
|
|
version = "0.6.0"
|
|
description = "Real estate scraping library"
|
|
authors = ["Zachary Hampton <zachary@bunsly.com>", "Cullen Watson <cullen@bunsly.com>"]
|
|
homepage = "https://github.com/ZacharyHampton/HomeHarvest"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.scripts]
|
|
homeharvest = "homeharvest.cli:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.9,<3.13"
|
|
requests = "^2.32.4"
|
|
pandas = "^2.3.1"
|
|
pydantic = "^2.11.7"
|
|
tenacity = "^9.1.2"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.4.2"
|
|
pre-commit = "^3.7.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|