A way to automate the creation of TCG cards from a CSV table using HTML and CSS. Written in Python. Not very versatile yet as it was only designed for a very specific usecase.
- Install Docker and Docker-Compose.
sudo docker-compose up -d
. Do not use-d
if you want to see the output.- Go to
localhost:8000
in your browser.
- Make sure you have TKinter installed. You can install it with
sudo apt-get install python3-tk
. conda create -n tcg-maker python=3.11
conda activate tcg-maker
pip install -r requirements.txt
python3 -m playwright install
- If you're on Ubuntu:
sudo apt-get install libgbm1 libasound2
python3 main.py --ip localhost --port 8000
launches a web interface onlocalhost:8000
.nohup python3 main.py --ip localhost --port 8000 &
launches a web interface onlocalhost:8000
in the background.