Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 547 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 547 Bytes

Python Scaffold for Code Retreat

Option 1: use docker wrapper scripts

See scripts/ folder.

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