Something whipped up quickly that does nothing but gather and show data from the StackExchange API
- StackAPI - A Python wrapper for the StackExchange API
Clone this repo.
git clone git@github.com:sframe/python-stackexchange-api.gitcd python-stackexchange-apiUse a Python version manager, e.g.pyenv
pyenv install 3.11.2Use Python's built in venv to keep module installations clean and isolated to this project.
python -m venv .venvInstalling is not enough! source should be run for every new session.
source .venv/bin/activateDon't pollute your global python installation with project dependencies. See Considerations for New Python Users
pip install -r requirements.txtpython -m examples.commentspython -m examples.questionspython -m examples.users