8 lines
165 B
Python
8 lines
165 B
Python
|
#!/usr/bin/env python3
|
||
|
import sys
|
||
|
import re
|
||
|
|
||
|
for line in sys.stdin:
|
||
|
if not re.match(".* Mod performs HTTP request with URL ", line):
|
||
|
print(line, end="")
|