Kiwi Scraper is a great tool to get Sharecourse description!
We respect Sharecourse's robots.txt
Install it with the following command:
$ gem install kiwicourse
Run it from the command line.
Search a course with a keyword
$ kiwicourse search cellular
2015 細胞神經科學Cellular Neuroscience
Open the course url in browser
$ kiwicourse open 科學計算
Use it from your Ruby code:
require 'kiwicourse'
sc = KiwiScraper::ShareCourse.new
course_found = sc.course_name
puts course_found
url_found = sc.course_url
puts url_found
Using rake to run tests. If you don't have rake using gem install rake
to install it.
$ rake spec