Skip to content

Commit b0204d1

Browse files
committed
added dependency in setup.py
1 parent 49d5117 commit b0204d1

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

scripts/evtx_dump_json.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# This file is part of python-evtx.
3-
# Written by AJ Read with help from evtx_dump.py file written by Willi Ballenthin.
3+
# Written by AJ Read (ajread4) with help/inspiration from the evtx_dump.py file written by Willi Ballenthin.
44
#
55
# Purpose: User can dump evtx data into JSON format to either the command line or a JSON file in new line delimited format/JSON array.
66
# Details: The JSON object is created with only the EventRecordID from the System section of the evtx XML and all of the information within the EventData section.
@@ -57,7 +57,7 @@ def main():
5757

5858
# Add information to the JSON object for this specific log
5959
json_subline.update({data_name: data_value})
60-
60+
6161
# Print the JSON object for the specific log if not requested to output to file
6262
if not args.output:
6363
print(json_subline)

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
install_requires=[
2525
'six',
2626
'hexdump==3.3',
27+
'xmltodict==0.13.0', #added deps for evtx_dump_json.py script
2728

2829
# pin deps for python 2, see #67
2930
'more_itertools==5.0.0',

0 commit comments

Comments
 (0)