-
-
Save emad-elsaid/9210243 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/env ruby | |
require 'open-uri' | |
require 'json' | |
language = 'en' | |
article = ARGV[0] || | |
begin | |
print 'What do you need to know? : ' | |
URI::encode gets.chomp | |
end | |
request_url = "http://#{language}.wikipedia.org/w/api.php?action=parse&page=#{article}&format=json&prop=text§ion=0&redirects" | |
open(request_url) do |file| | |
puts JSON.parse(file.read())['parse']['text'].first[1] | |
.gsub(/<\/?[^>]+>/, '') # strip tags | |
.gsub(/[[:space:]]+/, ' ') # strip whitespace | |
.gsub(/&#[0-9]+;/,'') # strip encoded | |
.gsub(/\[[0-9]+\]/,'') # strip referencing | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment