Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install rpatterson.listfile

How to install rpatterson.listfile

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install rpatterson.listfile
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.1 Available View build log
Windows (64-bit)
0.1 Available View build log
Mac OS X (10.5+)
0.1 Available View build log
Linux (32-bit)
0.1 Available View build log
Linux (64-bit)
0.1 Available View build log
 
License
GPL
Dependencies
Depended by
Lastest release
version 0.1 on Jan 5th, 2011

Support list operations over lines of file-like objects.

All operations avoid iterating except when necessary. Operations that force iteration over the whole file include len() and using negative indexes. In order to avoid excess seeking, all list operations may change the position of the underlying file object.

Start with a file-like object.

>>> import cStringIO
>>> file_ = cStringIO.StringIO("""\
... foo
... bar
... baz
... qux
... """)

Wrap the file-like object in a listfile instance.

>>> from rpatterson import listfile
>>> wrapped = listfile.ListFile(file_)

Lines can be accessed by index.

>>> wrapped[0]
'foo\n'
>>> wrapped[2]
'baz\n'

Negative indexes are supported as well.

>>> wrapped[-1]
'qux\n'
>>> wrapped[-3]
'bar\n'

The length returns the number of lines.

>>> len(wrapped)
4

An index beyond the end of the file raises IndexError.

>>> wrapped[4]
Traceback (most recent call last):
IndexError: list index out of range

Retrieving a slice returns a new wrapper around the same file object.

>>> slice_ = wrapped[1:3]
>>> len(slice_)
2
>>> slice_[0]
'bar\n'
>>> slice_[1]
'baz\n'
>>> slice_ = wrapped[1:][0:2]
>>> len(slice_)
2
>>> slice_[0]
'bar\n'
>>> slice_[1]
'baz\n'

Slice stepping is also supported.

>>> slice_ = wrapped[1::2]
>>> len(slice_)
2
>>> slice_[0]
'bar\n'
>>> slice_[1]
'qux\n'

The wrappers are also iterators suitable for writelines().

>>> list(slice_)
['bar\n', 'qux\n']
>>> out = cStringIO.StringIO()
>>> out.writelines(slice_)
>>> out.getvalue()
'bar\nqux\n'

Changelog

0.1 - 2009-05-27
  • Initial release

Subscribe to package updates

Last updated Jan 5th, 2011

Download Stats

Last month:1

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.