A fully automated daily dashboard that pulls Malaysian public data and presents it in a clean, mobile-friendly website โ updated every night at 12:05 AM automatically.
Live site: https://korokmu.github.io/malaysia-data-simplifier/
| Section | Data | Source |
|---|---|---|
| โฝ Fuel Prices | RON95, RON97, Diesel weekly prices + trend | data.gov.my |
| ๐น Exchange Rates | USD, SGD, EUR, GBP, JPY, AUD, CNY vs MYR + trend | Bank Negara Malaysia via data.gov.my |
| ๐งฎ Traveler Calculator | Convert any currency to RM instantly | BNM live rate |
| ๐ฆ๏ธ Weather | 3-day forecast for all 16 states/territories | Open-Meteo |
- State selector โ switch between all 16 Malaysian states/federal territories, grouped by region
- Persona toggle โ Local view (cost of living focus) vs Visitor view (travel essentials)
- Price change indicators โ โฒ/โผ arrows on fuel and exchange rates vs previous week/day
- Fully automated โ runs daily via systemd timer, commits and pushes to GitHub Pages
- Python 3 + Polars โ fast data processing
- Plotly โ interactive HTML charts
- Parquet โ efficient data storage
- GitHub Pages โ free hosting
- systemd timer โ daily automation on Linux
malaysia-data-simplifier/
โโโ src/
โ โโโ fetch_fuel.py โ Downloads weekly fuel price data
โ โโโ fetch_exchange.py โ Downloads daily exchange rates
โ โโโ fetch_weather.py โ Downloads 3-day weather forecasts
โ โโโ chart_fuel.py โ Generates fuel trend chart
โ โโโ chart_exchange.py โ Generates exchange rate chart
โ โโโ extract_stats.py โ Builds latest_stats.json for dashboard
โ โโโ notify_discord.py โ Optional Discord update notification
โ โโโ validate.py โ Health checks after each run
โโโ docs/ โ GitHub Pages website (auto-generated)
โ โโโ index.html
โ โโโ latest_stats.json
โ โโโ *.html (charts)
โโโ update.sh โ Master script โ fetch โ chart โ push
โโโ requirements.txt
git clone https://github.com/korokmu/malaysia-data-simplifier.git
cd malaysia-data-simplifier
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
bash update.shAll data is free and publicly available โ no API keys required.
- data.gov.my โ Malaysian government open data portal
- Open-Meteo โ Free open-source weather API