7 lines
112 B
Python
7 lines
112 B
Python
|
import pyperclip
|
||
|
|
||
|
from voussoirkit import pipeable
|
||
|
|
||
|
text = '\n'.join(pipeable.input('!i'))
|
||
|
pyperclip.copy(text)
|