Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.07 KB

README.md

File metadata and controls

18 lines (12 loc) · 1.07 KB

WSGI Calculator

Your assignment is to create a WSGI calculator that you can use to add, subtract, multiply, or divide two numbers.

You'll use the calculator by visiting an address like: http://localhost:8080/multiply/3/5. Once you've completed the assignment, if you were to run the program and visit this page then you would expect to see a page in your browser with the text "15".

You'll also have to create one more page: an index page at the address http://localhost:8080/ with some text instructions that explain (in just a few sentences) how to use the site.

How to Know When You're Done

When you have completed the TODOs, you should be able to visit the following pages and see a page with the indicated content.:

There is also a set of tests for you to run, using python tests.py.