Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codebox/reading-list-mover
A Python utility for moving bookmarks/reading lists between services
https://github.com/codebox/reading-list-mover
bookmark delicious diigo instapaper pinboard pocket python readability stackoverflow twitter
Last synced: 11 days ago
JSON representation
A Python utility for moving bookmarks/reading lists between services
- Host: GitHub
- URL: https://github.com/codebox/reading-list-mover
- Owner: codebox
- License: mit
- Created: 2012-03-17T16:12:18.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-11-14T10:24:46.000Z (almost 9 years ago)
- Last Synced: 2024-08-01T16:55:27.388Z (3 months ago)
- Topics: bookmark, delicious, diigo, instapaper, pinboard, pocket, python, readability, stackoverflow, twitter
- Language: Python
- Homepage: https://codebox.net/pages/copy-between-instapaper-readability-pocket-pinboard-delicious
- Size: 163 KB
- Stars: 200
- Watchers: 14
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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](http://www.instapaper.com/), [Readability](https://www.readability.com/), [Pocket](http://getpocket.com/) (formerly ReadItLater), [Pinboard](http://pinboard.in/), [Delicious](http://delicious.com/), [Diigo](http://diigo.com/), [GitHub](http://github.com/)\*, [StackOverflow](http://stackoverflow.com/)\* and [Twitter](http://twitter.com/)\* ('\*' indicates export only).
To use the library you will need to populate your copy of the [config.txt](https://github.com/codebox/reading-list-mover/blob/master/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:
- [Readability API key](http://help.readability.com/customer/portal/articles/267466-i%E2%80%99m-a-developer-how-can-i-get-an-api-key-)
- [Pocket API key](http://getpocket.com/api/signup/)
- [Instapaper API key](http://www.instapaper.com/main/request_oauth_consumer_token)
- [Diigo API key](http://www.diigo.com/api_keys/new/)
- [Twitter API key](https://apps.twitter.com/app/new)You will also need to have the [oauth2](https://github.com/simplegeo/python-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 ##
```python
# 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
```python
# Print out all bookmarks from Delicious
delicious = buildDelicious()for b in delicious.getBookmarks():
print b['title'] + ': ' + b['url']
```[source]: https://github.com/codebox/reading-list-mover
[Instapaper]: http://www.instapaper.com/
[Readability]: https://www.readability.com/
[Pocket]: http://getpocket.com/
[Pinboard]: http://pinboard.in/
[Delicious]: http://delicious.com/
[Diigo]: http://diigo.com/
[GitHub]: http://github.com/
[StackOverflow]: http://stackoverflow.com/
[Twitter]: http://twitter.com/
[config.txt]: https://github.com/codebox/reading-list-mover/blob/master/config.txt
[oauth2]: https://github.com/simplegeo/python-oauth2