2012-08-16 18:36:30 +02:00
|
|
|
from distutils.core import setup
|
|
|
|
from distutils.extension import Extension
|
|
|
|
|
|
|
|
setup(
|
2012-08-22 20:37:26 +02:00
|
|
|
name = 'python-spdylay',
|
2012-08-24 16:35:58 +02:00
|
|
|
# Also update __version__ in spdylay.pyx
|
2012-08-28 14:55:46 +02:00
|
|
|
version = '0.1.1',
|
2012-08-24 17:10:20 +02:00
|
|
|
description = 'Python SPDY library on top of Spdylay C library',
|
2012-08-22 20:37:26 +02:00
|
|
|
author = 'Tatsuhiro Tsujikawa',
|
|
|
|
author_email = 'tatsuhiro.t@gmail.com',
|
|
|
|
url = 'http://spdylay.sourceforge.net/',
|
|
|
|
keywords = [],
|
2012-08-16 18:36:30 +02:00
|
|
|
ext_modules = [Extension("spdylay",
|
|
|
|
["spdylay.c"],
|
2012-08-22 20:37:26 +02:00
|
|
|
libraries=['spdylay'])],
|
2012-08-24 17:10:20 +02:00
|
|
|
long_description="""\
|
|
|
|
Python-spdylay is a Python SPDY library on top of Spdylay C
|
|
|
|
library. It supports SPDY/2 and SPDY/3 protocol.
|
|
|
|
|
|
|
|
It does not perform any I/O operations. When the library needs them,
|
|
|
|
it calls the callback functions provided by the application. It also
|
|
|
|
does not include any event polling mechanism, so the application can
|
|
|
|
freely choose the way of handling events.
|
|
|
|
|
|
|
|
It provides almost all API Spdylay provides with Pythonic fashion.
|
|
|
|
|
|
|
|
The core library API works with Python 2 and 3. But
|
|
|
|
``ThreadedSPDYServer`` requires Python 3.3 because it uses TLS NPN
|
|
|
|
extension.
|
|
|
|
|
|
|
|
Installation
|
|
|
|
============
|
|
|
|
|
|
|
|
First install Spdylay library. You can grab a source distribution from
|
|
|
|
`sf.net download page
|
|
|
|
<http://sourceforge.net/projects/spdylay/files/stable/>`_
|
|
|
|
or `clone git repository <https://github.com/tatsuhiro-t/spdylay>`_.
|
|
|
|
|
|
|
|
See `Spdylay documentation
|
|
|
|
<http://spdylay.sourceforge.net/package_README.html>`_ for the
|
|
|
|
required packages and how to build Spdylay from git repository.
|
|
|
|
|
|
|
|
After Spdylay is installed, run ``build_ext`` command to build
|
|
|
|
extension module::
|
|
|
|
|
|
|
|
$ python setup.py build_ext
|
|
|
|
|
|
|
|
If you installed Spdylay library in other than standard location, use
|
|
|
|
``--include-dirs`` and ``--library-dirs`` to specify header file and
|
|
|
|
library locations respectively.
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
=============
|
|
|
|
|
|
|
|
See `python-spdylay documentation
|
|
|
|
<http://spdylay.sourceforge.net/python.html>`_.
|
|
|
|
|
|
|
|
Samples
|
|
|
|
=======
|
|
|
|
|
|
|
|
Here is a simple SPDY server::
|
|
|
|
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# The example SPDY server. Python 3.3 or later is required because TLS
|
|
|
|
# NPN is used in spdylay.ThreadedSPDYServer. Put private key and
|
|
|
|
# certificate file in the current working directory.
|
|
|
|
|
|
|
|
import spdylay
|
|
|
|
|
|
|
|
# private key file
|
|
|
|
KEY_FILE='server.key'
|
|
|
|
# certificate file
|
|
|
|
CERT_FILE='server.crt'
|
|
|
|
|
|
|
|
class MySPDYRequestHandler(spdylay.BaseSPDYRequestHandler):
|
|
|
|
|
|
|
|
def do_GET(self):
|
|
|
|
self.send_response(200)
|
|
|
|
self.send_header('content-type', 'text/html; charset=UTF-8')
|
|
|
|
|
|
|
|
content = '''\
|
|
|
|
<html>
|
|
|
|
<head><title>SPDY FTW</title></head>
|
|
|
|
<body>
|
|
|
|
<h1>SPDY FTW</h1>
|
|
|
|
<p>The age of HTTP/1.1 is over. The time of SPDY has come.</p>
|
|
|
|
</body>
|
|
|
|
</html>'''.encode('UTF-8')
|
|
|
|
|
|
|
|
self.wfile.write(content)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
HOST, PORT = "localhost", 3000
|
|
|
|
|
|
|
|
server = spdylay.ThreadedSPDYServer((HOST, PORT),
|
|
|
|
MySPDYRequestHandler,
|
|
|
|
cert_file=CERT_FILE,
|
|
|
|
key_file=KEY_FILE)
|
|
|
|
server.start()
|
2012-08-27 18:53:25 +02:00
|
|
|
|
|
|
|
Here is a simple SPDY client::
|
|
|
|
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# The example SPDY client. You need Python 3.3 or later because we
|
|
|
|
# use TLS NPN.
|
|
|
|
#
|
|
|
|
# Usage: spdyclient.py URL...
|
|
|
|
#
|
|
|
|
import sys
|
|
|
|
import spdylay
|
|
|
|
|
|
|
|
class MyStreamHandler(spdylay.BaseSPDYStreamHandler):
|
|
|
|
def on_header(self, nv):
|
2012-08-28 16:00:24 +02:00
|
|
|
sys.stdout.write('Stream#{}\\n'.format(self.stream_id))
|
2012-08-27 18:53:25 +02:00
|
|
|
for k, v in nv:
|
2012-08-28 16:00:24 +02:00
|
|
|
sys.stdout.write('{}: {}\\n'.format(k, v))
|
2012-08-27 18:53:25 +02:00
|
|
|
|
|
|
|
def on_data(self, data):
|
2012-08-28 16:00:24 +02:00
|
|
|
sys.stdout.write('Stream#{}\\n'.format(self.stream_id))
|
2012-08-27 18:53:25 +02:00
|
|
|
sys.stdout.buffer.write(data)
|
|
|
|
|
|
|
|
def on_close(self, status_code):
|
2012-08-28 16:00:24 +02:00
|
|
|
sys.stdout.write('Stream#{} closed\\n'.format(self.stream_id))
|
2012-08-27 18:53:25 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
uris = sys.argv[1:]
|
|
|
|
spdylay.urlfetch(uris, MyStreamHandler)
|
2012-08-24 17:10:20 +02:00
|
|
|
""",
|
2012-08-22 20:37:26 +02:00
|
|
|
classifiers = [
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
2012-08-24 17:10:20 +02:00
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Cython',
|
2012-08-22 20:37:26 +02:00
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
|
|
]
|
2012-08-16 18:36:30 +02:00
|
|
|
)
|