8 lines
150 B
Python
8 lines
150 B
Python
|
from hashlib import md5
|
||
|
|
||
|
|
||
|
def annotation_hash(handler, input):
|
||
|
return md5(input.encode()).hexdigest()
|
||
|
|
||
|
# def nmbr(handler, lst) -> int:
|
||
|
# leno
|