Basic application where photos can be added to a waiting list and are periodically sent. The Swiss Post offers a service to send one free postcard per day. This app uses postcard_creator, a Python wrapper around the API of the Swiss Post service, to order the postcards automatically everyday.
# Clone the repository
git clone https://github.com/Th-Havy/PostCardList.git
cd PostCardList
# Create a virtual environment
# Either Anaconda environment
conda create -n env python=3.9
conda activate env
# Or venv
# python3 -m venv env
# source env/bin/activate
# Install requirements
pip install -r requirements.txt
# in ..../PostCardList
cd src
# Launch app (it will keep running in the background)
python main.py
- Qt Quick: UI
- postcard_creator: Python wrapper around the Postcard Creator API
- Thomas Havy