class documentation

class ChunkIter:

View In Hierarchy

An iterable that will yield chunks of data. Given a file-like object as the constructor, yield chunks of read operations from that object.
Method __init__ Undocumented
Method __iter__ Undocumented
Method __next__ Undocumented
Instance Variable chunk​_size Undocumented
Instance Variable flo Undocumented
def __init__(self, flo, chunk_size=64*1024):

Undocumented

def __iter__(self):

Undocumented

def __next__(self):

Undocumented

chunk_size =

Undocumented

flo =

Undocumented