Skip to content

Instantly share code, notes, and snippets.

@easternnl
Created March 10, 2020 06:12
Show Gist options
  • Save easternnl/c1934fa04120ed2bde92fbdecbc6f768 to your computer and use it in GitHub Desktop.
Save easternnl/c1934fa04120ed2bde92fbdecbc6f768 to your computer and use it in GitHub Desktop.
Python Filter Example
with open('testrun_20200310_065041_read.jtl') as fp:
#lines = fp.readlines()
#messages = filter(lambda item : "MessageReader" in item , lines )
messages = list(filter(lambda item : "MessageReader" in item , fp.readlines() ))
print(messages)
print(len(messages))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment