This is a very small assignment to get acquainted a little bit with how Object Oriented Programming in Python works with usage of the DND API as resource.
Version of Python should be newer than 3.8 (and supported). Your OS of choice to run the code is perferably Linux, Mac or WSL2.
TLDR; Clone the repo, make a virtenv and make sure that you have the Requests library in it. Or on Linux, install the package accordingly.
Long explanation:
git clone [email protected]:cdorsman/oop-dnd.gitChange into project directory
cd oop-dndCreate a virtualenv and activate(in Linux and Mac)
python -m venv venv && source venv/bin/activate Install Requests Python library
pip install requestsOr Ubuntu (and WSL2):
sudo apt install python3-requestsYou can find the assignment in assignment.txt
Good luck!