This directory holds the source materials (RestructuredText, mostly) used to build the slides and HTML pages for the class.
The old_versions dir has older version of the materials, done in LaTeX.
The contents are a bit different and have been updated. There are just
there for reference.
The documentation is written in ReStructuredText and output formats are included for html, epub and html5slides (via the excellent hieroglyph package).
You will need a handful of Python packages to build this project. You may want to use virtualenv to help manage those dependencies.
First step is to clone this repository:
$ git clone https://github.com/UWPCE-PythonCert/IntroToPython.git
...
$ cd codefellows_f2_pythonOnce that is complete, you can install all the required packages with pip:
$ pip install -r requirements.txtFinally, build the documentation using one of the output targets. To build the plain html version, for example:
$ make html
sphinx-build -b html -d build/doctrees source build/html
Running Sphinx v1.2.2
...
build succeeded.
Build finished. The HTML pages are in build/html.Or the html5 slides:
$ make slides
sphinx-build -b slides -d build/doctrees source build/slides
Running Sphinx v1.2.2
...
Build finished. The HTML slides are in build/slides.Copyright 2014 Christopher Barker, Cris Ewing.
Thanks to Jon Jacky and Brian Dorsey, who developed the materials from which this course was derived.
This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License.
To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to:
Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
A copy of this license in text format is included in this package in the LICENSE.txt file.