Extract report of Wufoo forms and users, using the Wufoo API V3
Set up a Python environment.
# Setup the Python version
pyenv install --skip-existing $(cat .python-version)
# Setup the virtual environment
python -m venv .venv --prompt wufoo-py$(cat .python-version)
source .venv/bin/activate
# Install the requirements
pip install -r requirements.txt
# Set base_url and api_key
cp .env-template .env
# Edit .env
# Run the report (creates users.csv and forms.csv)
python3 ./report.py
See the LICENSE file for license rights and limitations.