lithos 0.18.4

A containerization framework for linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
import sys
import socket

print("VER",sys.version)

sock = socket.socket(fileno=3)
while True:
    s, a = sock.accept()
    s.write(b'hello')
    s.close()