Home | Trees | Indices | Help |
|
---|
|
A convenience class that makes it easy to open an EVTX file and start iterating the important structures. Note, this class must be used in a context statement (see the `with` keyword). Note, this class will mmap the target file, so ensure your platform supports this operation.
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|||
Inherited from |
|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
This decorator ensure that an instance of the Evtx class is used within a context statement. That is, that the `with` statement is used, or `__enter__()` and `__exit__()` are called explicitly. |
Get each of the ChunkHeaders from within this EVTX file. @rtype generator of ChunkHeader @return A generator of ChunkHeaders from this EVTX file.
|
Get each of the Records from within this EVTX file. @rtype generator of Record @return A generator of Records from this EVTX file.
|
Get a Record by record number. @type record_num: int @param record_num: The record number of the the record to fetch. @rtype Record or None @return The record request by record number, or None if the record is not found.
|
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri May 31 00:38:25 2013 | http://epydoc.sourceforge.net |