对柴油网络图书馆感兴趣(http://diesel.io)。它会在python 3.3上运行吗?
答案 0 :(得分:0)
此时Diesel似乎不支持Python 3.3(或任何3.X版本)。
来源:https://github.com/jamwt/diesel/blob/master/setup.py
import select, sys, os
assert sys.version_info >= (2, 6), \
"Diesel requires python 2.6 (or greater 2.X release)"
答案 1 :(得分:0)
https://github.com/jamwt/diesel/blob/master/diesel/protocols/websockets.py
此模块使用xrange
,在Python 3中删除了。显然,Diesel不支持开箱即用的Python 3。