TranscriptTraversal is a small Flask-based utility for turning 2020 Democratic primary debate transcripts into more structured, machine-usable data.
The project was built around transcripts published by The New York Times and exposes two simple workflows:
- convert a source transcript URL into structured JSON
- generate basic word-count summaries from the same source
app.py: Flask entrypoint and web form handlerstranscript_traversal.py: transcript parsing and transformation logictemplates/andstatic/: web UI assetsexploratory_analysis/: supporting analysis notebooks and experiments
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python app.pyThen open http://127.0.0.1:5000/ in your browser.
MIT. See LICENSE.