12 lines
484 B
Python
12 lines
484 B
Python
import asyncio
|
|
import aiohttp
|
|
import json
|
|
import re
|
|
import sys
|
|
from datetime import datetime
|
|
|
|
headers = {
|
|
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36',
|
|
'Referer': 'https://guba.eastmoney.com/',
|
|
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
|
|
'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0. |