Created
January 8, 2017 06:58
-
-
Save iurikura/b7d558c0e5dd4990b91516cfb306c67f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -- coding: utf-8 | |
require "open-uri" | |
require "rubygems" | |
require "nokogiri" | |
url = "https://filmarks.com/people/63083" | |
charset = nil | |
html = open(url) do |f| | |
charset = f.charset | |
f.read | |
end | |
doc = Nokogiri::HTML.parse(html, nil, charset) | |
p doc.title |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment