-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfantasy_start.rb
99 lines (87 loc) · 3.81 KB
/
fantasy_start.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
=begin
Figure out who to start in a given week.
=end
require 'rubygems'
require 'nokogiri'
require 'mechanize'
require 'open-uri'
# uris for espn and mengs data. currently needs to be updated weekly
espn_uris = {
'rb' => 'http://espn.go.com/fantasy/football/story/_/page/14ranksWeek10RB/fantasy-football-Week-10-fantasy-football-running-back-rankings',
'wr' => 'http://espn.go.com/fantasy/football/story/_/page/14ranksWeek10WR/fantasy-football-Week-10-fantasy-football-wide-receiver-rankings',
'qb' => 'http://espn.go.com/fantasy/football/story/_/page/14ranksWeek10QB/fantasy-football-Week-10-fantasy-football-quarterback-rankings',
'def' => 'http://espn.go.com/fantasy/football/story/_/page/14ranksWeek10DST/fantasy-football-Week-10-fantasy-football-defense-rankings',
'te' => 'http://espn.go.com/fantasy/football/story/_/page/14ranksWeek10TE/fantasy-football-week-10-fantasy-football-tight-end-rankings',
'k' => 'http://espn.go.com/fantasy/football/story/_/page/14ranksWeek10K/fantasy-football-week-10-fantasy-football-kicker-rankings',
}
# todo left this so that i can come back and add 'check waivers for better options' feature
mengs_uris = {
'rb' => 'http://football9.myfantasyleague.com/2014/top?L=16839&SEARCHTYPE=BASIC&COUNT=32&YEAR=2014&START_WEEK=1&END_WEEK=8&CATEGORY=freeagent&POSITION=RB&DISPLAY=points&TEAM=*',
'wr' => 'http://football9.myfantasyleague.com/2014/top?L=16839&SEARCHTYPE=BASIC&COUNT=32&YEAR=2014&START_WEEK=1&END_WEEK=8&CATEGORY=freeagent&POSITION=WR&DISPLAY=points&TEAM=*',
'qb' => 'http://football9.myfantasyleague.com/2014/top?L=16839&SEARCHTYPE=BASIC&COUNT=32&YEAR=2014&START_WEEK=1&END_WEEK=8&CATEGORY=freeagent&POSITION=QB&DISPLAY=points&TEAM=*',
'def' => 'http://football9.myfantasyleague.com/2014/top?L=16839&SEARCHTYPE=BASIC&COUNT=32&YEAR=2014&START_WEEK=1&END_WEEK=8&CATEGORY=freeagent&POSITION=Def&DISPLAY=points&TEAM=*',
'te' => 'http://football9.myfantasyleague.com/2014/top?L=16839&SEARCHTYPE=BASIC&COUNT=32&YEAR=2014&START_WEEK=1&END_WEEK=9&CATEGORY=freeagent&POSITION=TE&DISPLAY=points&TEAM=*',
'k' => 'http://football9.myfantasyleague.com/2014/top?L=16839&SEARCHTYPE=BASIC&COUNT=32&YEAR=2014&START_WEEK=1&END_WEEK=9&CATEGORY=freeagent&POSITION=PK&DISPLAY=points&TEAM=*',
}
mechanize = Mechanize.new
page = mechanize.get('http://espn.go.com/fantasy/football/story/_/page/14ranksWeek10RB/fantasy-football-Week-10-fantasy-football-running-back-rankings')
type = ARGV[0] ? ARGV[0] : ''
# fetch all espn data
player_stats = Hash.new
espn_uris.each do |position, uri|
page = mechanize.get(uri)
rows = page.search('//table/tbody/tr[@class="last"]')
espn = rows.collect do |row|
detail = {}
[
[:rank, 'td[1]'],
[:name, 'td[2]/a'],
].each do |name, xpath|
detail[name] = row.at_xpath(xpath).text.strip
end
detail
end
player_stats[position] = espn
end
p player_stats['qb']
=begin
# get espn weekly data
page = Nokogiri::HTML(open(espn_uris[type]))
rows = page.xpath('//table/tbody/tr[@class="last"]')
espn = rows.collect do |row|
detail = {}
[
[:rank, 'td[1]'],
[:name, 'td[2]/a'],
].each do |name, xpath|
detail[name] = row.at_xpath(xpath).text.strip
end
detail
end
# get available free agent data
page = Nokogiri::HTML(open(mengs_uris[type]))
rows = page.xpath('//*[@id="top"]/table/tbody/tr[position()>2]')
mengs = rows.collect do |row|
detail = {}
[
[:rank, 'td[1]'],
[:name, 'td[3]/a'],
].each do |name, xpath|
detail[name] = row.at_xpath(xpath).text.strip
end
detail
end
#data cleanup
mengs.each do |p|
name = p[:name].split(',')
p[:rank] = p[:rank].to_i
p[:name] = name.last.split(' ').first + ' ' + name.first.chomp(',')
end
# find the best options
names = mengs.map {|p| p[:name]}
espn.each do |player|
if names.include?(player[:name])
puts player[:name]
end
end
=end