pyfunda 2.6.0__tar.gz → 2.6.1__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-2.6.0 → pyfunda-2.6.1}/PKG-INFO +1 -1
- {pyfunda-2.6.0 → pyfunda-2.6.1}/funda/funda.py +2 -1
- {pyfunda-2.6.0 → pyfunda-2.6.1}/pyproject.toml +1 -1
- {pyfunda-2.6.0 → pyfunda-2.6.1}/.dockerignore +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/.github/FUNDING.yml +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/.github/workflows/publish.yml +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/.gitignore +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/Dockerfile +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/LICENSE +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/README.md +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/examples/analysis.ipynb +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/examples/export_to_csv.py +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/examples/new_listings_alert.py +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/examples/poll_new_listings.py +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/examples/price_history.py +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/examples/price_tracker.py +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/examples/search_sold.py +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/funda/__init__.py +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/funda/listing.py +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/funda/py.typed +0 -0
- {pyfunda-2.6.0 → pyfunda-2.6.1}/test_all_flows.py +0 -0
|
@@ -421,7 +421,7 @@ class Funda:
|
|
|
421
421
|
"path": f"area_with_radius.{actual_radius}",
|
|
422
422
|
}
|
|
423
423
|
elif locations:
|
|
424
|
-
params["selected_area"] = locations
|
|
424
|
+
params["selected_area"] = [loc.lower() for loc in locations]
|
|
425
425
|
|
|
426
426
|
# Price filter - format depends on offering type
|
|
427
427
|
if price_min is not None or price_max is not None:
|
|
@@ -833,6 +833,7 @@ class Funda:
|
|
|
833
833
|
"postcode": address.get("postal_code"),
|
|
834
834
|
"province": address.get("province"),
|
|
835
835
|
"neighbourhood": address.get("neighbourhood"),
|
|
836
|
+
"wijk": address.get("wijk"),
|
|
836
837
|
"price": price,
|
|
837
838
|
"price_condition": price_condition,
|
|
838
839
|
"living_area": source.get("floor_area", [None])[0] if source.get("floor_area") else None,
|
|
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
|