Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
26 lines (23 loc) · 996 Bytes

File metadata and controls

26 lines (23 loc) · 996 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
from setuptools import setup
from textwrap import dedent
long_description=dedent("""\
python-evtx is a pure Python parser for recent Windows Event Log files \
(those with the file extension ".evtx"). The module provides programmatic \
access to the File and Chunk headers, record templates, and event entries. \
For example, you can use python-evtx to review the event logs of Windows 7 \
systems from a Mac or Linux workstation. The structure definitions and \
parsing strategies were heavily inspired by the work of Andreas Schuster \
and his Perl implementation "Parse-Evtx".
""")
setup(
name="python-evtx"
, version="0.3.3"
, description="Pure Python parser for recent Windows event log files (.evtx)."
, long_description=long_description
, author="Willi Ballenthin"
, author_email="willi.ballenthin@gmail.com"
, url="https://github.com/williballenthin/python-evtx"
, license="Apache 2.0 License"
, packages=["Evtx"]
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.