mkogg.py: Fix 'self.get_mp4_metadata(self, source)'
[blog.git] / posts / Python.mdwn
1 [Python][] is a programming language designed to be easy to write and
2 maintain.  The Python philosophy is encapsulated in [the Zen of
3 Python][pep20].
4
5 Useful tidbits:
6
7 * [Hitchhiker's guide to packaging][hgp]
8 * [NumPy/SciPy documentation guidelines][numpydoc]
9 * Tarek Ziadé's [Python Packaging chapter][TZ] from [[The Architecture
10   of Open Source Applications|Software_architecture]].
11
12 [Python]: http://www.python.org/
13 [pep20]: http://www.python.org/dev/peps/pep-0020/
14 [hgp]: http://guide.python-distribute.org/introduction.html
15 [numpydoc]: https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt
16 [TZ]: http://www.aosabook.org/en/packaging.html
17
18 [[!tag tags/tools]]
19 [[!tag tags/programming]]
20 [[!tag tags/python]]