kdt
kdt

Reputation: 28489

Websocket client library for Python 2.4?

Are there any Python 2.4 compatible websocket client libraries?

Websocket For Python requires python 2.7

Autobahn requires python 2.5 (via twisted)

Upvotes: 2

Views: 828

Answers (2)

oberstet
oberstet

Reputation: 22011

I think the last version of Twisted that supported Python 2.4 was 11.1.

You might just try if that works with Autobahn .. could. I did not try.

That being said, really .. upgrade your Py.

Upvotes: 1

Artur Czajka
Artur Czajka

Reputation: 18311

WebSockets were not around when Python 2.4 was popular.

Your options are to backport one of the libraries You mentioned, write your own, minimal version for testing purposes (not recommended) or - the best solution - update Your ancient version of Python! It's 8 years old!

Upvotes: 1

Related Questions