A python script that automatically downloads and organizes all the fics an account has added to their library.
Using a virtual environment is recommended (optional):
mkdir venv
python -m venv venv
venv/bin/activate (or source venv/bin/activate in MacOS)Install dependencies:
pip install -r requirements.txtRun script:
python src/main.pyOptional: To create executable
pyinstaller --onefile --name WattpadBackup --paths src src/main.py