Automated worship slide creator for FCNABC's English Congregation.
Refer to "Auto PPT Maker Instructions.docx" for user guide.
- Open a command console
- Install poetry via
pip install --upgrade poetry
- Navigate to project directory (where this README file is)
- Install virtual environment via:
poetry update
To run a Python file, either:
- Enter the virtual environment (avoids the usage of "poetry run") via the following command and then execute python as normally (i.e., python [python file])
poetry shell
- Or execute directly via
poetry run python [python file]
After navigating to the AutoPPTMaker subfolder, the main application can be executed via:
poetry run python SlideMaker.py
To export as .exe, use pyinstaller via:
poetry run pyinstaller --onefile .\AutoPPTMaker\SlideMaker.py --path=".\AutoPPTMaker"