Skip to content

Instantly share code, notes, and snippets.

@bobes
Created April 13, 2011 06:18
Show Gist options
  • Save bobes/917059 to your computer and use it in GitHub Desktop.
Save bobes/917059 to your computer and use it in GitHub Desktop.
Import your ReadItLater bookmarks into Instapaper
#!/usr/bin/env ruby
# 1. export your RIL bookmarks
# 2. save this file to the same directory where your ril_export.html is
# 3. change username and password in the script bellow
# 4. run 'ruby ril_to_instapaper.rb' in terminal
require "cgi"
require "net/http"
require "net/https"
ril = File.read("ril_export.html")
unread = ril.scan(%r{<ul>.*?</ul>}m).first
http = Net::HTTP.new("www.instapaper.com", 443)
http.use_ssl = true
unread.scan(%r{href="(.*?)".*?>(.*?)<}).each do |url, title|
puts "#{url}: #{title}"
http.post("/api/add", {
:username => "john.doe@example.com",
:password => "top secret",
:url => url,
:title => title,
}.map { |k, v| "#{k}=#{CGI.escape(v)}" }.join("&"))
end
@gbussmann
Copy link

Just what I needed. It worked great.

Thanks for sharing.

Copy link

ghost commented Sep 2, 2012

Awesome. Thanks.

@benjiwheeler
Copy link

well done, worked great for me.

@amadeusp
Copy link

Thank you very much!

@sferguson-utest
Copy link

awesome. thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment