Differences between revisions 1 and 24 (spanning 23 versions)
Revision 1 as of 2009-07-22 15:57:48
Size: 45
Editor: qed777
Comment:
Revision 24 as of 2022-04-18 04:15:41
Size: 5134
Editor: mkoeppe
Comment: Replace section on packages included in Sage by link https://doc.sagemath.org/html/en/reference/spkg/
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== Python / Cython resources == ## page was renamed from PythonResources
= Python / Cython resources =
Line 3: Line 4:
 * [[]] == General ==

 * [[http://www.python.org | Python]] - [[http://docs.python.org | docs]], [[http://www.python.org/doc/faq/ | FAQs]], [[http://wiki.python.org/moin/ | wiki]], [[http://docs.python.org/reference/ | language]], [[http://docs.python.org/library/ | library]], [[http://docs.python.org/modindex.html | modules]], [[http://pypi.python.org/pypi | packages]], [[http://rgruet.free.fr/#QuickRef | quickref]], [[http://dir.gmane.org/gmane.comp.python.devel | python-dev]], [[http://svn.python.org/view/ | repo]], [[http://bugs.python.org/ | tracker]].

 * Library tools - [[http://docs.python.org/library/errno.html | errno]], [[http://docs.python.org/library/functools.html | functools]], [[http://docs.python.org/library/gettext.html | gettext]], [[http://docs.python.org/library/glob.html | glob]], [[http://docs.python.org/library/inspect.html | inspect]], [[http://docs.python.org/library/itertools.html | itertools]], [[http://docs.python.org/library/locale.html | locale]], [[http://docs.python.org/library/logging.html | logging]], [[http://docs.python.org/library/multiprocessing.html | multiprocessing]], [[http://docs.python.org/library/optparse.html | optparse]], [[http://docs.python.org/library/os.html | os]], [[http://docs.python.org/library/os.path.html | os.path]], [[http://docs.python.org/library/pdb.html | pdb]], [[http://docs.python.org/library/pickle.html | pickle]], [[http://docs.python.org/library/re.html | re]], [[http://docs.python.org/library/shutil.html | shutil]], [[http://docs.python.org/library/string.html | string]], [[http://docs.python.org/library/subprocess.html | subprocess]], [[http://docs.python.org/library/sys.html | sys]], [[http://docs.python.org/library/tabnanny.html | tabnanny]], [[http://docs.python.org/library/threading.html | threading]], [[http://docs.python.org/library/time.html | time]], [[http://docs.python.org/library/timeit.html | timeit]], [[http://docs.python.org/library/trace.html | trace]], [[http://docs.python.org/library/traceback.html | traceback]], [[http://docs.python.org/library/urllib2.html | urllib2]].

 * Other tools - [[http://pypi.python.org/pypi/pep8/ | pep8]], [[http://www.tarind.com/depgraph.html | py2depgraph]], [[http://pycallgraph.slowchop.com/ | pycallgraph]], [[http://pychecker.sourceforge.net/ | PyChecker]], [[http://divmod.org/trac/wiki/DivmodPyflakes | PyFlakes]], [[http://www.logilab.org/project/pylint | Pylint]], [[http://furius.ca/snakefood/ | Snakefood]], [[http://code.google.com/p/jrfonseca/wiki/XDot | XDot]].

 * [[http://www.cython.org/ | Cython]] - [[http://docs.cython.org/ | docs]], [[http://wiki.cython.org/FAQ |FAQ]], [[http://wiki.cython.org/ | wiki]], [[http://dir.gmane.org/gmane.comp.python.cython.devel | cython-dev]], [[http://hg.cython.org/ | repo]], [[http://trac.cython.org/cython_trac/ | tracker]].

== Tutorials, books, etc. ==
 * [[http://docs.python.org/tutorial/ | Official Python Tutorial]].
 * [[http://diveintopython.org/ | Dive into Python]] by M. Pilgrim.
 * [[http://openbookproject.net/thinkCSpy/ | How to Think Like a Computer Scientist: Learning with Python]] by J. Elkener, A. B. Downey, and C. Meyers.
 * [[http://www.greenteapress.com/thinkpython/ | Python for Software Design]] by A. B. Downey.

== Articles, HOWTOs, etc. ==
 * [[http://pypi.python.org/pypi/decorator/3.0.1 | decorator]] by M. Simionato.
 * [[http://docs.python.org/howto/functional.html | Functional Programming HOWTO]] by A. M. Kuchling.
 * [[http://wiki.sagemath.org/devel/FunctionalProgramming | Python Functional Programming for Mathematicians]] by M. Nguyen.
 * [[http://docs.python.org/howto/regex.html | Regular Expression HOWTO]] by A. M. Kuchling.
 * [[http://docutils.sourceforge.net/rst.html | reStructuredText / reST]].
 * [[http://www.doughellmann.com/articles/CompletelyDifferent-2008-03-linters/index.html | Static Code Analyzers]] by D. Hellmann.

== Packages included in Sage ==

see https://doc.sagemath.org/html/en/reference/spkg/

== Other packages ==
 * [[http://www.djangoproject.com/ | Django]] - Web framework - [[http://docs.djangoproject.com/en/dev/ | docs]].
 * [[http://code.google.com/appengine/ | Google App Engine]] - Web framework - [[http://code.google.com/appengine/docs/python/overview.html | docs]].
 * [[http://orbited.org/ | Orbited]] - [[http://en.wikipedia.org/wiki/Comet_%28programming%29 | Comet]] web framework - [[http://orbited.org/wiki/Documentation | docs]].
 * [[http://www.cam.cornell.edu/~rclewley/cgi-bin/moin.cgi/ | PyDSTool]] - Dynamical systems.
 * [[http://www.pydy.org/ | PyDy]] - Newtonian mechanics.
 * [[http://pyjs.org/ | Pyjamas]] - Web and desktop framework.
 * [[http://niftilib.sourceforge.net/pynifti/ | PyNIfTI]] - Medical imaging.
 * [[http://www.vips.ecs.soton.ac.uk/index.php?title=VIPS | VIPS]] - Image processing - [[http://www.vips.ecs.soton.ac.uk/index.php?title=Documentation | docs]].
 * [[http://vpython.org/ | VPython]] - Real-time 3D graphics and animation - [[http://vpython.org/contents/docs/visual/index.html | Visual docs]].

Python / Cython resources

General

Tutorials, books, etc.

Articles, HOWTOs, etc.

Packages included in Sage

see https://doc.sagemath.org/html/en/reference/spkg/

Other packages

devel/PythonCythonResources (last edited 2022-04-18 04:15:41 by mkoeppe)