You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.7 KiB

Collective playcard generating time!

Git cheatsheet

git pull

git status

git log

git add filename.txt

git commit -m "my short summary of what has changed"

git push

Generate playcard.pdf

In [8]:
from weasyprint import HTML, CSS

HTML(filename='playcard.html').write_pdf('playcard.pdf', stylesheets=[CSS(filename='playcard.css')])
In [ ]: