Unofficial API for the Israeli Home Front Command
Project description
Oref
Oref – Python interface to Israel’s Home Front Command (Pikud HaOref) emergrncy alert network.
Installation
pip install oref
Python 3.11 + required.
Quick‑start
import oref
from oref.types import Alert
# Load baseline (English) metadata
oref.init()
# Optional – preload extra languages
oref.init(extra_languages=["he", "ar", "ru"])
# One‑off check (all areas)
alert = oref.check_alert()
if alert:
print(alert)
# Continuous listener (filter to specific areas if desired)
def on_alert(a: Alert):
print("\n>>> INCOMING:", a)
oref.listen(on_alert, areas=["Jerusalem", 158])
API Synopsis
Initialise
| Function | Signature | Purpose |
|---|---|---|
init |
init(extra_languages: List[Literal["ar", "he", "ru"]] = []) |
Downloads location, guideline & translation datasets. Must be called before any other helper. |
Alerts
Alert functions can be invoked from both oref and oref.alerts.
| Function | Signature | Notes | ||
|---|---|---|---|---|
check_alert |
`check_alert(areas: List[str | int] | Literal["all"] = "all") -> Alert \ bool` | Returns latest alert object or False if none. |
||
listen |
`listen(callback: Callable, areas: List[str | int] | Literal["all"] = "all", args=(), kwargs={})` | Polls every second; invokes callback once per unique alert (15‑minute deduplication window). |
Data Helpers
Data helpers can be invoked from both oref and oref.loader
| Function | Returns | Description | |
|---|---|---|---|
locations |
List[Location] |
All known locations with multilingual labels & shelter times. | |
location |
`Location | bool` | Single lookup by ID or any language label. | |
guidelines |
List[Guideline] |
Civil‑defence instructions per alert zone. | |
alert_translations |
List[AlertTranslation] |
Full mapping of alert categories/titles/desc in four languages. | |
translate |
(title, desc) |
Convenience wrapper translating an Alert into the requested language. |
Data Structures (oref.types)
Alert–id,category,title,description,locations,unfiltered_locations;filter_locations(relevant)Location–id,area_id,name(Placename),region(Placename),shelter_timeGuideline–code,area_id,zone_name,label(Placename),time_notes,mode,color_codePlacename– multilingual string container (en / he / ar / ru)AlertTranslation– four‑language mapping plus category metadata
Example – Translate & Filter
from oref import check_alert, translate
alert = check_alert()
if alert:
# Limit to Be’er Sheva & area‑id 165
alert.filter_locations(["Be'er Sheva", 165])
# Convert title/description to Russian
title_ru, desc_ru = translate(alert, "ru")
print(title_ru, "::", desc_ru)
Configuration
oref.config exposes endpoint constants (ALERTS_URL, LOCATIONS_URL, GUIDELINES_URL, ALERT_TRANSLATIONS_URL). Override them before calling init() to point at mirrors, proxies, or test fixtures.
Logging
The package emits informative messages via the standard logging module. Example:
import logging, oref
logging.basicConfig(level=logging.INFO)
oref.init()
Caveats
- Unofficial – not endorsed by Pikud HaOref.
- Upstream JSON schemas may change without notice.
- Network polling every second like the official website; adjust in fork if lower bandwidth is essential.
Licence
MIT © 2025
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file oref-0.2.0.tar.gz.
File metadata
- Download URL: oref-0.2.0.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ece9022935f6f66e54b94bdd3c9f9b24c4db48f6a84a05a3ce51ceeeb35ae6b
|
|
| MD5 |
cb3a531e9aca644b889aa7985389f0e4
|
|
| BLAKE2b-256 |
2837f5b2899867c5eb7da716796cc4d8ae799b8c2ffbae9be9985d2267280e19
|
File details
Details for the file oref-0.2.0-py3-none-any.whl.
File metadata
- Download URL: oref-0.2.0-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bceee8e3f8626752c53482ad63f9c2d8c96a91e89049d34acd9fcdbb30549519
|
|
| MD5 |
3a603296dd3015a91a653204de2da689
|
|
| BLAKE2b-256 |
218b815d28f8965bdd60919971c4862fc07219f2378ce389859a624a812e1dc2
|