mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2025-01-12 12:28:13 +00:00
8 lines
165 B
Python
Executable file
8 lines
165 B
Python
Executable file
#!/usr/bin/env python
|
|
from butterfly.escapes import html
|
|
import fileinput
|
|
import sys
|
|
|
|
with html():
|
|
for line in fileinput.input():
|
|
sys.stdout.write(line)
|