mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
14 lines
286 B
Python
Executable File
14 lines
286 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import sys
|
|
import os
|
|
import signal
|
|
import time
|
|
|
|
if __name__ == "__main__":
|
|
for line in sys.stdin:
|
|
time.sleep(5)
|
|
updated_line = line.replace("\n", "")
|
|
print(updated_line + "\t" + "Key " + updated_line, end="\n")
|
|
sys.stdout.flush()
|