Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jpadilla/tumblr-to-ghost
Tumblr exporter to Ghost importer
https://github.com/jpadilla/tumblr-to-ghost
ghost python tumblr
Last synced: 2 months ago
JSON representation
Tumblr exporter to Ghost importer
- Host: GitHub
- URL: https://github.com/jpadilla/tumblr-to-ghost
- Owner: jpadilla
- License: mit
- Created: 2013-11-03T16:30:22.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2023-11-05T03:35:46.000Z (about 1 year ago)
- Last Synced: 2024-10-12T07:26:28.485Z (3 months ago)
- Topics: ghost, python, tumblr
- Language: Python
- Homepage: https://tumblr-to-ghost.herokuapp.com
- Size: 44.9 KB
- Stars: 27
- Watchers: 4
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tumblr to Ghost
This tool takes advantage of the exact format of the exported GhostData.json via the Ugly Debug Tools. It maps your Tumblr blog posts data to this format, creating a file that you can import directly to Ghost. It also creates all your used tags from Tumblr so you can use them later in Ghost. Check out an [example](https://gist.github.com/jpadilla/7290464) export.## Installation
Installing on Heroku is the easiest option. Simply clone the repo, creat an app, and push.```
$ heroku create --buildpack https://github.com/ddollar/heroku-buildpack-multi.git
$ git push heroku master
$ heroku config:set PATH=bin:/app/.heroku/python/bin:/usr/local/bin:/usr/bin:/bin
```If you'd like to install locally, first ensure that Pandoc is installed and available.
```
$ pip install -r requirements.txt
DEBUG=True TUMBLR_API_KEY="" python web.py
```