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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
|
%global _empty_manifest_terminate_build 0
Name: python-aiohttp-asynctools
Version: 0.1.3
Release: 1
Summary: Some function and classes to help you deal with aiohttp sessions
License: MIT
URL: https://github.com/cglacet/aiohttp-sessions-helpers
Source0: https://mirrors.aliyun.com/pypi/web/packages/97/84/a8f6f8a12e76c1a8844d89c15ef32c7ef524ec8a02d2e5b8e91d5f586a21/aiohttp_asynctools-0.1.3.tar.gz
BuildArch: noarch
Requires: python3-aiohttp
Requires: python3-aiohttp-jinja2
%description
[](https://travis-ci.com/cglacet/aiohttp-sessions-helpers)
# Automatically add session management to a class
Some function and classes to help you deal with aiohttp client sessions. This is made after this [discussion](https://github.com/aio-libs/aiohttp/pull/1468). This works for decorating both coroutines and asynchronous generators methods.
## Installation
```bash
pip install aiohttp-asynctools
```
## Usage
Automatically attach an `aiohttp.ClientSession` object to your class in a fast and clean way with the following 3 steps:
1. Import `asynctools`
2. Make your class extend `asynctools.AbstractSessionContainer`
3. Decorate asynchronous methods/generators with `@asynctools.attach_session` to attach a `session` argument.
Optionaly, you can also cutomize the instanciation of `AbstractSessionContainer` in your `__init__` method.
Here is what it looks like for a simple example using a [math API](http://api.mathjs.org/v4):
```python
import asynctools # 1.
MATH_API_URL = "http://api.mathjs.org/v4"
class MathRequests(asynctools.AbstractSessionContainer): # 2.
@asynctools.attach_session # 3.
async def get_text(self, url, params, session=None):
async with session.get(url, params=params) as response:
return await response.text()
async def get_square(self, value):
params = {
"expr" : f"{value}^2"
}
return await self.get_text(MATH_API_URL, params=params)
```
You are now ready to instantiate a `MathRequests` context manager and start requesting the math service using a single `aiohttp` `session` (the session is hidden from the `MathRequests` user). Here is how you could build a math server using the new class (basically we wrote a wrapper for the Math API and now we expose our own API).
```python
from aiohttp import web
routes = web.RouteTableDef()
@routes.get('/squares')
async def squares(request):
values = request.query['values'].split(',')
async with MathRequests() as maths:
squares = await asyncio.gather(*(maths.get_square(v) for v in values))
return {
'values': values,
'squares': squares,
}
maths_app = web.Application()
maths_app.add_routes(routes)
if __name__ == "__main__":
web.run_app(app)
```
We are now ready to test:
```bash
curl 'http://localhost:8080/squares?values=1,2,3,4,5,6,7,8,9,10'
```
Which should output:
```json
{
"values": ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"],
"results": ["1", "4", "9", "16", "25", "36", "49", "64", "81", "100"]
}
```
A more complete example can be found in [example](example).
## Details and explanation
### What?
The goal is to help aiohttp users to build classes that will contain sessions object in an efficient/clean way.
### Why?
If you want to build class that will make requests using **aiohttp client**, at some point you'll have to deal with sessions.
The [quickstart guide for aiohttp client](https://aiohttp.readthedocs.io/en/stable/client_quickstart.html#make-a-request) has an important note about them.
>```python
>import aiohttp
>
>async with aiohttp.ClientSession() as session:
> async with session.get('http://httpbin.org/get') as resp:
> print(resp.status)
> print(await resp.text())
>```
>
> ...
>
> ### Note
> Don’t create a session per request. Most likely you need a session per application which performs all requests altogether.
>
> More complex cases may require a session per site, e.g. one for Github and other one for Facebook APIs. Anyway making a session for every request is a **very bad** idea.
>
>A session contains a connection pool inside. Connection reusage and keep-alives (both are on by default) may speed up total performance.
The goal is to have a single session attached to a given object, this is what this module offers with only 3 (very simple) lines of code.
### How?
The module provides an abstract class `AbstractSessionContainer` and a method decorator `attach_session` that you'll have to use to automatically add session management to an existing class.
Say you have a class `MathRequests` that has a single method `get_square` that returns the square value of the given parameter using an `aiohttp.get` request to the math API service located at http://api.mathjs.org/v4. Here is what your class look like for now:
```python
import asyncio, aiohttp
routes = aiohttp.web.RouteTableDef()
class MathRequests:
async def get_text(self, url, params):
# Remember "making a session for every request is a very bad idea"
async with aiohttp.ClientSession() as session:
async with session.get(url, params=params) as response:
return await response.text()
async def get_square(self, value):
return await self.get_text("http://api.mathjs.org/v4", params={'expr' : '{}^2'.format(value)})
@routes.get('/squares')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
maths = MathRequests()
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
return web.json_response({ 'values':values, 'results':results })
maths_app = aiohttp.web.Application()
maths_app.add_routes(routes)
```
As `aiohttp` documentation says, this is a bad idea to implement `MathRequests` this way, we need to share a single session for all `get_square` requests.
A simple solution to this would be to store a client session object within `MathRequests`, which you could initiate in the `__init__` method. Saddly this is not a very clean solution as aiohttp sessions should be instantiated in a synchronous way (outside the even loop). See [aiohttp#1468](https://github.com/aio-libs/aiohttp/pull/1468) for more information about _creation a session outside of coroutine_.
Here is the final solution using the provided module `asynctools`:
```python
import asyncio
import asynctools # 1) Import
# 2) Extends the abstract class that will handle the aiohttp session for you:
class MathRequests(asynctools.AbstractSessionContainer):
def __init__(self):
# 2') (optional) initilise with any 'aiohttp.ClientSession' argument
super().__init__(raise_for_status=True)
# 3) This decorator will automatically fill the session argument:
@asynctools.attach_session
async def get_text(self, url, params, session=None): # 4) Add the 'session' argument
async with session.get(url, params=params) as response:
return await response.text()
async def get_square(self, value):
return await self.get_text("http://api.mathjs.org/v4", params={'expr' : '{}^2'.format(value)})
from aiohttp import web
routes = web.RouteTableDef()
@routes.get('/squares')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
async with MathRequests() as maths: # Use the object as a context manager (async with <context_manager> as <name>)
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
return web.json_response({ 'values':values, 'results':results })
maths_app = web.Application()
maths_app.add_routes(routes)
```
Using the `MathRequests` as a [context manager](https://docs.python.org/3/library/stdtypes.html#typecontextmanager) is the best option (as it will make sure the session is correctly started and closed), but it's not the only option, you can also keep your code as it was before:
```python
@routes.get('/squares')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
maths = MathRequests()
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
return web.json_response({ 'values':values, 'results':results })
```
In this case, no session is attached to the `maths` object and every call to `get_square` will use a different session (which is as bad as it was with the old version of `MathRequests`). What you can do to avoid that is to **explicitly open a "math session"** which will make all `get_square` calls to use the same session (also, don't forget to close the session when you are done):
```python
@routes.get('/maths')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
maths = MathRequests()
maths.start_session()
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
maths.close_session()
return web.json_response({ 'values':values, 'results':results })
```
%package -n python3-aiohttp-asynctools
Summary: Some function and classes to help you deal with aiohttp sessions
Provides: python-aiohttp-asynctools
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pip
%description -n python3-aiohttp-asynctools
[](https://travis-ci.com/cglacet/aiohttp-sessions-helpers)
# Automatically add session management to a class
Some function and classes to help you deal with aiohttp client sessions. This is made after this [discussion](https://github.com/aio-libs/aiohttp/pull/1468). This works for decorating both coroutines and asynchronous generators methods.
## Installation
```bash
pip install aiohttp-asynctools
```
## Usage
Automatically attach an `aiohttp.ClientSession` object to your class in a fast and clean way with the following 3 steps:
1. Import `asynctools`
2. Make your class extend `asynctools.AbstractSessionContainer`
3. Decorate asynchronous methods/generators with `@asynctools.attach_session` to attach a `session` argument.
Optionaly, you can also cutomize the instanciation of `AbstractSessionContainer` in your `__init__` method.
Here is what it looks like for a simple example using a [math API](http://api.mathjs.org/v4):
```python
import asynctools # 1.
MATH_API_URL = "http://api.mathjs.org/v4"
class MathRequests(asynctools.AbstractSessionContainer): # 2.
@asynctools.attach_session # 3.
async def get_text(self, url, params, session=None):
async with session.get(url, params=params) as response:
return await response.text()
async def get_square(self, value):
params = {
"expr" : f"{value}^2"
}
return await self.get_text(MATH_API_URL, params=params)
```
You are now ready to instantiate a `MathRequests` context manager and start requesting the math service using a single `aiohttp` `session` (the session is hidden from the `MathRequests` user). Here is how you could build a math server using the new class (basically we wrote a wrapper for the Math API and now we expose our own API).
```python
from aiohttp import web
routes = web.RouteTableDef()
@routes.get('/squares')
async def squares(request):
values = request.query['values'].split(',')
async with MathRequests() as maths:
squares = await asyncio.gather(*(maths.get_square(v) for v in values))
return {
'values': values,
'squares': squares,
}
maths_app = web.Application()
maths_app.add_routes(routes)
if __name__ == "__main__":
web.run_app(app)
```
We are now ready to test:
```bash
curl 'http://localhost:8080/squares?values=1,2,3,4,5,6,7,8,9,10'
```
Which should output:
```json
{
"values": ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"],
"results": ["1", "4", "9", "16", "25", "36", "49", "64", "81", "100"]
}
```
A more complete example can be found in [example](example).
## Details and explanation
### What?
The goal is to help aiohttp users to build classes that will contain sessions object in an efficient/clean way.
### Why?
If you want to build class that will make requests using **aiohttp client**, at some point you'll have to deal with sessions.
The [quickstart guide for aiohttp client](https://aiohttp.readthedocs.io/en/stable/client_quickstart.html#make-a-request) has an important note about them.
>```python
>import aiohttp
>
>async with aiohttp.ClientSession() as session:
> async with session.get('http://httpbin.org/get') as resp:
> print(resp.status)
> print(await resp.text())
>```
>
> ...
>
> ### Note
> Don’t create a session per request. Most likely you need a session per application which performs all requests altogether.
>
> More complex cases may require a session per site, e.g. one for Github and other one for Facebook APIs. Anyway making a session for every request is a **very bad** idea.
>
>A session contains a connection pool inside. Connection reusage and keep-alives (both are on by default) may speed up total performance.
The goal is to have a single session attached to a given object, this is what this module offers with only 3 (very simple) lines of code.
### How?
The module provides an abstract class `AbstractSessionContainer` and a method decorator `attach_session` that you'll have to use to automatically add session management to an existing class.
Say you have a class `MathRequests` that has a single method `get_square` that returns the square value of the given parameter using an `aiohttp.get` request to the math API service located at http://api.mathjs.org/v4. Here is what your class look like for now:
```python
import asyncio, aiohttp
routes = aiohttp.web.RouteTableDef()
class MathRequests:
async def get_text(self, url, params):
# Remember "making a session for every request is a very bad idea"
async with aiohttp.ClientSession() as session:
async with session.get(url, params=params) as response:
return await response.text()
async def get_square(self, value):
return await self.get_text("http://api.mathjs.org/v4", params={'expr' : '{}^2'.format(value)})
@routes.get('/squares')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
maths = MathRequests()
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
return web.json_response({ 'values':values, 'results':results })
maths_app = aiohttp.web.Application()
maths_app.add_routes(routes)
```
As `aiohttp` documentation says, this is a bad idea to implement `MathRequests` this way, we need to share a single session for all `get_square` requests.
A simple solution to this would be to store a client session object within `MathRequests`, which you could initiate in the `__init__` method. Saddly this is not a very clean solution as aiohttp sessions should be instantiated in a synchronous way (outside the even loop). See [aiohttp#1468](https://github.com/aio-libs/aiohttp/pull/1468) for more information about _creation a session outside of coroutine_.
Here is the final solution using the provided module `asynctools`:
```python
import asyncio
import asynctools # 1) Import
# 2) Extends the abstract class that will handle the aiohttp session for you:
class MathRequests(asynctools.AbstractSessionContainer):
def __init__(self):
# 2') (optional) initilise with any 'aiohttp.ClientSession' argument
super().__init__(raise_for_status=True)
# 3) This decorator will automatically fill the session argument:
@asynctools.attach_session
async def get_text(self, url, params, session=None): # 4) Add the 'session' argument
async with session.get(url, params=params) as response:
return await response.text()
async def get_square(self, value):
return await self.get_text("http://api.mathjs.org/v4", params={'expr' : '{}^2'.format(value)})
from aiohttp import web
routes = web.RouteTableDef()
@routes.get('/squares')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
async with MathRequests() as maths: # Use the object as a context manager (async with <context_manager> as <name>)
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
return web.json_response({ 'values':values, 'results':results })
maths_app = web.Application()
maths_app.add_routes(routes)
```
Using the `MathRequests` as a [context manager](https://docs.python.org/3/library/stdtypes.html#typecontextmanager) is the best option (as it will make sure the session is correctly started and closed), but it's not the only option, you can also keep your code as it was before:
```python
@routes.get('/squares')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
maths = MathRequests()
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
return web.json_response({ 'values':values, 'results':results })
```
In this case, no session is attached to the `maths` object and every call to `get_square` will use a different session (which is as bad as it was with the old version of `MathRequests`). What you can do to avoid that is to **explicitly open a "math session"** which will make all `get_square` calls to use the same session (also, don't forget to close the session when you are done):
```python
@routes.get('/maths')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
maths = MathRequests()
maths.start_session()
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
maths.close_session()
return web.json_response({ 'values':values, 'results':results })
```
%package help
Summary: Development documents and examples for aiohttp-asynctools
Provides: python3-aiohttp-asynctools-doc
%description help
[](https://travis-ci.com/cglacet/aiohttp-sessions-helpers)
# Automatically add session management to a class
Some function and classes to help you deal with aiohttp client sessions. This is made after this [discussion](https://github.com/aio-libs/aiohttp/pull/1468). This works for decorating both coroutines and asynchronous generators methods.
## Installation
```bash
pip install aiohttp-asynctools
```
## Usage
Automatically attach an `aiohttp.ClientSession` object to your class in a fast and clean way with the following 3 steps:
1. Import `asynctools`
2. Make your class extend `asynctools.AbstractSessionContainer`
3. Decorate asynchronous methods/generators with `@asynctools.attach_session` to attach a `session` argument.
Optionaly, you can also cutomize the instanciation of `AbstractSessionContainer` in your `__init__` method.
Here is what it looks like for a simple example using a [math API](http://api.mathjs.org/v4):
```python
import asynctools # 1.
MATH_API_URL = "http://api.mathjs.org/v4"
class MathRequests(asynctools.AbstractSessionContainer): # 2.
@asynctools.attach_session # 3.
async def get_text(self, url, params, session=None):
async with session.get(url, params=params) as response:
return await response.text()
async def get_square(self, value):
params = {
"expr" : f"{value}^2"
}
return await self.get_text(MATH_API_URL, params=params)
```
You are now ready to instantiate a `MathRequests` context manager and start requesting the math service using a single `aiohttp` `session` (the session is hidden from the `MathRequests` user). Here is how you could build a math server using the new class (basically we wrote a wrapper for the Math API and now we expose our own API).
```python
from aiohttp import web
routes = web.RouteTableDef()
@routes.get('/squares')
async def squares(request):
values = request.query['values'].split(',')
async with MathRequests() as maths:
squares = await asyncio.gather(*(maths.get_square(v) for v in values))
return {
'values': values,
'squares': squares,
}
maths_app = web.Application()
maths_app.add_routes(routes)
if __name__ == "__main__":
web.run_app(app)
```
We are now ready to test:
```bash
curl 'http://localhost:8080/squares?values=1,2,3,4,5,6,7,8,9,10'
```
Which should output:
```json
{
"values": ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"],
"results": ["1", "4", "9", "16", "25", "36", "49", "64", "81", "100"]
}
```
A more complete example can be found in [example](example).
## Details and explanation
### What?
The goal is to help aiohttp users to build classes that will contain sessions object in an efficient/clean way.
### Why?
If you want to build class that will make requests using **aiohttp client**, at some point you'll have to deal with sessions.
The [quickstart guide for aiohttp client](https://aiohttp.readthedocs.io/en/stable/client_quickstart.html#make-a-request) has an important note about them.
>```python
>import aiohttp
>
>async with aiohttp.ClientSession() as session:
> async with session.get('http://httpbin.org/get') as resp:
> print(resp.status)
> print(await resp.text())
>```
>
> ...
>
> ### Note
> Don’t create a session per request. Most likely you need a session per application which performs all requests altogether.
>
> More complex cases may require a session per site, e.g. one for Github and other one for Facebook APIs. Anyway making a session for every request is a **very bad** idea.
>
>A session contains a connection pool inside. Connection reusage and keep-alives (both are on by default) may speed up total performance.
The goal is to have a single session attached to a given object, this is what this module offers with only 3 (very simple) lines of code.
### How?
The module provides an abstract class `AbstractSessionContainer` and a method decorator `attach_session` that you'll have to use to automatically add session management to an existing class.
Say you have a class `MathRequests` that has a single method `get_square` that returns the square value of the given parameter using an `aiohttp.get` request to the math API service located at http://api.mathjs.org/v4. Here is what your class look like for now:
```python
import asyncio, aiohttp
routes = aiohttp.web.RouteTableDef()
class MathRequests:
async def get_text(self, url, params):
# Remember "making a session for every request is a very bad idea"
async with aiohttp.ClientSession() as session:
async with session.get(url, params=params) as response:
return await response.text()
async def get_square(self, value):
return await self.get_text("http://api.mathjs.org/v4", params={'expr' : '{}^2'.format(value)})
@routes.get('/squares')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
maths = MathRequests()
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
return web.json_response({ 'values':values, 'results':results })
maths_app = aiohttp.web.Application()
maths_app.add_routes(routes)
```
As `aiohttp` documentation says, this is a bad idea to implement `MathRequests` this way, we need to share a single session for all `get_square` requests.
A simple solution to this would be to store a client session object within `MathRequests`, which you could initiate in the `__init__` method. Saddly this is not a very clean solution as aiohttp sessions should be instantiated in a synchronous way (outside the even loop). See [aiohttp#1468](https://github.com/aio-libs/aiohttp/pull/1468) for more information about _creation a session outside of coroutine_.
Here is the final solution using the provided module `asynctools`:
```python
import asyncio
import asynctools # 1) Import
# 2) Extends the abstract class that will handle the aiohttp session for you:
class MathRequests(asynctools.AbstractSessionContainer):
def __init__(self):
# 2') (optional) initilise with any 'aiohttp.ClientSession' argument
super().__init__(raise_for_status=True)
# 3) This decorator will automatically fill the session argument:
@asynctools.attach_session
async def get_text(self, url, params, session=None): # 4) Add the 'session' argument
async with session.get(url, params=params) as response:
return await response.text()
async def get_square(self, value):
return await self.get_text("http://api.mathjs.org/v4", params={'expr' : '{}^2'.format(value)})
from aiohttp import web
routes = web.RouteTableDef()
@routes.get('/squares')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
async with MathRequests() as maths: # Use the object as a context manager (async with <context_manager> as <name>)
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
return web.json_response({ 'values':values, 'results':results })
maths_app = web.Application()
maths_app.add_routes(routes)
```
Using the `MathRequests` as a [context manager](https://docs.python.org/3/library/stdtypes.html#typecontextmanager) is the best option (as it will make sure the session is correctly started and closed), but it's not the only option, you can also keep your code as it was before:
```python
@routes.get('/squares')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
maths = MathRequests()
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
return web.json_response({ 'values':values, 'results':results })
```
In this case, no session is attached to the `maths` object and every call to `get_square` will use a different session (which is as bad as it was with the old version of `MathRequests`). What you can do to avoid that is to **explicitly open a "math session"** which will make all `get_square` calls to use the same session (also, don't forget to close the session when you are done):
```python
@routes.get('/maths')
async def index(request):
tasks = []
data = request.query
values = data['values'].split(',')
maths = MathRequests()
maths.start_session()
results = await asyncio.gather(*[ maths.get_square(v) for v in values ])
maths.close_session()
return web.json_response({ 'values':values, 'results':results })
```
%prep
%autosetup -n aiohttp_asynctools-0.1.3
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-aiohttp-asynctools -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.3-1
- Package Spec generated
|