[python-advocacy] py-in-the-sci blog post

Carl Karsten carl at personnelware.com
Thu Oct 8 15:49:27 CEST 2009


This seemed like a nice collection of Python related Scientific
computing infos. or something worth passing on:
http://fossee.in/blog/py-in-the-sci  - very catchy title :)

the links make a nice summary:

IPython  http://ipython.scipy.org
Sage  http://www.sagemath.org
Cython http://cython.org
NumPy http://numpy.scipy.org
SciPy.in http://scipy.in
SciPy http://www.scipy.org
matplotlib http://matplotlib.sf.net
Enthought Tool Suite (ETS) http://code.enthought.com
Traits http://code.enthought.com/projects/traits/
inversion of control http://en.wikipedia.org/wiki/Inversion_of_control
tutorial http://code.enthought.com/projects/traits/docs/html/tutorials/traits_ui_scientific_app.html
Envisage http://code.enthought.com/projects/envisage/
Mayavi  http://code.enthought.com/projects/mayavi
automatic script recording
http://www.archive.org/details/scipy09_day2_05-Prabhu_Ramachandran
Chaco http://code.enthought.com/projects/chaco/


I had fun making that list:

import urllib2
from BeautifulSoup import BeautifulSoup
page = urllib2.urlopen("http://fossee.in/blog/py-in-the-sci")
soup = BeautifulSoup(page)
for l in soup.findAll('a'):
    href=dict(l.attrs)['href']
    if href.startswith('http'):
        print l.contents[0],href


-- 
Carl K


More information about the Advocacy mailing list