mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +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()
|