a
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
{ | |
"name": "yamanote-tintai", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC", |
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
require 'mechanize' | |
require 'json' | |
result = [] | |
top_url = 'http://stationmemories.wiki.fc2.com/' | |
wiki = Mechanize.new.get(top_url) | |
wiki.search('ul.treemenu_ul')[0].css('li a').each do|denko| | |
# でんこ個別ページ取得 | |
page = Mechanize.new.get(top_url + denko[:href]) | |
# でんこの名前取得 | |
name = page.search('.page_title h1').text |
NewerOlder