All Projects → codebox → Reading List Mover

codebox / Reading List Mover

Licence: mit
A Python utility for moving bookmarks/reading lists between services

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Reading List Mover

Decryptlogin
APIs for loginning some websites by using requests.
Stars: ✭ 1,861 (+1021.08%)
Mutual labels:  stackoverflow, twitter
Learning Social Media Analytics With R
This repository contains code and bonus content which will be added from time to time for the book "Learning Social Media Analytics with R" by Packt
Stars: ✭ 102 (-38.55%)
Mutual labels:  stackoverflow, twitter
Coinflict Of Interest
Browser extension to show user biases on Crypto Twitter.
Stars: ✭ 142 (-14.46%)
Mutual labels:  twitter
Mastodon Bot
a bot for mirroring Twitter/Tumblr accounts and RSS feeds on Mastodon
Stars: ✭ 158 (-4.82%)
Mutual labels:  twitter
Productive Twitter
Chrome extension: Minimal and friendly theme for productive twitter use
Stars: ✭ 148 (-10.84%)
Mutual labels:  twitter
Matsuri translation
夏色祭工坊烤推机
Stars: ✭ 144 (-13.25%)
Mutual labels:  twitter
Cardboard
A better New Tab Page with sleek google design and useful features
Stars: ✭ 152 (-8.43%)
Mutual labels:  bookmark
Twitter Streaming Api
Easily work with the Twitter Streaming API
Stars: ✭ 139 (-16.27%)
Mutual labels:  twitter
Stackanswers.vim
Vim plugin to fetch and display answers from Stack Overflow
Stars: ✭ 165 (-0.6%)
Mutual labels:  stackoverflow
Twitter Api Php
The simplest PHP Wrapper for Twitter API v1.1 calls
Stars: ✭ 1,808 (+989.16%)
Mutual labels:  twitter
Stack Overflow Buddy
A friendly, error prone coding companion
Stars: ✭ 156 (-6.02%)
Mutual labels:  stackoverflow
Simplesharingbuttons
Share to Facebook, Twitter, Google+ and other social networks using simple HTML buttons.
Stars: ✭ 147 (-11.45%)
Mutual labels:  twitter
Csscreatures
Make a creature by tweeting to @csscreatures
Stars: ✭ 144 (-13.25%)
Mutual labels:  twitter
Laravel Twitter Streaming Api
Easily work with the Twitter Streaming API in a Laravel app
Stars: ✭ 153 (-7.83%)
Mutual labels:  twitter
Twitter Sentiment Cnn
An implementation in TensorFlow of a convolutional neural network (CNN) to perform sentiment classification on tweets.
Stars: ✭ 143 (-13.86%)
Mutual labels:  twitter
Readability
visualise readability
Stars: ✭ 160 (-3.61%)
Mutual labels:  readability
Puppeteer Social Image
Create dynamic social share images using HTML + CSS via puppeteer 🎁
Stars: ✭ 141 (-15.06%)
Mutual labels:  twitter
Alfred Pinboard
Alfred Workflow for Pinboard (written in Go (golang))
Stars: ✭ 146 (-12.05%)
Mutual labels:  bookmark
Metago
MetaGo provides fast cursor movement/selection for keyboard focused users in vscode
Stars: ✭ 151 (-9.04%)
Mutual labels:  bookmark
Scrape Twitter
🐦 Access Twitter data without an API key. [DEPRECATED]
Stars: ✭ 166 (+0%)
Mutual labels:  twitter

Reading List Mover

Copy bookmarks between Instapaper, Readability, Pocket, Pinboard, Delicious, Diigo, GitHub, StackOverflow and Twitter.

Here's a small Python library to copy bookmarks/favourites between a number of online services. The library supports Instapaper, Readability, Pocket (formerly ReadItLater), Pinboard, Delicious, Diigo, GitHub*, StackOverflow* and Twitter* ('*' indicates export only).

To use the library you will need to populate your copy of the config.txt file with the details of your accounts on the services that you are going to use. In the case of Readability, Pocket, Instapaper, Diigo and Twitter you will also need to apply for an API key:

You will also need to have the oauth2 Python library installed on your system.

Here's an example showing how to copy all your bookmarks from one service to another:

Copy from Pocket to Readability

# Copy all bookmarks from Pocket to Readability
pocket = buildPocket()
readability = buildReadability()

for b in pocket.getBookmarks():
    readability.addBookmark(b)

You can also use the library to export a list of your bookmarks for use as a backup:

Export all Delicious bookmarks

# Print out all bookmarks from Delicious
delicious = buildDelicious()

for b in delicious.getBookmarks():
    print b['title'] + ': ' + b['url']
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].