根据代码获取ETF的名字

直接上代码

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
import requests
import json

def get_name(code):
# etf 51 开头是SH, 15 是 SZ
if code.startswith('51'):
symbol = 'SH' + code
elif code.startswith('15'):
symbol = 'SZ' + code
elif code.startswith('16'):
symbol = 'SZ' + code

headers = {
'authority': 'stock.xueqiu.com',
'accept': '*/*',
'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,ja;q=0.7,zh-TW;q=0.6',
'cookie': your cookie here,
'origin': 'https://xueqiu.com',
'referer': 'https://xueqiu.com/S/SZ162411',
'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="101", "Google Chrome";v="101"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"macOS"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-site',
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36',
}

params = (
('symbol', symbol),
('extend', 'detail'),
)

response = requests.get('https://stock.xueqiu.com/v5/stock/quote.json', headers=headers, params=params)
res = response.content
name = json.loads(res)['data']['quote']['name']
return name

# 示例
code_list = ['513050', '162411']
for code in code_list:
name = get_name(code)
print(name)

# 输出
# 中概互联网ETF
# 华宝油气LOF

代码规则

基金代码规则你知道吗? 基金代码为六位数字,很多情况下,代码比基金名称更容易记,那么基金的代码有何含义,基金代码有什么编制规则呢?下面分上市与非… - 雪球

读书笔记

生活的悲哀之处在于,我们总是老得太快,而又聪明得太慢。等到你不再修正的时候,你也就不在了。

(✪ω✪)