Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/9999years/blogdeleter
https://github.com/9999years/blogdeleter
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/9999years/blogdeleter
- Owner: 9999years
- Created: 2018-03-27T17:23:54.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2020-09-26T21:02:18.000Z (over 4 years ago)
- Last Synced: 2024-11-12T07:14:17.335Z (2 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Quick Python script for deleting a Tumblr blog.
usage: blogdeleter.py [-h] [-l LOG_FILE] [-c CREDENTIAL_FILE] url
Deletes a Tumblr blog
positional arguments:
url The url of the blog to delete
optional arguments:
-h, --help show this help message and exit
-l LOG_FILE, --log-file LOG_FILE
Filename to print result HTML to if deleting fails.
Default: result.html
-c CREDENTIAL_FILE, --credential-file CREDENTIAL_FILE
Filename of a credential file; Must be a JSON file
containing an `email` key and a `password` key.
Default: creds.jsonIt does need your password. `creds.json` should look like:
{
"email": "[email protected]",
"password": "example"
}There’s a high chance of using this logging you out on the device you run it on
or maybe other devices. I don’t know. I deleted 100+ blogs with this as fast as
the requests would complete and it worked fine, I didn’t get rate-limited or
anything. But your experience may vary. Good luck!There’s also a script `delete_many.ps1` to delete a bunch of URLs at once from a
file. `blogdeleter.py` needs to log in again for every URL so this is a bad
solution.