Skip to content

Commit

Permalink
added csv file to directory
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharm committed Sep 23, 2019
1 parent a23abc1 commit cd43cce
Show file tree
Hide file tree
Showing 2 changed files with 589 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ascl_list1.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
desc = "\"" + ri['description'] + "\""
pcr = "\"" + ri["repositoryURL"] + "\""
cont = "\"" + ri["contact"].get("email") + "\""
m = hashlib.md5(bytes((el+soft+desc+pcr+cont))).hexdigest()
m = hashlib.md5(bytes((el+soft+desc+pcr+cont).encode("utf8"))).hexdigest()

output_str = s2.join([str(i), m, str(0), soft, desc, pcr, el, cont])
print(output_str.encode("utf8"))
Expand Down
Loading

0 comments on commit cd43cce

Please sign in to comment.