Echo server: Difference between revisions

m
wrong shebang for python
(typos in python implementaion)
m (wrong shebang for python)
Line 1,823:
{{works with|Python|3.5 or above}}
<lang python>
#!/usr/env/bin/env python
# $ printf 'echo\r\n' | nc localhost 12321
# echo
Line 1,862:
Using only the low-level socket and threading modules. Supports timing out inactive clients
<lang python>
#!/usr/bin/env/bin python
import socket
import threading
Anonymous user