Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #63591
| Path | csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <tobias.oberstein@tavendo.de> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.029 |
| X-Spam-Evidence | '*H*': 0.94; '*S*': 0.00; 'url:pypi': 0.03; 'open- source': 0.04; 'skip:[ 20': 0.04; 'subject:Python': 0.06; 'framework.': 0.09; 'url:github': 0.09; 'python': 0.11; 'client:': 0.16; 'freitag,': 0.16; 'januar': 0.16; 'twisted': 0.16; 'underlying': 0.16; 'example': 0.22; 'to:name:python- list@python.org': 0.22; 'cheers,': 0.24; 'header:In-Reply-To:1': 0.27; 'to:2**1': 0.27; 'url:mailman': 0.30; 'code': 0.31; '(on': 0.31; 'received:169.254': 0.32; 'url:python': 0.33; 'url:listinfo': 0.36; 'possible': 0.36; 'hi,': 0.36; 'similar': 0.36; 'url:org': 0.36; 'received:169': 0.37; 'application': 0.37; 'email addr:python.org': 0.37; 'starting': 0.37; 'server': 0.38; 'awesome': 0.38; 'to:addr:python-list': 0.38; 'skip:- 10': 0.38; 'von': 0.38; 'skip:b 40': 0.39; 'to:addr:python.org': 0.39; '8bit%:6': 0.40; 'release': 0.40; 'url:mail': 0.40; 'even': 0.60; 'complete': 0.62; 'received:206': 0.63; 'skip:n 10': 0.64; 'networking': 0.64; 'email name:python-list': 0.65; 'here': 0.66; 'url:0': 0.67; 'messaging': 0.68; 'gesendet:': 0.84; 'url:master': 0.84; 'von:': 0.84 |
| From | Tobias Oberstein <tobias.oberstein@tavendo.de> |
| To | Tobias Oberstein <tobias.oberstein@tavendo.de>, "python-list@python.org" <python-list@python.org> |
| Date | Thu, 9 Jan 2014 02:24:17 -0800 |
| Subject | AW: WebSocket for Python 2 and 3 on Twisted and asyncio |
| Thread-Topic | WebSocket for Python 2 and 3 on Twisted and asyncio |
| Thread-Index | Ac8IfGBFn+Cnx+02R4609GYUakBNQAEqFEWA |
| References | <634914A010D0B943A035D226786325D4446BD1EABA@EXVMBX020-12.exch020.serverdata.net> |
| In-Reply-To | <634914A010D0B943A035D226786325D4446BD1EABA@EXVMBX020-12.exch020.serverdata.net> |
| Accept-Language | de-DE, en-US |
| Content-Language | de-DE |
| X-MS-Has-Attach | |
| X-MS-TNEF-Correlator | |
| acceptlanguage | de-DE, en-US |
| Content-Type | text/plain; charset="iso-8859-1" |
| Content-Transfer-Encoding | quoted-printable |
| MIME-Version | 1.0 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.5254.1389263068.18130.python-list@python.org> (permalink) |
| Lines | 51 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1389263068 news.xs4all.nl 2853 [2001:888:2000:d::a6]:42164 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:63591 |
Show key headers only | View raw
Autobahn now also supports asyncio on Python 2! https://github.com/tavendo/AutobahnPython#python-support This is made possible by Trollius, an awesome backport of asyncio: https://pypi.python.org/pypi/trollius/0.1.2 > -----Ursprüngliche Nachricht----- > Von: Python-list [mailto:python-list- > bounces+tobias.oberstein=tavendo.de@python.org] Im Auftrag von Tobias > Oberstein > Gesendet: Freitag, 3. Januar 2014 13:08 > An: python-list@python.org > Betreff: WebSocket for Python 2 and 3 on Twisted and asyncio > > Hi, > > Autobahn provides open-source implementations of > > * The WebSocket Protocol > * The Web Application Messaging Protocol (WAMP) > > https://github.com/tavendo/AutobahnPython > https://pypi.python.org/pypi/autobahn > > Starting with the release 0.7.0, Autobahn now fully supports (with all > features) both > > * Twisted (on Python 2/3) and > * asyncio (on Python 3.3+) > > as the underlying networking framework. > > Here is a complete example of WebSocket server and client: > > Twisted: > https://github.com/tavendo/AutobahnPython/tree/master/examples/twist > ed/websocket/echo > > Asyncio: > https://github.com/tavendo/AutobahnPython/tree/master/examples/asyn > cio/websocket/echo > > The application code is very similar or even identical. > > Cheers, > /Tobias > -- > https://mail.python.org/mailman/listinfo/python-list
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
AW: WebSocket for Python 2 and 3 on Twisted and asyncio Tobias Oberstein <tobias.oberstein@tavendo.de> - 2014-01-09 02:24 -0800
csiph-web