Package fabio :: Module file_series :: Class numbered_file_series
[hide private]
[frames] | no frames]

Class numbered_file_series

source code

object --+        
         |        
      list --+    
             |    
   file_series --+
                 |
                numbered_file_series

mydata0001.edf = "mydata" + 0001 + ".edf" mydata0002.edf = "mydata" + 0002 + ".edf" mydata0003.edf = "mydata" + 0003 + ".edf"

Instance Methods [hide private]
new empty list
__init__(self, stem, first, last, extension, digits=4, padding='Y', step=1)
stem - first part of the name...
source code

Inherited from file_series: current, current_image, current_object, first, first_image, first_object, jump, jump_image, jump_object, last, last_image, last_object, len, next, next_image, next_object, previous, previous_image, previous_object

Inherited from list: __add__, __contains__, __delitem__, __delslice__, __eq__, __ge__, __getattribute__, __getitem__, __getslice__, __gt__, __iadd__, __imul__, __iter__, __le__, __len__, __lt__, __mul__, __ne__, __new__, __repr__, __reversed__, __rmul__, __setitem__, __setslice__, __sizeof__, append, count, extend, index, insert, pop, remove, reverse, sort

Inherited from object: __delattr__, __format__, __reduce__, __reduce_ex__, __setattr__, __str__, __subclasshook__

Class Variables [hide private]

Inherited from list: __hash__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, stem, first, last, extension, digits=4, padding='Y', step=1)
(Constructor)

source code 

stem - first part of the name
step - in case of every nth file
padding - possibility for specifying that numbers are not padded
          with zeroes up to digits

Returns: new empty list
Overrides: object.__init__