mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-14 05:37:47 +01:00
6 lines
90 B
Python
6 lines
90 B
Python
|
from urllib.parse import unquote
|
||
|
|
||
|
|
||
|
def canonize_doi(doi):
|
||
|
return unquote(doi.lower())
|