A command-line tool to extract and format data from the Planning Center Online (PCO) API.
First, create a new Python virtual environment in the project directory:
python3 -m venv .venvDepending on your operating system, activate the virtual environment:
Linux / macOS:
source .venv/bin/activateWindows:
.\.venv\Scripts\ActivateInstall the necessary dependencies using pip:
pip install -r requirements.txtYou can generate a template config.ini file from the command line:
python main.py --create-config(Note: Use python main.py or ./PCOScraper.py depending on your execution preference).
To bundle the application into a standalone executable using PyInstaller, run:
pyinstaller PCOScraper.spec