3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 03:33:50 +01:00
dft_tools/doc/tutorials/python/reading.rst
Olivier Parcollet 3305185bee Work on doc
- remove empty parts, start to clean the tour.
- added export of _template and _static to reuse in appli doc.
- clean tutorial part. rm cookbook.
2013-08-31 15:22:36 +02:00

30 lines
1.4 KiB
ReStructuredText

Learning Python : recommended reading and references
----------------------------------------------------------
* A good set of lectures is the `Scipy lecture notes <http://scipy-lectures.github.com/>`_.
* A good starting point to learn about scientific computing with Python and related ideas is
`Software carpentry <http://software-carpentry.org>`_, which provides nice video/slides `lectures on Python <http://software-carpentry.org/4_0/python>`_
* To learn the Python language itself the recommended starting point is the standard `python tutorial <http://docs.python.org/tutorial>`_.
* Python has a large number of libraries, which can be used in combination with TRIQS. For example,
* The Python's `standard library <http://docs.python.org/library>`_ is already very rich.
* `Numpy <http://docs.scipy.org/doc/numpy/user>`_ allows to manipulate multidimensionnal arrays (cf also the `tutorial <http://www.scipy.org/Tentative_NumPy_Tutorial>`_).
* `Scipy <http://www.scipy.org>`_ includes many packages for scientific computing.
* `Matplotlib <http://matplotlib.sourceforge.net>`_ offers very nice plotting possibilities.
* `SymPy <http://sympy.org/>`_ provides some formal computing capabilities.
* `Cython <http://cython.org/>`_ is a quick way to build simple `C` modules in computationally intense case. For more complex situations we use boost.python tools.