mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
9 lines
150 B
Python
Executable File
9 lines
150 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
for line in sys.stdin:
|
|
print("Key " + line, end='')
|
|
sys.stdout.flush()
|