A simple commandline tool to bulk delete messages/posts from your social media accounts. Please beware that this tool might be against TOS of some services. Use at your own risk.
Python 3.6+ is required. For instructions on installing Python and pip see "The Hitchhiker's Guide to Python" Installation Guides
Once installed, run the following to install asanitize
.
pip install git+https://github.com/gohanko/asanitize
Users can visit the main and service specific help page via:
python -m asanitize -h
, for main page.python -m asanitize <service> -h
, for service specific help page.
NOTE: Currently supported services are
discord
.
To automate tasks, asanitize
supports configuration files. Take the following step to set, and run the application with configuration files:
- The content of the configuration file should be in
json
format. For example:
{
"discord": {
"token": "",
"channels_to_sanitize": [],
"fastmode": false
},
"reddit": {
"client_id": "",
"client_secret": "",
"username": "",
"password": ""
}
}
- Set the configuration file location using the
--useconfig
flag. For example,python -m asanitize <service> --useconfig <location>
.
This project is license under GNU General Public License v3.0. For more information, see LICENSE
.