Below is the Gen 2 service for retrieving the WHO's Director General's Speeches.
You can install the package using the following steps:
pip
install using an admin prompt.
pip uninstall WHOSpeeches
python -OO -m pip install -v git+https://github.com/WHOSpeeches/data.git
or if you have the code local
pip uninstall WHOSpeeches
python -OO -m pip install -v c:/repos/WHOSpeeches/data
Get all the WHO's Director General's Speeches.
WHOSpeeches -dest "c:/data/who"
The following are required parameters:
dest
is the location of the retrieved speeches.
The code in this repo is setup as a module. Debugging is based on the assumption that the module is already installed. In order to debug (F5), make sure to install the module as editable (see below).
pip uninstall WHOSpeeches
python -m pip install -e c:/repos/WHOSpeeches/data
When debugging in VSCode for the first time, consider adding the below config to the launch.json file.
"args" : ["-dest", "d:/data/who"]