Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/user/tool.py

33 lines
1.4 KiB
Python
Raw Normal View History

2020-06-13 12:43:43 +00:00
import re
2020-08-12 16:01:34 +00:00
2020-08-13 12:13:58 +00:00
def gender(str3):
j = re.sub('female', '',
str3) # 炎热的夏天我气得浑身发抖手脚冰凉泪流满面我们Female怎么样才能让你们满意我们Female什么时候才能站起来什么时候我们Female才能好起来偌大的国度我只看到深深的压迫和无边的黑暗我只想要逃离
j = re.sub('male', '', j)
j = re.sub('unknown', '未知', j)
return (j)
2020-06-13 12:43:43 +00:00
def yhz(str1):
2020-08-12 16:01:34 +00:00
q = re.sub('\[', '', str1)
q = re.sub('\]', '', q)
q = re.sub(', ', '', q)
q = re.sub("'\*'", '', q)
q = re.sub("'user'", '用户', q)
q = re.sub("'autoconfirmed'", '自动确认用户', q)
q = re.sub("'grasp'", 'Gamepedia快速反滥用巡查员', q)
q = re.sub("'global_bureaucrat'", '全域行政员', q)
q = re.sub("'global_sysop'", '全域管理员', q)
q = re.sub("'hydra_staff'", 'Gamepedia职员', q)
q = re.sub("'wiki_manager'", 'Wiki经理', q)
q = re.sub("'bureaucrat'", '行政员', q)
q = re.sub("'sysop'", '管理员', q)
q = re.sub("'directors'", '向导', q)
q = re.sub("'autopatrol'", '巡查豁免者', q)
q = re.sub("'wiki_guardian'", 'Wiki守卫', q)
q = re.sub("'bot'", '机器人', q)
q = re.sub("'hydra_admin'", 'Hydra管理员', q)
q = re.sub("'Patrol'", '巡查员', q)
q = re.sub("''", '', q)
q = re.sub("''", '', q)
2020-08-13 12:13:58 +00:00
return (q)