Parse and export the unstructured information from Markdown into a structured JSON format.
Requires Python 3.6+.
Create a virtualenv and install requirements (you can also use conda):
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txtFrom the NLP-progress root directly (where the LICENCE file is), run:
python structured/export.py <one or more directories or files>For example, to export all the data in the english/ directory:
python structured/export.py englishBy default the output will be written into structured.json, but you can override this with the --output parameter.