Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jamespjh committed Sep 4, 2015
1 parent d4f44b4 commit dc67a83
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ default: _site
ipython nbconvert --to notebook --nbformat 2 --stdout $< > $@

%.nbconvert.ipynb: %.ipynb
ipython nbconvert --to notebook --ExecutePreprocessor.timeout=120 --execute --stdout $< > $@
ipython nbconvert --to notebook --allow-errors --ExecutePreprocessor.timeout=120 --execute --stdout $< > $@

notes.pdf: combined.ipynb Makefile
ipython nbconvert --to pdf --template latex.tplx $<
Expand Down Expand Up @@ -80,10 +80,10 @@ plantuml.jar:
.PHONY: ready

_site: ready
jekyll build
jekyll build --verbose

preview: ready
jekyll serve
jekyll serve --verbose

clean:
rm -f ch*/generated/*.png
Expand Down
5 changes: 5 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,8 @@ redcarpet:


include: [ _static, _sources]
exclude:
- "*/*.nbconvert.ipynb"
- "*/*.v2.ipynb"
- "combined_files"
- "combined.ipynb"
8 changes: 1 addition & 7 deletions ch00python/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,10 @@
title: Introduction to Python
---

The first session covers an introduction to the Python:

### Lesson 1

* Why use scripting languages?
* Python. IPython and the IPython notebook.
* Data structures: list, dictionaries, and sets.
* List comprehensions
* Functions in Python
* Modules in Python
* An introduciton to classes


* An introduciton to classes

0 comments on commit dc67a83

Please sign in to comment.