blob: cc0992a372fabb22cab303efb9d77e16abf91305 (
plain)
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
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import requests
from typing import Optional
from aiohttp import ClientSession
def request_get(url: str, params: Optional[dict] = None) -> bytes:
"""
:说明:
通过 GET 方式请求 url。
:参数:
* ``url: str``: 目标网址
* ``params: Optional[dict] = None``: 参数,若不传入则为空
:返回:
requests.content
:用法:
.. code-block:: python
request_get(url="www.demo.com", params=params)
"""
return requests.get(url, params).content
async def aio_get_bytes(url: str, headers: Optional[dict] = None):
"""
:说明:
通过 GET 以 异步 方式请求 url。
:参数:
* ``url: str``: 目标网址
* ``headers: Optional[dict] = None``: 参数,若不传入则为空
:返回:
bytes
:用法:
.. code-block:: python
aio_get_bytes(url="www.demo.com", headers=headers)
"""
async with ClientSession() as asyncSession:
async with asyncSession.get(url, headers=headers) as resp:
result = await resp.read()
return result
|