{"id":30514668,"url":"https://github.com/azevedontc/datapulse","last_synced_at":"2026-04-29T16:37:17.130Z","repository":{"id":309966747,"uuid":"1038218036","full_name":"azevedontc/dataPulse","owner":"azevedontc","description":"DataPulse","archived":false,"fork":false,"pushed_at":"2025-08-22T16:17:57.000Z","size":239,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-22T18:55:36.338Z","etag":null,"topics":["automation","brazil","cli","data","data-analysis","matplotlib","meteorology","open-meteo","pandas","prevision","pycharm","python","python3","reports","venv","weather"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azevedontc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-08-14T20:15:06.000Z","updated_at":"2025-08-22T16:18:01.000Z","dependencies_parsed_at":"2025-08-14T22:22:14.679Z","dependency_job_id":"967b7d34-b24d-4649-84ae-6426ed412cbc","html_url":"https://github.com/azevedontc/dataPulse","commit_stats":null,"previous_names":["azevedontc/datapulse"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/azevedontc/dataPulse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azevedontc%2FdataPulse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azevedontc%2FdataPulse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azevedontc%2FdataPulse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azevedontc%2FdataPulse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azevedontc","download_url":"https://codeload.github.com/azevedontc/dataPulse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azevedontc%2FdataPulse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272192670,"owners_count":24889452,"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-08-26T02:00:07.904Z","response_time":60,"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":["automation","brazil","cli","data","data-analysis","matplotlib","meteorology","open-meteo","pandas","prevision","pycharm","python","python3","reports","venv","weather"],"created_at":"2025-08-26T08:01:40.078Z","updated_at":"2026-04-29T16:37:17.125Z","avatar_url":"https://github.com/azevedontc.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e📊 DataPulse\u003c/h1\u003e\n\u003cp align=\"center\"\u003eDaily, data-driven insights in Python — fetch → clean → visualize → write.\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/license-MIT-informational\" alt=\"license\"/\u003e\n  \u003cimg src=\"https://img.shields.io/badge/python-3.11%2B-blue\" alt=\"python\"/\u003e\n\u003c/p\u003e\n\n## Funcionalidades\n- **3 fontes**: `weather` (Open-Meteo), `fx` (exchangerate.host) e **`aqi`** (Open-Meteo Air Quality).  \n- **Flags**: `--no-csv` e `--no-plot` para controlar o que salvar.  \n- **Relatórios semanais**: agregam os últimos 7 CSVs por fonte.  \n- **Robustez**: geocoding automático, retry/backoff, cache diário, índice em `/reports/README.md`.\n\n## Quickstart\n```\nbash\ngit clone https://github.com/azevedontc/dataPulse\ncd dataPulse\npython3 -m venv .venv\nsource .venv/bin/activate\npip install -r requirements.txt\n```\n## Diário\n```\n# Clima (3 dias)\npython3 -m datapulse.cli --source weather --city \"São Paulo\" --days 3\n\n# Câmbio BRL/USD (7 dias)\npython3 -m datapulse.cli --source fx --base BRL --quote USD --days 7\n\n# Qualidade do ar (AQI, 3 dias)\npython3 -m datapulse.cli --source aqi --city \"São Paulo\" --days 3\n```\n\n## Semanal\n```\n# via Makefile\nmake weekly-weather   # clima (últimos 7 CSVs)\nmake weekly-fx        # câmbio\nmake weekly-aqi       # qualidade do ar\n\n# ou via Python\npython -c \"from datapulse import build_weekly_summary as b; b('reports','weather')\"\n```\n\n## Rotina\n```\n# diário (no main)\nsource .venv/bin/activate\ngit pull\npython3 -m datapulse.cli --source weather --city \"São Paulo\" --days 3\npython3 -m datapulse.cli --source fx --base BRL --quote USD --days 7\npython3 -m datapulse.cli --source aqi --city \"São Paulo\" --days 3\ngit add reports/\ngit commit -m \"chore(reports): add daily report for YYYY-MM-DD\"\ngit push\n```\n\n### Dashboard (Streamlit)\n```\n# instalar dependência (se ainda não tiver)\npip install streamlit\n\n# rodar\nmake dashboard\n# ou\nstreamlit run streamlit_app.py\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazevedontc%2Fdatapulse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazevedontc%2Fdatapulse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazevedontc%2Fdatapulse/lists"}