File size: 107 Bytes
5244dca |
1 2 3 4 5 |
# usage: $ zstdcat lichess_db.pgn.zst | python script.py
import sys
for line in sys.stdin:
print(line)
|
5244dca |
1 2 3 4 5 |
# usage: $ zstdcat lichess_db.pgn.zst | python script.py
import sys
for line in sys.stdin:
print(line)
|