Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 1.03 KB

README.md

File metadata and controls

45 lines (27 loc) · 1.03 KB

Tumblr blog archiver

Do you have a tumblog you've spent years curating that you'd like to archive so you can look through it offline? This may be the handy tool for you.

Disclaimer

This app is for personal use and is not meant to be deployed to a live environment. Please don't use this to make a website that is a clone of Tumblr. For more information please read the API License Agreement.

Requirements

  • Python 3.9

Setup

Set up a virtual environment. I like to use virtualenvwrapper:

mkvirtualenv --python=python3.9 yourvirtualenvname

Then set up your environment variables:

cp .example.env archiver/.env

Replace dummy values with correct credentials for accessing the Tumblr API.

Run

Apply migrations:

python ./manage.py migrate

Run the server:

python ./manage.py runserver

More info

Django docs