mirror of
https://github.com/MaintainTeam/Hypatia.git
synced 2025-03-01 13:58:21 +03:00
9 lines
203 B
Python
9 lines
203 B
Python
|
import sys
|
||
|
|
||
|
database = open(sys.argv[1], "r");
|
||
|
for line in database:
|
||
|
arrSplit = line.strip().split(":");
|
||
|
strHash = arrSplit[0];
|
||
|
strName = arrSplit[2].split("-")[0];
|
||
|
print(strHash + ":0:" + strName);
|