Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 482 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 482 Bytes

Python Scaffold for Code Retreat

Install Python tools

The easiest option is to install the Anaconda distribution, which includes Python plus many popular libraries. Prefer using Python 3.x.

Run the tests

From src/, run:

py.test -v

Run the app

python my_app.py

Hierarchy of directories

  • src: the source code, including a module my_module.py and a script my_app.py.
  • src/test: the tests