md5func.py 240 Bytes DüzenleWeb IDE 1 2 3 4 5 6 7 8 9 10 11 import sqlite3 import hashlib def md5sum(t): return hashlib.md5(t).hexdigest() con = sqlite3.connect(":memory:") con.create_function("md5", 1, md5sum) cur = con.cursor() cur.execute("select md5(?)", ("foo",)) print(cur.fetchone()[0])