Difference between revisions of "Python"
From Christoph's Personal Wiki
(→See also) |
|||
Line 38: | Line 38: | ||
*[http://www.mcnabbs.org/andrew/smug/ Smug] — a wiki built with [[git]] as the backend (also using Python and [http://djangoproject.com/ Djanjo]) | *[http://www.mcnabbs.org/andrew/smug/ Smug] — a wiki built with [[git]] as the backend (also using Python and [http://djangoproject.com/ Djanjo]) | ||
*[http://www.newartisans.com/blog_files/git.versioned.data.store.php#unique-entry-id-69 gitshelve] — using [[git]] as a versioned data store in Python | *[http://www.newartisans.com/blog_files/git.versioned.data.store.php#unique-entry-id-69 gitshelve] — using [[git]] as a versioned data store in Python | ||
+ | *[http://www.ics.uci.edu/~eppstein/PADS/ PADS] — a library of Python Algorithms and Data Structures implemented by David Eppstein of the University of California, Irvine. | ||
===Graphics=== | ===Graphics=== | ||
*[http://www.pythonware.com/products/pil/ Python Imaging Library (PIL)] | *[http://www.pythonware.com/products/pil/ Python Imaging Library (PIL)] |
Revision as of 04:08, 29 June 2008
Python is an interpreted programming language created by Guido van Rossum in 1990. Python is fully dynamically typed and uses automatic memory management; it is thus similar to Perl, Ruby, Scheme, Smalltalk, and Tcl. Python is developed as an open source project, managed by the non-profit Python Software Foundation.
see: NumPy for tips on using this module.
Contents
Version history
- Python 2.5.2 — 2008-02-22
- Python 2.5.1 — 2007-04-18
- Python 2.4.4 — 2006-10-18
- Python 2.4.2 — 2005-09-28
Properties
- Python is strongly typed (i.e. types are enforced);
- dynamically, implicitly typed (i.e. you don't have to declare variables);
- case sensitive (i.e. var and VAR are two different variables); and
- object-oriented (i.e. everything is an object).
Reserved words (native to Python)
and elif global or assert else if pass break except import print class exec in raise continue finally is return def for lambda try del from not while
See also
- pypi - Python Package Index
- SciPy
- NumPy
- Parallel Python ("pp" module)
- TurboGears
- PyEphem — an astronomy library for Python
- urlgrabber
- Pyparsing (with Pyparsing introduction: BNF to code and wikipedia:Backus–Naur form)
- Beautiful Soup — a Python HTML/XML parser designed for quick turnaround projects like screen-scraping.
- pyRXP — an XML parser
- Pexpect — expect for Python
- Smug — a wiki built with git as the backend (also using Python and Djanjo)
- gitshelve — using git as a versioned data store in Python
- PADS — a library of Python Algorithms and Data Structures implemented by David Eppstein of the University of California, Irvine.
Graphics
- Python Imaging Library (PIL)
- Matplotlib — a python 2D plotting library which produces publication quality figures
- python(x,y) — a free scientific and engineering development software for numerical computations, data analysis and data visualization
- SAGE: Open Source Mathematics Software
- Python Google Chart (maps)
- SymPy — a Python library for symbolic mathematics.
Bioinformatics
- BioPython
- PySAT: Python Seqeuence Analysis Tools
- Noah Hoffman code
- Blast Parser — by Arne Muller
- Leighton Pritchard code
- PISE
- NodeBox: Graph
External links
- Python.org — Official site
- PythonInfo Wiki
- Perl/Python Phrasebook
- Rosetta Code
- Yet Another Rosetta Code Problem (Perl, Ruby, Python, Haskell, ...)
- Python 2.5 Quick Reference
- Byte of Python
- pydoc.org: Python Documentation Online
- PerformancePython
- MPI for Python
- Pyxer — a Python AJAX Server/ Framework
- Debugging in Python
- wikipedia:python
Online books/tutorials
- Building Skills in Python: A Programmer's Introduction to Python — by Steven F. Lott (2007)
- Beginning Python for Bioinformatics
- Python course in Bioinformatics
- Learn Python in 10 minutes — from Poromenos's Stuff
- Dive Into Python — Python from novice to pro — download entire eBook.
- Python 101 cheat sheet
- Python HOWTOs