{"id":32861887,"url":"https://github.com/gevanilopez/python-weather-etl-app","last_synced_at":"2026-05-18T05:37:55.825Z","repository":{"id":322478972,"uuid":"1089655778","full_name":"GevaniLopez/python-weather-etl-app","owner":"GevaniLopez","description":"Simple Python ETL that loads Open-Meteo hourly weather into SQLite and prints summary stats.","archived":false,"fork":false,"pushed_at":"2025-11-04T16:49:28.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-04T18:24:08.194Z","etag":null,"topics":["data-engineering","etl","open-meteo","python","sqlite"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GevaniLopez.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-04T16:25:38.000Z","updated_at":"2025-11-04T16:51:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/GevaniLopez/python-weather-etl-app","commit_stats":null,"previous_names":["gevanilopez/python-weather-etl-app"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/GevaniLopez/python-weather-etl-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GevaniLopez%2Fpython-weather-etl-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GevaniLopez%2Fpython-weather-etl-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GevaniLopez%2Fpython-weather-etl-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GevaniLopez%2Fpython-weather-etl-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GevaniLopez","download_url":"https://codeload.github.com/GevaniLopez/python-weather-etl-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GevaniLopez%2Fpython-weather-etl-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":283424652,"owners_count":26833720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-08T02:00:06.281Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-engineering","etl","open-meteo","python","sqlite"],"created_at":"2025-11-08T22:00:58.883Z","updated_at":"2025-11-08T22:01:59.177Z","avatar_url":"https://github.com/GevaniLopez.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python Weather ETL App\n\nFetch historical hourly weather for Pensacola, FL on **September 26** for the last 5 years, store into SQLite, and print quick summary stats.\n\n## Stack\n- Python 3.10+\n- Requests (HTTP client)\n- SQLite (built-in)\n- Minimal standard library (no framework)\n\n## Quickstart\n\n```bash\n# 1) Create \u0026 activate a virtual environment\npython -m venv .venv\n# Windows:\n# .venv\\Scripts\\activate\n# macOS/Linux:\nsource .venv/bin/activate\n\n# 2) Install dependencies\npip install -r requirements.txt\n\n# 3) Run\npython main.py\n```\n\nThis creates a local `weather.db` (SQLite) and prints summary metrics.\n\n## What it does\n- Builds a list of target dates (09-26 for each of the last 5 years)\n- Calls Open‑Meteo archive API for hourly temperature, precipitation, and wind\n- Upserts into a simple `weather` table keyed by `(date, hour)`\n- Prints: row count, average temperature, total precipitation, average wind\n\n## Files\n- `main.py` — single-file ETL script\n- `requirements.txt` — pinned dependencies\n- `.gitignore` — ignores `weather.db`, venv cache, and artifacts\n\n## Example output\n```\n2021-09-26: inserted 24 hourly records\n2022-09-26: inserted 24 hourly records\n2023-09-26: inserted 24 hourly records\n2024-09-26: inserted 24 hourly records\nSummary across all dates:\nRows: 96\nAvg Temp (°C): 26.41\nTotal Precip (mm): 3.2\nAvg Wind (m/s): 4.18\n```\n\n## Notes\n- API: https://archive-api.open-meteo.com/v1/archive (no API key required)\n- Location: Pensacola, FL (lat 30.4213, lon -87.2169)\n- Timezone: UTC for simplicity\n- You can change `YEARS_BACK`, `LAT`, `LON`, `MONTH`, `DAY` at the top of `main.py`.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgevanilopez%2Fpython-weather-etl-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgevanilopez%2Fpython-weather-etl-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgevanilopez%2Fpython-weather-etl-app/lists"}