/habr-qna-parser

Question parser from qna.habr.com

Primary LanguagePython

habr-qna-parser

A script that parses all questions and answers from qna.habr.com with their metadata. The full parsed dataset can be downloaded here.

Build docker image

docker build -t habr-qna-parser .

Run docker image as container

export UID=$(id -u)
export GID=$(id -g)

docker run \
  -it \
  --rm \
  --user $UID:$GID \
  --volume="$PWD:/app:rw" \
  habr-qna-parser