mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
* ➕ 添加依赖 yarl * ➕ 添加依赖 msgspec * ➖ 移除依赖 ujson * ♻️ 重构 request 使其支持分别设置代理 * ♻️ 重构 resource 接口 * ⚡️ 不再重复获取 Config * ♻️ 使用 yarl 替换 urllib.parse * ⚡️ 给 get_self_netloc 加个 cache * ✨ request 使用 proxy * ✨ 更新模板使用 proxy * 🐛 修复删除 ujson 依赖后 迁移脚本报错的bug
37 lines
573 B
Python
37 lines
573 B
Python
from re import compile
|
|
from typing import Literal
|
|
|
|
from yarl import URL
|
|
|
|
from .api.typing import ValidRank
|
|
|
|
GAME_TYPE: Literal['IO'] = 'IO'
|
|
|
|
BASE_URL = URL('https://ch.tetr.io/api/')
|
|
|
|
RANK_PERCENTILE: dict[ValidRank, float] = {
|
|
'x': 1,
|
|
'u': 5,
|
|
'ss': 11,
|
|
's+': 17,
|
|
's': 23,
|
|
's-': 30,
|
|
'a+': 38,
|
|
'a': 46,
|
|
'a-': 54,
|
|
'b+': 62,
|
|
'b': 70,
|
|
'b-': 78,
|
|
'c+': 84,
|
|
'c': 90,
|
|
'c-': 95,
|
|
'd+': 97.5,
|
|
'd': 100,
|
|
}
|
|
|
|
TR_MIN = 0
|
|
TR_MAX = 25000
|
|
|
|
USER_ID = compile(r'^[a-f0-9]{24}$')
|
|
USER_NAME = compile(r'^[a-zA-Z0-9_-]{3,16}$')
|