mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-25 18:07:34 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
14 lines
258 B
Python
14 lines
258 B
Python
from urllib.parse import unquote
|
|
|
|
|
|
def canonize_doi(doi):
|
|
return (
|
|
unquote(doi.lower())
|
|
.replace('\\n', '\n')
|
|
.replace('\n', '')
|
|
.replace('\\', '')
|
|
.strip('\'"')
|
|
.replace('\x00', '')
|
|
.strip()
|
|
)
|