{"id":49954504,"url":"https://github.com/lcsrodriguez/ecocal","last_synced_at":"2026-05-17T22:07:46.809Z","repository":{"id":179888506,"uuid":"664080651","full_name":"lcsrodriguez/ecocal","owner":"lcsrodriguez","description":"Worldwide economic calendar Python package (details, estimates, market news, ...)","archived":false,"fork":false,"pushed_at":"2023-12-25T18:18:13.000Z","size":84,"stargazers_count":24,"open_issues_count":4,"forks_count":8,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-02-18T04:54:17.141Z","etag":null,"topics":["data-collection","economic-calendar","financial-events","multithreaded","python","webscraping"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/ecocal","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/lcsrodriguez.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}},"created_at":"2023-07-08T21:28:17.000Z","updated_at":"2025-12-11T19:09:10.000Z","dependencies_parsed_at":"2023-12-24T10:20:53.403Z","dependency_job_id":"08b6c029-18fd-4c5b-91cf-8a9485d0a175","html_url":"https://github.com/lcsrodriguez/ecocal","commit_stats":null,"previous_names":["lcsrodriguez/ecocal"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/lcsrodriguez/ecocal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lcsrodriguez%2Fecocal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lcsrodriguez%2Fecocal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lcsrodriguez%2Fecocal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lcsrodriguez%2Fecocal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lcsrodriguez","download_url":"https://codeload.github.com/lcsrodriguez/ecocal/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lcsrodriguez%2Fecocal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33157234,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-collection","economic-calendar","financial-events","multithreaded","python","webscraping"],"created_at":"2026-05-17T22:07:43.121Z","updated_at":"2026-05-17T22:07:46.795Z","avatar_url":"https://github.com/lcsrodriguez.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Economic Calendar\n\n\u003cimg src=\"https://img.shields.io/static/v1?label=Languages\u0026message=Python\u0026color=ff0000\"/\u003e\u0026nbsp;\u003cimg src=\"https://img.shields.io/static/v1?label=Restriction\u0026message=NO\u0026color=26c601\"/\u003e ![GitHub release (latest by date)](https://img.shields.io/github/v/release/lcsrodriguez/ecocal) ![python version | 3.10+](https://img.shields.io/badge/Python%20version-3.10+-magenta) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n[![CodeQL](https://github.com/lcsrodriguez/ecocal/actions/workflows/codeql.yml/badge.svg)](https://github.com/lcsrodriguez/ecocal/actions/workflows/codeql.yml)\u0026nbsp;![](https://img.shields.io/badge/Dependabot-enabled-blue)\n\n![PyPI - Downloads](https://img.shields.io/pypi/dw/ecocal)\n![PyPI - Format](https://img.shields.io/pypi/format/ecocal)\n![PyPI - Implementation](https://img.shields.io/pypi/implementation/ecocal)\n![PyPI - License](https://img.shields.io/pypi/l/ecocal)\n![PyPI - Version](https://img.shields.io/pypi/v/ecocal)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ecocal)\n\n## Overview\n\n`ecocal` is a light-weight and easy-to-user Python package allowing every developer to retrieve full access to both historical and future insightful and hifhly-detailed economic calendar (worldwide scale).\n\n****\n\n**DISCLAIMER**: \n- Data extracted from external providers. No warranty on data quality/accuracy.\n- Data provided **AS IS** for information purpose only.\n\n## Getting started\n\n\u003e Install from **PyPI**:\n1. Install `ecocal` package\n    ```shell\n    pip3 install ecocal\n    ```\n2. Execute the example code\n    ```python\n   from ecocal import *\n   \n   \n   def main() -\u003e None:\n       ec = Calendar(startHorizon=\"2023-10-26\",\n                     endHorizon=\"2023-11-30\",\n                     withDetails=True,\n                     nbThreads=20,\n                     preBuildCalendar=True,\n                     )\n       print(ec)\n       # On-disk saving of detailed calendar\n       ec.saveCalendar()\n   \n   if __name__ == \"__main__\":\n       main()\n    ```\n    Code available using:\n    - `python examples/main.py`\n    - `jupyter-notebook examples/main.ipynb` (dynamic debugging)\n\n\n\u003e Install from **source**\n1. Clone the repository:\n    ```shell\n    git clone https://github.com/lcsrodriguez/ecocal.git\n    cd ecocal/\n    ```\n2. Create a virtual environment for **clean** environment\n    ```shell\n    python3 -m venv venv\n    source venv/bin/activate\n    ```\n3. Install the required Python packages\n    ```shell\n    pip3 install -r requirements.txt\n    pip3 freeze\n    ```\n4. Initiate the project\n    ```shell\n    make init\n    ```\n\n## Project's architecture\n\n```\n./\n├── CITATION.cff\n├── Dockerfile\n├── LICENSE\n├── Makefile\n├── README.md\n├── ecocal/\n│   ├── Calendar.py\n│   ├── Event.py\n│   ├── __init__.py\n│   ├── constants.py\n│   └── utils.py\n├── examples/\n│   ├── main.ipynb\n│   └── main.py\n├── requirements.txt\n└── setup.py\n```\n\n## License \u0026 Credits\n\n- **[Lucas RODRIGUEZ](https://lcsrodriguez.github.io)**\n\nThe [LICENSE](LICENSE) file contains the full license details.\n\n\nIf you are using this package for research purposes, you can quote it as shown below *(BibTeX format)*:\n\n```shell\n@software{RODRIGUEZ_ecocal_2023,\nauthor = {RODRIGUEZ, Lucas},\nmonth = dec,\ntitle = {{ecocal}},\nurl = {https://github.com/lcsrodriguez/ecocal},\nversion = {1.2.1},\nyear = {2023}\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flcsrodriguez%2Fecocal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flcsrodriguez%2Fecocal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flcsrodriguez%2Fecocal/lists"}