mirror of
https://github.com/Bunsly/HomeHarvest.git
synced 2026-03-04 19:44:29 -08:00
Implements offset parameter to enable pagination within the 10k API limit. Users can now fetch results in chunks (e.g., offset=200, limit=200 for results 200-399). Includes validation to ensure offset + limit doesn't exceed API maximum. Also fixes multi-page result sorting to preserve correct order across page boundaries. Fixes #139 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
615 B
TOML
27 lines
615 B
TOML
[tool.poetry]
|
|
name = "homeharvest"
|
|
version = "0.7.2"
|
|
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"
|
|
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"
|