Metadata-Version: 1.1
Name: utmp
Version: 0.1
Summary: utmp/wtmp reader
Home-page: http://srcco.de/
Author: Henning Jacobs
Author-email: henning@jacobs1.de
License: Apache License 2.0
Description: ====
        utmp
        ====
        
        Library to decode/read utmp and wtmp files.
        
        Usage
        =====
        
        The ``utmp.read`` function decodes a binary utmp/wtmp stream and yields record objects:
        
        .. code-block:: python
        
            with open('/var/log/wtmp', 'rb') as fd:
                buf = fd.read()
                for entry in utmp.read(buf):
                    print(entry.time, entry.type, entry)
        
Keywords: utmp wtmp btmp last utmpx wtmpx btmpx
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: Apache Software License
