pyfunda 3.1.2__tar.gz → 3.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyfunda-3.1.2 → pyfunda-3.1.3}/PKG-INFO +1 -1
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/funda.py +1 -7
- {pyfunda-3.1.2 → pyfunda-3.1.3}/pyproject.toml +1 -1
- {pyfunda-3.1.2 → pyfunda-3.1.3}/.dockerignore +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/.github/FUNDING.yml +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/.github/workflows/publish.yml +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/.gitignore +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/Dockerfile +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/LICENSE +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/README.md +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/docs/API.md +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/docs/ARCHITECTURE.md +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/docs/DEVELOPMENT.md +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/docs/EXAMPLES.md +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/docs/README.md +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/almere_age_rank.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/analysis.ipynb +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/batch_details.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/broker_due_diligence.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/enrichment_export.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/export_to_csv.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/full_api_walkthrough.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/neighborhood_market_snapshot.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/new_listings_alert.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/poll_new_listings.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/price_history.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/price_tracker.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/search_sold.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/examples/similar_sales_comp.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/__init__.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/_autocomplete.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/_autocomplete_parser.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/_detail_parser.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/_enrichment_parser.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/_parallel.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/_parse_helpers.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/_price_history_parser.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/_search_parser.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/_transport.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/constants.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/exceptions.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/headers.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/listing.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/models.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/parsing.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/py.typed +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/funda/search.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/tests/__init__.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/tests/test_autocomplete.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/tests/test_client.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/tests/test_enrichment_parser.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/tests/test_live.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/tests/test_models.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/tests/test_search.py +0 -0
- {pyfunda-3.1.2 → pyfunda-3.1.3}/tests/test_transport_parallel.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyfunda
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.3
|
|
4
4
|
Summary: Python API wrapper for Funda.nl, the Dutch real estate platform. Reverse-engineered mobile API client, no scraping, no Selenium, no CAPTCHA.
|
|
5
5
|
Project-URL: Homepage, https://github.com/0xMH/pyfunda
|
|
6
6
|
Project-URL: Repository, https://github.com/0xMH/pyfunda
|
|
@@ -63,9 +63,7 @@ class Funda:
|
|
|
63
63
|
|
|
64
64
|
timeout: int = 30
|
|
65
65
|
max_retries: int = DEFAULT_MAX_RETRIES
|
|
66
|
-
retry_backoff: float = 0.
|
|
67
|
-
min_request_interval: float = 0.0
|
|
68
|
-
adaptive_throttle: bool = True
|
|
66
|
+
retry_backoff: float = 0.1
|
|
69
67
|
|
|
70
68
|
_transport: _FundaTransport = field(init=False, repr=False)
|
|
71
69
|
_parallel_runner: _ParallelRunner["Funda"] | None = field(default=None, init=False, repr=False)
|
|
@@ -75,8 +73,6 @@ class Funda:
|
|
|
75
73
|
timeout=self.timeout,
|
|
76
74
|
max_retries=self.max_retries,
|
|
77
75
|
retry_backoff=self.retry_backoff,
|
|
78
|
-
min_request_interval=self.min_request_interval,
|
|
79
|
-
adaptive_throttle=self.adaptive_throttle,
|
|
80
76
|
)
|
|
81
77
|
|
|
82
78
|
def close(self) -> None:
|
|
@@ -507,8 +503,6 @@ class Funda:
|
|
|
507
503
|
timeout=self.timeout,
|
|
508
504
|
max_retries=self.max_retries,
|
|
509
505
|
retry_backoff=self.retry_backoff,
|
|
510
|
-
min_request_interval=self.min_request_interval,
|
|
511
|
-
adaptive_throttle=self.adaptive_throttle,
|
|
512
506
|
)
|
|
513
507
|
|
|
514
508
|
def _listing_id_from_input(self, listing_id: int | str) -> str:
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pyfunda"
|
|
7
|
-
version = "3.1.
|
|
7
|
+
version = "3.1.3"
|
|
8
8
|
description = "Python API wrapper for Funda.nl, the Dutch real estate platform. Reverse-engineered mobile API client, no scraping, no Selenium, no CAPTCHA."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "AGPL-3.0-or-later"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|