Welcome to Capsulink Cleaner!
This script allows users to input a date range to delete links from their Capsulink interface after confirming final deletion following a review of the links to be deleted. Users will need to have their API keys stored safely on their machines in order to utilize this script.
This project is currently still a work-in-progress. More details can be seen in the Updates to Come section and the Improvements section.
- Ensure your API key is stored on your device. If you are on Windows, open the Termainal and type
setx CAPSULINK_API_KEY "your-api-key-here"
. If you are on Mac, open the Terminal and typeexport CAPSULINK_API_KEY="your-api-key-here"
. Please close your Terminal and restart to ensure the key is updated. You can check it by either typingecho %CAPSULINK_API_KEY%
on Windows orecho $CAPSULINK_API_KEY
on Mac. - Download the GitHub repo, navigate to the
dist
folder and double click the.exe
file to begin. (PENDING EXE FILE)
- Testing deletion
- Package into exe file
- Safeguards for date range inputs
- Python 3.12
python -m pip install requests
- Making sure input for beginning date occurs after the second input for last date in the date range. Try/except loop to handle errors here.
- Improvement needed on debugging messages.