2022-11-25 09:29:39 -08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2022-11-25 09:24:55 -08:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import sqlite3
|
|
|
|
|
|
|
|
try:
|
|
|
|
shutil.rmtree("build")
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
|
|
|
os.mkdir("build")
|
|
|
|
|
|
|
|
shutil.copy("articles.db", "build/articles.db")
|
|
|
|
shutil.copy("sources.toml", "build/sources.toml")
|
|
|
|
shutil.copy("model.gptc", "build/model.gptc")
|
|
|
|
|
|
|
|
con = sqlite3.Connection("build/articles.db")
|
|
|
|
con.execute("UPDATE articles SET text = '***';")
|
|
|
|
con.commit()
|
|
|
|
con.execute("VACUUM;")
|
|
|
|
con.commit()
|
|
|
|
con.close()
|