Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions scripts/generate_homeval/generate_homeval.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
--------
Generate every PIN:
$ python3 generate_homeval.py \
--run-id 2025-04-25-fancy-free-billy \
--run-id 2025-06-14-flamboyant-rob \

Generate two specific PINs:
$ python3 generate_homeval.py \
--run-id 2025-04-25-fancy-free-billy \
--run-id 2025-06-14-flamboyant-rob \
--pin 01011000040000 10112040080000

Generate every PIN in towns 10 and 11:
$ python3 generate_homeval.py \
--run-id 2025-04-25-fancy-free-billy \
--run-id 2025-06-14-flamboyant-rob \
--township 10 11
"""

Expand Down Expand Up @@ -59,7 +59,7 @@ def parse_args() -> argparse.Namespace:
parser.add_argument(
"--run-id",
required=True,
help="Comps run ID used by the pinval.vw_comps view (e.g. 2025-04-25-fancy-free-billy)",
help="Comps run ID used by the pinval.vw_comps view (e.g. 2025-06-14-flamboyant-rob)",
)

parser.add_argument(
Expand Down
5 changes: 1 addition & 4 deletions scripts/generate_homeval/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies = [
"pandas>=2.2.3",
"pyathena>=3.13.0",
"pyarrow>=20.0.0",
"ccao",
"ccao>=1.3.1",
]

[build-system]
Expand All @@ -19,6 +19,3 @@ build-backend = "setuptools.build_meta"
# Disable implicit namespaces, since we have an unusual project structure.
# See: https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#custom-discovery
find = {namespaces = false}

[tool.uv.sources]
ccao = { git = "https://github.com/ccao-data/ccao", subdirectory = "python", rev = "c74f627d6431203bcf0cc9efa571396e6348eaec" }
Loading