This tool allows the user to get full access to the historical and future economic calendar (worldwide scale).
Public data scraped and processed from the FxStreet.
.
├── LICENSE
├── README.md
├── ecocal
│ ├── __init__.py
│ └── main.py
├── out
├── requirements.txt
└── test
└── test.py
To reproduce the file tree, run: tree -L 2 -I '*.csv'
git clone https://github.com/lcsrodriguez/ecocal.git
cd ecocal/
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt
pip3 freeze
python3 setup.py sdist bdist_wheel # Build the package from sourceRun the example script:
python3 test/test.py
from ecocal import EconomicCalendar
ec = EconomicCalendar(startHorizon="2023-10-10",
endHorizon="2023-10-12",
withDetails=True
)
ec.saveCalendar(withDetails=True)