Skip to content

Instantly share code, notes, and snippets.

@thr3a
thr3a / package.json
Created October 26, 2015 14:14
Nodejsを使った山手線の家賃平均を求めるスクリプト
{
"name": "yamanote-tintai",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
@thr3a
thr3a / app.rb
Created October 4, 2015 23:36
例のWIKIからスクレイピングするやつ ex. app.rb > denko.json
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