Hi everyone,
We just open-sourced
israeli-prices, a Python client for the price-transparency data that Israeli law requires retailers to publish.
If you've ever tried to use that data, you know the pain: every chain hosts its files differently—five different portal engines, login flows, UTF-16 files, ZIP archives named .gz.
The library gives you one typed interface for
31 of the 32 chains on the government roster:
pip install israeli-prices
import israeli_prices as ilp
prices = ilp.get_prices("shufersal", store_id="001")Prices come back as Decimal, Hebrew intact, promotions with their full group structure. It runs nightly in CI against the live portals, so the coverage claims are tested, not aspirational.
We built it for our own pipeline at RxRadar and figured this community would find it useful—CPI research, price-comparison side projects, teaching material.
Feedback, issues and PRs very welcome! Happy to give a talk about the government transparency format at a future meetup if there's interest.
GitHub:
https://github.com/rxradar/israeli-pricesPyPI:
https://pypi.org/project/israeli-prices/Best,
Sasha