Difference between revisions of "Python"
From LPTMS Wiki
Line 17: | Line 17: | ||
* [http://cython.org Cython] | * [http://cython.org Cython] | ||
* [http://www.pytables.org PyTables] | * [http://www.pytables.org PyTables] | ||
+ | * [http://mdp-toolkit.sourceforge.net/ Modular toolkit for Data Processing] | ||
== Miscellaneous == | == Miscellaneous == | ||
Line 23: | Line 24: | ||
* [[Interfacing C++ and Python]] | * [[Interfacing C++ and Python]] | ||
* [[Fitting data with python]] | * [[Fitting data with python]] | ||
+ | * [http://code.enthought.com/projects/mayavi/ 3D Scientific Data Visualization and Plotting] | ||
== Tips == | == Tips == |
Revision as of 12:06, 16 November 2011
Contents
documentation
- Official website
- Dive into Python
- euroscipy (scientific python community)
- Getting started with scipy
- Python comme langage scientifique
- Python et le C
Libraries
- iPython
- Standard Library
- SciPy - NumPy
- Matplotlib
- SymPy
- Cython
- PyTables
- Modular toolkit for Data Processing
Miscellaneous
- Fernando Perez page on Python
- Interfacing C++ and Python
- Fitting data with python
- 3D Scientific Data Visualization and Plotting
Tips
- adding a path to a directory containing your module files
import sys sys.path += [ "/home/username/bin/Python" ]