Jelajahi Sumber

Added README

Taddeus Kroes 13 tahun lalu
induk
melakukan
7cf4ddcab0
1 mengubah file dengan 9 tambahan dan 0 penghapusan
  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.