These *.mkd files are now the master files for the book (i.e. I will not run the conversion any more).
To produce the PDF of the book, you will need to install LaTeX on your system. For Debian-derived (Ubuntu, Mint, etc.) Linux:
sudo apt-get install texlive-full
sudo apt-get install pandoc
For Macintosh,
https://www.tug.org/mactex/
https://www.tug.org/mactex/mactextras.html
To produce the book run
bash book.sh
The output bash book.sh
is in the file x.pdf
and x.epub
.
Note that the build scripts require Python 2
There is a continuous build server that I have on Digital Ocean that builds the PDF and epub versions of the book every hour or so.
http://do1.dr-chuck.com/pythonlearn/EN_us/pythonlearn.pdf
http://do1.dr-chuck.com/pythonlearn/EN_us/pythonlearn.epub
Just check in changes and these files will update.
This server also rebuilds any translations every hour or so.
In addition to the official book.sh1
, there are other build scripts that make
alternate versions of the book. If you make changes to the content, you
should run all these scripts and check it all into github so it ends up online.
-
phpbook.sh
will make an html/php verion of the book that is an extension of this site in../html3
- this is then checked into github. -
htmlbook.sh
will make an html verion of the book, with interactive examples embedded in trinkets. These files are inbooks/html
if you want to download or view them. -
zipbook.sh
will make two html versions of the book with Trinket branding, one with interactive examples (that require an internet connection to work) and one with syntax highlighted code blocks for completely offline viewing. A zip containing these is at/book/zips/pfe.zip
if you'd just like to download it. -
trinketbook.sh
will make the nunjucks template that we use to host the book at books.trinket.io. This is likely not of use to you unless you're looking for an example of how to get the book source into your own templating language. If you'd like to see the output of this script it's inbooks/trinket/pfe
. Also updates../trinket3
.
If you'd like to make your own build script, you can use these as examples. If your build script might have use to others, consider contributing it in a pull request. Note that each build script plays nicely with the others and the represent parallel workflows. Please don't alter any of the python scripts that are used by another script if you intend on contributing a new script.
The book.sh
script will generate the x.mobi
file with Calibre.
Just take the x.pdf
and x.mobi
files and copy them into the createspace
folder, adding a date in the filename as version and then upload them to
createspace ins kindle publishing.
If you want to contribute, feel free to fork the py4e repository and send me pull requests.
We can also use the issue tracker to coordinate if that helps.
/Chuck