# CY3761 | 2021-12-08 17:57
# 在HTML实体字符中, 最常用就是 这是表示一个空格
# 如何实现把 实体字符进行转换成正常的汉字呢?
# https://www.toolnb.com/Tools/Api/htmlende.html
"""
data: 中文
type: encode
"""
# https://www.toolnb.com/Tools/Api/htmlende.html
"""
data: 中文
type: decode
"""
import requests
def entity(data, type='en'):
apiUrl = 'https://www.toolnb.com/Tools/Api/htmlende.html' # 这个接口好用多了
type = 'encode' if type == 'en' else 'decode'
resq = requests.post(apiUrl, dict(data=data, type=type))
if resq.text and resq.status_code == 200:
return resq.json()
a = entity('中文', 'en')
b = entity(a.get('data'), 'de')
print(a, b, sep='\n')
小玩意-HTML实体字符转换
最新推荐文章于 2023-06-01 14:32:33 发布