WSGI Server on TCP
Project description
About
WSGIT is a server which runs WSGI applications on TCP not HTTP so that helps you make server of non-http-clients(such as mobile application) with wsgi applications(like django or flask). It makes mock WSGI Request from TCP to run WSGI application. It receives json response from WSGI application and sends it as bson after adds some HTTP header information in dict.
Examples
Django Example:
def index(request):
return HttpResponse(json.dumps(dict(page='index')), mimetype='application/json')
urlpatterns = patterns('',
url(r'^$', index),
)
Run Example:
$ wsgit 0:9338 djangoproject.wsgi.application
Request Example:
>>> from socket import *
>>> import bson
>>> bson.patch_socket()
>>> s = socket(AF_INET, SOCK_STREAM)
>>> s.connect(('127.0.0.1', 9338))
>>> s.sendobj({'url':'/'})
>>> print s.recvobj()
>>> {u'status': {u'reason': 'OK', u'code': '200'}, u'page': u'index'}
>>> s.close()
Changelog
2013.10.05: 0.1.2:
Command wsgit supports ssl options --keyfile and --certfile
2013.10.03: 0.1.1:
Supports SSL
2013.09.22: 0.1:
create mock environ to call wsgi application
run server with command wsgit
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file WSGIT-0.1.2.1.tar.gz
.
File metadata
- Download URL: WSGIT-0.1.2.1.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb4c12aa01989e7d464eb8c1f184baace3f7a2e23e49d436e6e08e6556ff55fa |
|
MD5 | 2a4e9d18426b6113c81cd7fa2dcce225 |
|
BLAKE2b-256 | 4f8109eb5c76a0615ac9a7f65850d100ffc77c1db7dd3d749bfa2e0fa027924b |