7 lines
204 B
Python
7 lines
204 B
Python
|
import aiohttp
|
||
|
|
||
|
session = aiohttp.ClientSession(headers={
|
||
|
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 "
|
||
|
"(KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36"
|
||
|
})
|