Package topo :: Package analysis
[hide private]
[frames] | no frames]

Source Code for Package topo.analysis

 1  """ 
 2  Analysis tools for Topographica, other than plotting tools. 
 3   
 4  $Id: __init__.py 9520 2008-10-24 21:49:12Z jbednar $ 
 5  """ 
 6   
 7  __version__='$Revision: 9520 $' 
 8   
 9  # Automatically discover all .py files in this directory, and import functions from basic.py.  
10  import os,fnmatch 
11  __all__ = [f.split('.py')[0] for f in os.listdir(__path__[0]) if fnmatch.fnmatch(f,'[!._]*.py')] 
12  del f,os,fnmatch 
13