forked from prompt-toolkit/python-prompt-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoolbar.py
More file actions
executable file
·46 lines (34 loc) · 1.1 KB
/
toolbar.py
File metadata and controls
executable file
·46 lines (34 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
"""
Example of a telnet application that displays a bottom toolbar and completions
in the prompt.
"""
import logging
from asyncio import get_event_loop
from prompt_toolkit.completion import WordCompleter
from prompt_toolkit.contrib.telnet.server import TelnetServer
from prompt_toolkit.shortcuts import prompt
# Set up logging
logging.basicConfig()
logging.getLogger().setLevel(logging.INFO)
async def interact(connection):
# When a client is connected, erase the screen from the client and say
# Hello.
connection.send('Welcome!\n')
# Display prompt with bottom toolbar.
animal_completer = WordCompleter(['alligator', 'ant'])
def get_toolbar():
return 'Bottom toolbar...'
result = await prompt(
'Say something: ',
bottom_toolbar=get_toolbar,
completer=animal_completer,
async_=True)
connection.send('You said: {}\n'.format(result))
connection.send('Bye.\n')
def main():
server = TelnetServer(interact=interact, port=2323)
server.start()
get_event_loop().run_forever()
if __name__ == '__main__':
main()