File: README.md

package info (click to toggle)
python-autobahn 17.10.1%2Bdfsg1-7
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,452 kB
  • sloc: python: 22,598; javascript: 2,705; makefile: 497; sh: 3
file content (26 lines) | stat: -rw-r--r-- 1,155 bytes parent folder | download | duplicates (5)
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
# WebSocket programming with Autobahn on Twisted

This folder contains complete working code examples that demonstrate [WebSocket](http://crossbario.com/blog/post/websocket-why-what-can-i-use-it/) programming with **Autobahn**|Python on [Twisted](http://www.twistedmatrix.com/):

 1. [WebSocket Echo](echo)
 1. [Slow Square](slowsquare)
 1. [Testee](testee)

and

 1. [Broadcasting over WebSocket](broadcast)
 1. [WebSocket Compression](echo_compressed)
 1. [WebSocket over Twisted Endpoints](echo_endpoints)
 1. [Using HTTP Headers with WebSocket](echo_httpheaders)
 1. [WebSocket on Multicore](echo_multicore)
 1. [WebSocket as a Twisted Service](echo_service)
 1. [Running WebSocket under Twisted Web](echo_site)
 1. [Running secure WebSocket under Twisted Web](echo_site_tls)
 1. [WebSocket Echo over secure WebSocket](echo_tls)
 1. [WebSocket Echo Variants](echo_variants)
 1. [WebSocket Fallbacks](echo_wsfallbacks)
 1. [WebSocket and WSGI/Flask](echo_wsgi)
 1. [Using multiple WebSocket Protocols](multiproto)
 1. [WebSocket Pings/Pongs](ping)
 1. [Streaming WebSocket](streaming)
 1. [Wrapping Twisted Protocol/Factories over WebSocket](wrapping)