File: PKG-INFO

package info (click to toggle)
python-aiohttp 0.17.2-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 2,368 kB
  • sloc: python: 19,899; makefile: 205
file content (225 lines) | stat: -rw-r--r-- 7,410 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
Metadata-Version: 1.1
Name: aiohttp
Version: 0.17.2
Summary: http client/server for asyncio
Home-page: https://github.com/KeepSafe/aiohttp/
Author: Nikolay Kim
Author-email: fafhrd91@gmail.com
License: Apache 2
Description: http client/server for asyncio
        ==============================
        
        .. image:: https://raw.github.com/KeepSafe/aiohttp/master/docs/_static/aiohttp-icon-128x128.png
          :height: 64px
          :width: 64px
          :alt: aiohttp logo
        
        .. image:: https://secure.travis-ci.org/KeepSafe/aiohttp.png
          :target:  https://secure.travis-ci.org/KeepSafe/aiohttp
          :align: right
        
        Features
        --------
        
        - Supports both client and server side of HTTP protocol.
        - Supports both client and server Web-Sockets out-of-the-box.
        - Web-server has middlewares and pluggable routing.
        
        
        Requirements
        ------------
        
        - Python >= 3.3
        - asyncio https://pypi.python.org/pypi/asyncio
        
        
        License
        -------
        
        ``aiohttp`` is offered under the Apache 2 license.
        
        
        Documentation
        -------------
        
        http://aiohttp.readthedocs.org/
        
        Source code
        ------------
        
        The latest developer version is available in a github repository:
        https://github.com/KeepSafe/aiohttp
        
        Benchmarks
        ----------
        
        If you are interested in by efficiency, AsyncIO community maintains a list of benchmarks on the official wiki:
        https://github.com/python/asyncio/wiki/Benchmarks
        
        Getting started
        ---------------
        
        Client
        ^^^^^^
        
        To retrieve something from the web:
        
        .. code-block:: python
        
          import aiohttp
          import asyncio
        
          def get_body(url):
              response = yield from aiohttp.request('GET', url)
              return (yield from response.read())
        
          if __name__ == '__main__':
              loop = asyncio.get_event_loop()
              raw_html = loop.run_until_complete(get_body('http://python.org'))
              print(raw_html)
        
        
        You can use the get command like this anywhere in your ``asyncio``
        powered program:
        
        .. code-block:: python
        
          response = yield from aiohttp.request('GET', 'http://python.org')
          body = yield from response.read()
          print(body)
        
        If you want to use timeouts for aiohttp client side please use standard
        asyncio approach:
        
        .. code-block:: python
        
           yield from asyncio.wait_for(request('GET', url), 10)
        
        
        Server
        ^^^^^^
        
        This is simple usage example:
        
        .. code-block:: python
        
            import asyncio
            from aiohttp import web
        
        
            @asyncio.coroutine
            def handle(request):
                name = request.match_info.get('name', "Anonymous")
                text = "Hello, " + name
                return web.Response(body=text.encode('utf-8'))
        
        
            @asyncio.coroutine
            def wshandler(request):
                ws = web.WebSocketResponse()
                ws.start(request)
        
                while True:
                    msg = yield from ws.receive()
        
                    if msg.tp == web.MsgType.text:
                        ws.send_str("Hello, {}".format(msg.data))
                    elif msg.tp == web.MsgType.binary:
                        ws.send_bytes(msg.data)
                    elif msg.tp == web.MsgType.close:
                        break
        
                return ws
        
        
            @asyncio.coroutine
            def init(loop):
                app = web.Application(loop=loop)
                app.router.add_route('GET', '/echo', wshandler)
                app.router.add_route('GET', '/{name}', handle)
        
                srv = yield from loop.create_server(app.make_handler(),
                                                    '127.0.0.1', 8080)
                print("Server started at http://127.0.0.1:8080")
                return srv
        
            loop = asyncio.get_event_loop()
            loop.run_until_complete(init(loop))
            loop.run_forever()
        
        CHANGES
        =======
        
        0.17.2 (08-11-2015)
        ---------------------
        
        - Don't forget to pass `data` argument forward #462
        
        - Fix multipart read bytes count #463
        
        0.17.1 (08-10-2015)
        ---------------------
        
        - Fix multidict comparsion to arbitrary abc.Mapping
        
        0.17.0 (08-04-2015)
        ---------------------
        
        - Make StaticRoute support Last-Modified and If-Modified-Since headers #386
        
        - Add Request.if_modified_since and Stream.Response.last_modified properties
        
        - Fix deflate compression when writing a chunked response #395
        
        - Request`s content-length header is cleared now after redirect from
          POST method #391
        
        - Return a 400 if server received a non HTTP content #405
        
        - Fix keep-alive support for aiohttp clients #406
        
        - Allow gzip compression in high-level server response interface #403
        
        - Rename TCPConnector.resolve and family to dns_cache #415
        
        - Make UrlDispatcher ignore quoted characters during url matching #414
          Backward-compatibility warning: this may change the url matched by
          your queries if they send quoted character (like %2F for /) #414
        
        - Use optional cchardet accelerator if present #418
        
        - Borrow loop from Connector in ClientSession if loop is not set
        
        - Add context manager support to ClientSession for session closing.
        
        - Add toplevel get(), post(), put(), head(), delete(), options(),
          patch() coroutines.
        
        - Fix IPv6 support for client API #425
        
        - Pass SSL context through proxy connector #421
        
        - Make the rule: path for add_route should start with slash
        
        - Don't process request finishing by low-level server on closed event loop
        
        - Don't override data if multiple files are uploaded with same key #433
        
        - Ensure multipart.BodyPartReader.read_chunk read all the necessary data
          to avoid false assertions about malformed multipart payload
        
        - Dont sent body for  204, 205 and 304 http exceptions #442
        
        - Correctly skip Cython compilation in MSVC not found #453
        
        - Add response factory to StaticRoute #456
        
        - Don't append trailing CRLF for multipart.BodyPartReader #454
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP