Export content URLs from newTumbl blog
(newTumbl Exporter)
newTumbl.com has no way to export or dump your blog, so here's a script to do it for you. This script produces a text file populated with URLs to all the content on the page you are exporting.
nT-Exporter supports dumping the following pages on nT:
The script ignores all non-post images. That means no avatars or page icons etc will be included, only those that are part of posts.
The script also ignores duplicates, as long as they are the same file on the server. A pair of posts that have the same image, but point to two different uploads will both be downloaded, but a pair of posts that have the same image, but point to the same upload (i.e. one original post and one reblog of the same post), will only download one copy.
This script does not download the content itself, as there is no reliable mechanism for downloading potentially thousands of files at once in your browser. In order to actually download the media, you will need to feed the downloaded text file into an external downloader, such as wget or JDownloader 2.
Example: wget -nc -i blogname_nT-Exporter-123456.txt
-nc makes sure that you don't download the same file more than once, in case you want to refresh your dump after some time with a new export (content filenames on nT are static)blogname_nT-Exporter-123456.txt with the filename of your dump text filewget in a loop or using parallel for concurrency, as the servers might start blocking you if you pound them with requests. It's always better to get the files one by one over not getting them at all