update utils.py
This commit is contained in:
parent
3520939452
commit
8251d8bc91
1 changed files with 4 additions and 2 deletions
|
@ -218,5 +218,7 @@ def bytes_to_base62(idstr: bytes) -> str:
|
||||||
Returns:
|
Returns:
|
||||||
base62
|
base62
|
||||||
"""
|
"""
|
||||||
print (binascii.hexlify(idstr))
|
print(binascii.hexlify(idstr))
|
||||||
return BASE62.encode(idstr, 22).decode()
|
res = BASE62.encode(idstr, 22).decode()
|
||||||
|
print(res)
|
||||||
|
return res
|
||||||
|
|
Loading…
Add table
Reference in a new issue