Skip to content

Collect the WHO's Director General's speeches.

License

Notifications You must be signed in to change notification settings

WHOSpeeches/WHODataHub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The WHO's Director General's Speeches

Python MIT license Last Updated DOI

Below is the Gen 2 service for retrieving the WHO's Director General's Speeches.

Operation

Install

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

Run

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.

Debug

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"]