This is a tool from 2010. Delicious has since changed owners (twice). This tool is most likely not compatible with the current Delicious API.
delicious2google is a simple Python Google App Engine-based tool to export Delicious bookmarks to Google Bookmarks. It uses the V2 Delicious API (with OAuth) for accounts that have been merged with Delicious accounts, or the V1 API (Basic Auth over HTTPS) for accounts that have not been merged.
There is a running instance at http://delicious-export.appspot.com/.
The App Engine app lives in the app
directory. There are a few endpoints (only the first two are exposed by static/index.html
):
/basic-auth
: Uses the V1 HTTP Basic Auth API endpoint which fetches the bookmarks and export them given the user's credentials (implemented byBasicAuthUploadHandler
inmain.py
)/request-authorization
: Does the complete OAuth authorization flow and exports the fetched bookmarks (implemented byRequestAuthorizationHandler
andOAuthCallbackHandler
inmain.py
)/debug-token.html
: Given an OAuth access token that has already been fetched, fetches the bookmarks and exports them (implemented byDebugTokenHandler
inmain.py
)/json.html
: Uses the Delicious API JSON endpoint to request publicly-visible data (for any user) and uploads it (implemented bystatic/json.html
). Useful for debugging user requests (assuming that the problem is with the first 100 bookmarks)
Exporting is done by generating a JSON dump that mimics the Delicious API JSON "raw" output (not necessary for the debug JSON endpoint, since we already have JSON data there) then pointing jsonCallback
from static/main.js
at it. That creates a form in which it fills in the bookmark XML data that the Google Bookmarks bulk import endpoint accepts.
The OAuth application keys should live in a oauthkeys.py
file inside of app
. The file should define three variables, CONSUMER_KEY
, CONSUMER_SECRET
and APPLICATION_ID
. If you'd like to run your own instance of the application, you can get your own values from the Yahoo! APIs Dashboard.