mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-01 02:35:03 +00:00
10 lines
178 B
Python
10 lines
178 B
Python
|
|
import uwsgi
|
|
|
|
fd = uwsgi.connect("127.0.0.1:3033")
|
|
|
|
def application(e,s):
|
|
|
|
for part in uwsgi.send_message(fd, 0, 4, e, 30, e['wsgi.input'].fileno(), uwsgi.cl()):
|
|
yield part
|