www/py-aiohttp-wsgi: WSGI adapter for aiohttp.

Features:

 * Run WSGI applications (e.g. Django, Flask) on aiohttp.
 * Handle thousands of client connections, using asyncio.
 * Add websockets to your existing Python web app!

WWW: https://github.com/etianen/aiohttp-wsgi
This commit is contained in:
William Grzybowski 2017-06-14 17:19:32 +00:00
parent 88392015c4
commit 26e4ccd468
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=443593
4 changed files with 32 additions and 0 deletions

View file

@ -1503,6 +1503,7 @@
SUBDIR += py-WebFlash
SUBDIR += py-WebTest
SUBDIR += py-aiohttp
SUBDIR += py-aiohttp-wsgi
SUBDIR += py-albatross
SUBDIR += py-amf
SUBDIR += py-apachelog

View file

@ -0,0 +1,19 @@
# $FreeBSD$
PORTNAME= aiohttp-wsgi
PORTVERSION= 0.7.0
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wg@FreeBSD.org
COMMENT= WSGI adapter for aiohttp
LICENSE= BSD3CLAUSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>0:www/py-aiohttp
USES= python:3.4+
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1497461100
SHA256 (aiohttp-wsgi-0.7.0.tar.gz) = 9236966cb62187b6de3e88bbd38af9b3d01330830479e27c691ad7689cb0ca30
SIZE (aiohttp-wsgi-0.7.0.tar.gz) = 8503

View file

@ -0,0 +1,9 @@
WSGI adapter for aiohttp.
Features:
* Run WSGI applications (e.g. Django, Flask) on aiohttp.
* Handle thousands of client connections, using asyncio.
* Add websockets to your existing Python web app!
WWW: https://github.com/etianen/aiohttp-wsgi