Python challenge

A Python app with Flask to attempt a coding challenge.

Requirements

  • Python 3.8
  • Flask

Local Setup

Step 1: Clone the git repository

$ git clone https://github.com/Pythonian/python_challenge.git
$ cd python_challenge

Step 2: Create a virtual environment

$ python3 -m venv venv
$ . venv/bin/activate

Step 3: Install the requirements

$ make setup

Step 4: Run the Tests

$ python tests.py

Step 5: Start the development server

$ make run