Arrayterator 1.4

Arrayterator 1.4 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 522
  • Released: Jun 6, 2007

Arrayterator 1.4 Description

This class creates a buffered iterator for reading big arrays in small contiguous blocks. The class is useful for objects stored in the filesystem.

It allows iteration over the object without reading everything in memory; instead, small blocks are read and iterated over.

The class can be used with any object that supports multidimensional slices and a copy() method, like variables from Scientific.IO.NetCDF, pynetcdf and numpy.ariables frbr />

Arrayterator Bookmark

Hyperlink code:
Hyperlink for Forum code:

Arrayterator 1.4 Script Download Notice

Top 4 Download periodically updates information of Arrayterator 1.4 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Arrayterator 1.4 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Loop over and descend into sequences

This is a function to iterate over a container and its elements that checks for recursive traps. The condition for descending into elements is highly configurable (a list of type() results, or a callable). ...
Python

Extending the logging module

... in adding new format specifiers to the logging module. In this example, it's for the user name and the name of the function that logged the message. ...
Python

Timeit module wrapper

... quick tests of your functions using the timeit module.The timeit module provides an easy way of testing the performance ... your Python code by running it in many iterations and averaging the timings. However it is not ...
Python

get date wrapper to datetime module

The datetime module only accepts inputs of time it understands. For example, the months given to it have to be in range of values 1-12. This wrapper works around that issue and enables you to move forward or backward more arbitrary units of time. It does that by changing the ...
Python

z crypt

This module show a way to simple data encryption. Characters are mapped to a key via replacement. Though simple, this is a good method for encrypting data if the data is compressed before or after the encryption process. The functions provided by this recipe are meant to be used in ...
Python