1config BR2_PACKAGE_PYTHON_CHANNELS 2 bool "python-channels" 3 depends on BR2_INSTALL_LIBSTDCPP # python-daphne -> python-autobahn -> python-cryptography 4 depends on BR2_PACKAGE_PYTHON3 # python-daphne 5 select BR2_PACKAGE_PYTHON_ASGIREF # runtime 6 select BR2_PACKAGE_PYTHON_DAPHNE # runtime 7 select BR2_PACKAGE_PYTHON_DJANGO # runtime 8 help 9 Channels augments Django to bring WebSocket, long-poll 10 HTTP, task offloading and other async support to your 11 code, using familiar Django design patterns and a 12 flexible underlying framework that lets you not only 13 customize behaviours but also write support for your 14 own protocols and needs. 15 16 http://github.com/django/channels 17 18comment "python-channels needs a toolchain w/ C++" 19 depends on !BR2_INSTALL_LIBSTDCPP 20 depends on BR2_PACKAGE_PYTHON3 21