We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, it's impossible to import from evtx.parser.....why please ? how to use this one for json strings ? please
The text was updated successfully, but these errors were encountered:
Just a small mistake in the examples probably due to code/package rework.
Just remove the parser in the import line, like:
parser
from evtx import PyEvtxParser parser = PyEvtxParser("./evtx-supervisor/samples/Security_short_selected.evtx") for record in parser.records_json(): print(f'Event Record ID: {record["event_record_id"]}') print(f'Event Timestamp: {record["timestamp"]}') print(record['data']) print('------------------------------------------') Event Record ID: 7 Event Timestamp: 2016-06-29 15:25:08.822 UTC { "Event": { "#attributes": { "xmlns": "http://schemas.microsoft.com/win/2004/08/events/event" }, .....
Sorry, something went wrong.
No branches or pull requests
Hello,
it's impossible to import from evtx.parser.....why please ? how to use this one for json strings ? please
The text was updated successfully, but these errors were encountered: