| Home | Trees | Indices | Help | 
        
  | 
  
|---|
| 
       | 
  
>>> # check and read esp file >>> stream = open('tests/esp/test.esp', 'rb') >>> data = EspFormat.Data() >>> data.inspect(stream) >>> # do some stuff with header? >>> #data.header.... >>> data.read(stream) >>> # do some stuff...
>>> for stream, data in EspFormat.walkData('tests/esp'): ... print(stream.name) tests/esp/test.esp
>>> data = EspFormat.Data() >>> from tempfile import TemporaryFile >>> stream = TemporaryFile() >>> data.write(stream)
    
  | 
|||
| 
        EspFormat This class implements the ESP format.  | 
  |||
    
  | 
|||
        __package__ = 
     | 
  |||
| Home | Trees | Indices | Help | 
        
  | 
  
|---|
| Generated by Epydoc 3.0.1 on Mon Oct 10 19:03:24 2011 | http://epydoc.sourceforge.net |