import sqlite3
from hashlib import sha256
-conn = sqlite3.connect("blocks_default.db")
+conn = sqlite3.connect("blocks_preloaded.db")
c = conn.cursor()
with open("pleroma_instances.txt", "r") as f:
while line := f.readline():
print(line.rstrip(), sha256(bytes(line.rstrip(), "utf-8")).hexdigest())
c.execute(f"insert into instances select \"{line.rstrip()}\", \"{sha256(bytes(line.rstrip(), 'utf-8')).hexdigest()}\"")
- conn.commit()
\ No newline at end of file
+ conn.commit()
+
+with open("other_instances.txt", "r") as f:
+ while line := f.readline():
+ print(line.rstrip(), sha256(bytes(line.rstrip(), "utf-8")).hexdigest())
+ c.execute(f"insert into instances select \"{line.rstrip()}\", \"{sha256(bytes(line.rstrip(), 'utf-8')).hexdigest()}\"")
+ conn.commit()
+
+conn.close()
\ No newline at end of file