mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 12:51:45 +00:00
ab1c490a13
Co-authored-by: xtaodada <xtao@xtaolink.cn>
10 lines
227 B
Python
10 lines
227 B
Python
def from_url_get_authkey(url: str) -> str:
|
|
"""从 UEL 解析 authkey
|
|
:param url: URL
|
|
:return: authkey
|
|
"""
|
|
try:
|
|
return url.split("authkey=")[1].split("&")[0]
|
|
except IndexError:
|
|
return url
|