mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-02-12 10:16:49 +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())
|