Add counts
This commit is contained in:
parent
22ecb7c4ca
commit
0cdf3f4a98
3
main.py
3
main.py
|
@ -76,6 +76,7 @@ async def print():
|
|||
subprocess.run(f"convert {png_filename} -resize 696x -background white -alpha remove -alpha off -monochrome -threshold 20% {png_filename}", shell=True, check=True)
|
||||
#if not os.path.exists(quad_png_filename):
|
||||
# subprocess.run("magick -size 696x xc:white ({png_filename} -resize 50%x)
|
||||
for _ in range(int((await request.form)["count"])):
|
||||
printit(png_filename)
|
||||
cur.execute("""INSERT OR REPLACE INTO counts(what, count)
|
||||
VALUES (:what,
|
||||
|
@ -85,6 +86,8 @@ async def print():
|
|||
0) + 1);
|
||||
""", dict(what=lol))
|
||||
db.commit()
|
||||
with open("counts.txt", "a") as f:
|
||||
f.write(f"{lol}\n")
|
||||
|
||||
return redirect("/")
|
||||
if __name__ == "__main__":
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
{{ counts.get(w.name, 0) }}
|
||||
</div>
|
||||
<form method="POST">
|
||||
<input type="number" min="1" max="10" value="1" name="count">
|
||||
<button type="submit" name="w" value="{{ w.name }}">Print</button>
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue