Taddeus Kroes před 13 roky
rodič
revize
7cf4ddcab0
1 změnil soubory, kde provedl 9 přidání a 0 odebrání
  1. 9 0
      README.md

+ 9 - 0
README.md

@@ -0,0 +1,9 @@
+*twspy* is a standalone implementation of web sockets for Python.
+
+- The websocket.WebSocket class upgrades a regular socket to a web socket.
+- message.py contains classes that abstract messages sent over the socket.
+  Sent messages are automatically converted to frames, and received frames are
+  converted to messages. Fragmented messages are also supported.
+- The server.Server class can be used to support multiple clients to open a
+  web socket simultaneously in different threads, which is often desirable in
+  web-based applications.