Changeset 313 for trunk/src/io.py

Show
Ignore:
Timestamp:
11/10/08 14:37:36 (4 years ago)
Author:
pierre
Message:

Module docstrings for io, and fix the cv ticket

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/io.py

    r298 r313  
     1""" 
     2NeuroTools.io 
     3================== 
     4 
     5A collection of functions to handle all the inputs/outputs of the NeuroTools.signals 
     6file, used by the loaders. 
     7 
     8Classes 
     9------- 
     10 
     11FileHandler        - abstract class which should be overriden, managing how a file will load/write 
     12                     its data 
     13StandardTextFile   - object used to manipulate text representation of NeuroTools objects (spikes or 
     14                     analog signals) 
     15StandardPickleFile - object used to manipulate pickle representation of NeuroTools objects (spikes or 
     16                     analog signals) 
     17DataHandler        - object to establish the interface between NeuroTools.signals and NeuroTools.io 
     18 
     19All those objects can be used with NeuroTools.signals 
     20 
     21    >> data = StandardTextFile("my_data.dat") 
     22    >> spikes = load(data,'s') 
     23""" 
     24 
     25 
    126from NeuroTools import check_dependency 
    227