mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
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
|