Page not found
67 | 68 |Sorry, but the page you were trying to get to, does not exist. You 69 | may want to try searching this site using the sidebar or using our 70 | API Reference page to find what 71 | you were looking for.
72 | 73 | 86 |├── .gitignore ├── README.md ├── config └── config.exs ├── doc ├── .build ├── 404.html ├── FFNerd.AuctionValue.html ├── FFNerd.ByeWeek.html ├── FFNerd.Client.html ├── FFNerd.DefenseRanking.html ├── FFNerd.DepthChart.Player.html ├── FFNerd.DepthChart.html ├── FFNerd.DraftProjection.html ├── FFNerd.DraftRanking.html ├── FFNerd.ExpertPick.Game.html ├── FFNerd.ExpertPick.html ├── FFNerd.Game.html ├── FFNerd.Inactive.html ├── FFNerd.Injury.html ├── FFNerd.Player.Stats.html ├── FFNerd.Player.Video.html ├── FFNerd.Player.html ├── FFNerd.Schedule.html ├── FFNerd.Team.html ├── FFNerd.URL.html ├── FFNerd.Weather.html ├── FFNerd.WeeklyIDPRanking.html ├── FFNerd.WeeklyProjection.html ├── FFNerd.WeeklyRanking.html ├── FFNerd.html ├── api-reference.html ├── dist │ ├── app-5b9e160cec.css │ ├── app-da04b39d0c.js │ └── sidebar_items-6b1fe30cb7.js ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff ├── index.html └── search.html ├── lib ├── ffnerd.ex └── ffnerd │ ├── auction_value.ex │ ├── bye-week.ex │ ├── client.ex │ ├── defense_ranking.ex │ ├── depth_chart.ex │ ├── depth_chart │ └── player.ex │ ├── draft_projection.ex │ ├── draft_ranking.ex │ ├── expert_pick.ex │ ├── expert_pick │ └── game.ex │ ├── game.ex │ ├── inactive.ex │ ├── injury.ex │ ├── player.ex │ ├── player │ ├── stats.ex │ └── video.ex │ ├── schedule.ex │ ├── team.ex │ ├── url.ex │ ├── weather.ex │ ├── weekly_idp_ranking.ex │ ├── weekly_projection.ex │ └── weekly_ranking.ex ├── mix.exs ├── mix.lock └── test ├── ffnerd ├── auction_value_test.exs ├── bye_week_test.exs ├── client_test.exs ├── defense_ranking_test.exs ├── depth_chart_test.exs ├── draft_projection_test.exs ├── draft_ranking_test.exs ├── expert_pick │ └── game_test.exs ├── expert_pick_test.exs ├── game_test.exs ├── inactive_test.exs ├── injury_test.exs ├── player │ ├── stats_test.exs │ └── video_test.exs ├── player_test.exs ├── schedule_test.exs ├── team_test.exs ├── weather_test.exs ├── weekly_idp_ranking_test.exs ├── weekly_projection_test.exs └── weekly_ranking_test.exs ├── ffnerd_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /cover 3 | /deps 4 | erl_crash.dump 5 | *.ez 6 | -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- 1 | # This file is responsible for configuring your application 2 | # and its dependencies with the aid of the Mix.Config module. 3 | use Mix.Config 4 | 5 | # This configuration is loaded before any dependency and is restricted 6 | # to this project. If another project depends on this project, this 7 | # file won't be loaded nor affect the parent project. For this reason, 8 | # if you want to provide default values for your application for 9 | # 3rd-party users, it should be done in your "mix.exs" file. 10 | 11 | # You can configure for your application as: 12 | # 13 | # config :ffnerd, key: :value 14 | # 15 | # And access this configuration in your application as: 16 | # 17 | # Application.get_env(:ffnerd, :key) 18 | # 19 | # Or configure a 3rd-party app: 20 | # 21 | # config :logger, level: :info 22 | # 23 | 24 | # It is also possible to import configuration files, relative to this 25 | # directory. For example, you can emulate configuration per environment 26 | # by uncommenting the line below and defining dev.exs, test.exs and such. 27 | # Configuration from the imported file will override the ones defined 28 | # here (which is why it is important to import them last). 29 | # 30 | # import_config "#{Mix.env}.exs" 31 | -------------------------------------------------------------------------------- /doc/.build: -------------------------------------------------------------------------------- 1 | dist/app-5b9e160cec.css 2 | dist/app-da04b39d0c.js 3 | fonts/icomoon.eot 4 | fonts/icomoon.svg 5 | fonts/icomoon.ttf 6 | fonts/icomoon.woff 7 | dist/sidebar_items-6b1fe30cb7.js 8 | api-reference.html 9 | search.html 10 | 404.html 11 | FFNerd.html 12 | FFNerd.AuctionValue.html 13 | FFNerd.ByeWeek.html 14 | FFNerd.Client.html 15 | FFNerd.DefenseRanking.html 16 | FFNerd.DepthChart.html 17 | FFNerd.DepthChart.Player.html 18 | FFNerd.DraftProjection.html 19 | FFNerd.DraftRanking.html 20 | FFNerd.ExpertPick.html 21 | FFNerd.ExpertPick.Game.html 22 | FFNerd.Game.html 23 | FFNerd.Inactive.html 24 | FFNerd.Injury.html 25 | FFNerd.Player.html 26 | FFNerd.Player.Stats.html 27 | FFNerd.Player.Video.html 28 | FFNerd.Schedule.html 29 | FFNerd.Team.html 30 | FFNerd.URL.html 31 | FFNerd.Weather.html 32 | FFNerd.WeeklyIDPRanking.html 33 | FFNerd.WeeklyProjection.html 34 | FFNerd.WeeklyRanking.html 35 | index.html 36 | -------------------------------------------------------------------------------- /doc/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |Sorry, but the page you were trying to get to, does not exist. You 69 | may want to try searching this site using the sidebar or using our 70 | API Reference page to find what 71 | you were looking for.
72 | 73 | 86 |Provides functions to work with Fantasy Football Nerd’s Bye Week resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#byes
76 | 77 |Return a single bye week record by team code
102 |Return a list of all bye week records
111 |Return a list of bye week records by week number
120 |Return a single bye week record by team code.
164 |FFNerd.ByeWeek.find “SEA”, client
170 | 171 |Return a list of all bye week records.
188 |FFNerd.ByeWeek.list 4, client
194 | 195 |Return a list of bye week records by week number.
212 |FFNerd.ByeWeek.list 4, client
218 | 219 |new(ExConstructor.map_or_kwlist, Keyword.t) :: %FFNerd.ByeWeek{bye_week: term, display_name: term, team: term}238 | 239 |
Create new client with default endpoint
96 |Create new client with custom endpoint
105 |Create new client with default endpoint.
143 |FFNerd.Client.new “API-KEY-ABC-XYZ”
149 | 150 |Create new client with custom endpoint.
167 |FFNerd.Client.new “API-KEY”, “http://www.example.com”
173 | 174 |Provides functions to work with Fantasy Football Nerd’s Defense Ranking resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#defense-rankings
76 | 77 |Return a defense ranking record by team code
102 |Return a list of defense ranking records
111 |Convert raw api data to Player.DefenseRanking struct
120 |Return a defense ranking record by team code.
158 |FFNerd.DefenseRanking.find “SEA”, client
164 | 165 |Return a list of defense ranking records.
182 |FFNerd.DefenseRanking.list client
188 | 189 |Convert raw api data to Player.DefenseRanking struct.
206 | 207 |new(ExConstructor.map_or_kwlist, Keyword.t) :: %FFNerd.DepthChart.Player{depth: term, player_id: term, player_name: term, position: term, team: term}133 | 134 |
Provides functions to work with Fantasy Football Nerd’s Draft Projection resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#draft-projections
76 | 77 |Return a single draft ranking projection record by person id
102 |Return a list of draft projection records by position
111 |Convert raw api data to DraftProjection struct
120 |Return a single draft ranking projection record by person id.
158 |FFNerd.DraftProjection.find 259, client
164 | 165 |Return a list of draft projection records by position.
182 |FFNerd.DraftProjection.list “QB”, client
188 | 189 |Convert raw api data to DraftProjection struct.
206 | 207 |Provides functions to work with Fantasy Football Nerd’s NFLPick resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#nfl-picks
76 | 77 |Return an expert pick game record for current week by game id
102 |Return a list of expert pick game records for current week
111 |Convert raw api data to ExpertPick.Game struct
120 |Return an expert pick game record for current week by game id.
158 |FFNerd.ExpertPick.Game.find 49, client
164 | 165 |Return a list of expert pick game records for current week.
182 |FFNerd.ExpertPick.Game.list client
188 | 189 |Convert raw api data to ExpertPick.Game struct.
206 | 207 |Provides functions to work with Fantasy Football Nerd’s NFLPick resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#nfl-picks
76 | 77 |Return an expert pick record for current week by game id and expert name
102 |Return a list of expert pick records by game id
111 |Return an expert pick record for current week by game id and expert name.
155 |FFNerd.ExpertPick.find “Adam Meyer”, 49, client
161 | 162 |Return a list of expert pick records by game id.
179 |FFNerd.ExpertPick.list 49, client
185 | 186 |new(ExConstructor.map_or_kwlist, Keyword.t) :: %FFNerd.ExpertPick{correct: term, expert_company: term, expert_name: term, expert_season_correct: term, game_pick: term}205 | 206 |
Provides functions to work with Fantasy Football Nerd’s NFL Schedule resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#schedule
76 | 77 |Return a single game record by game id
102 |Return a list of all game records
111 |Convert raw api data to Game struct
120 |Return a single game record by game id.
158 |FFNerd.Game.find 2, client
164 | 165 |Return a list of all game records.
182 |FFNerd.Game.list client
188 | 189 |Convert raw api data to Game struct.
206 | 207 |Provides functions to work with Fantasy Football Nerd’s Player Stats resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#player
76 | 77 |Return player stats record by id or FFNerd.Player struct
102 |Return player stats record by id and year
111 |Return player stats record by id, year, and week
120 |Convert raw api data to Player.Stats struct
129 |Return player stats record by id or FFNerd.Player struct.
167 |FFNerd.Player.Stats.find 2, client
173 | 174 |Return player stats record by id and year.
191 |FFNerd.Player.Stats.find 2, 2009, client
197 | 198 |Return player stats record by id, year, and week.
215 |FFNerd.Player.Stats.find 2, 2009, 17, client
221 | 222 |Convert raw api data to Player.Stats struct.
239 | 240 |Provides functions to work with Fantasy Football Nerd’s Player Videos resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#player
76 | 77 |Return a list of player video records by player id
102 |Convert raw api data to Player.Video struct
111 |Return a list of player video records by player id.
149 |FFNerd.Player.Video.list 14, client
155 | 156 |Convert raw api data to Player.Video struct.
173 | 174 |Provides functions to work with Fantasy Football Nerd’s Players resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#players
76 | 77 |Return a single player record by player id or display name
102 |Return a list of all player records
111 |Return a list of player records by position code
120 |Return a single player record by player id or display name
164 |FFNerd.Player.find 2, client 170 | FFNerd.Player.find “Russell Wilson”, client
171 | 172 |Return a list of all player records.
189 |FFNerd.Player.list client
195 | 196 |Return a list of player records by position code.
213 |FFNerd.Player.list “QB”, client
219 | 220 |new(ExConstructor.map_or_kwlist, Keyword.t) :: %FFNerd.Player{active: term, college: term, display_name: term, dob: term, fname: term, height: term, jersey: term, lname: term, player_id: term, position: term, star: term, team: term, twitter_id: term, weight: term}239 | 240 |
Provides functions to work with Fantasy Football Nerd’s NFL Schedule resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#schedule
76 | 77 |Return the associated current week
102 |Return a single game record by game id
111 |Return a list of all game records
120 |Return a list of game records by team code
129 |Return the associated current week.
167 |FFNerd.Schedule.current_week client
173 | 174 |Return a single game record by game id.
191 |FFNerd.Schedule.list client
197 | 198 |Return a list of all game records.
215 |FFNerd.Schedule.list client
221 | 222 |Return a list of game records by team code.
239 |FFNerd.Schedule.list client
245 | 246 |Provides functions to work with Fantasy Football Nerd’s Bye Week resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#teams
76 | 77 |Return a single team record by team code
102 |Return a list of all team records
111 |Return a single team record by team code.
155 |FFNerd.Team.find “SEA”, client
161 | 162 |Return a list of all team records.
179 |FFNerd.Team.list client
185 | 186 |new(ExConstructor.map_or_kwlist, Keyword.t) :: %FFNerd.Team{code: term, full_name: term, short_name: term}205 | 206 |
Provides functions to work with Fantasy Football Nerd’s Weather Forecasts resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#weather
76 | 77 |Return the associated current date
102 |Return the associated current week
111 |Return a single weather forecast record by team code
120 |Return a list of all weather forecast records
129 |Convert raw api data to Weather struct
138 |Return the associated current date.
176 |FFNerd.Schedule.today client
182 | 183 |Return the associated current week.
200 |FFNerd.Schedule.week client
206 | 207 |Return a single weather forecast record by team code.
224 |FFNerd.Weather.find “SEA”, client
230 | 231 |Return a list of all weather forecast records.
248 |FFNerd.Schedule.list client
254 | 255 |Convert raw api data to Weather struct.
272 | 273 |Provides functions to work with Fantasy Football Nerd’s Weekly Ranking resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#weekly-idp
76 | 77 |Return a list of weekly idp ranking records
102 |Return a list of weekly idp ranking records by position using the current week
111 |Return a list of weekly idp ranking records.
155 |FFNerd.WeeklyIDPRanking.list client
161 |FFNerd.WeeklyIDPRankingDraftRanking.list :ppr, client
162 | 163 |Return a list of weekly idp ranking records by position using the current week.
180 |FFNerd.WeeklyIDPRanking.list “DE”, client
186 | 187 |new(ExConstructor.map_or_kwlist, Keyword.t) :: %FFNerd.WeeklyIDPRanking{player: term, position: term, rank: term, team: term}206 | 207 |
Provides functions to work with Fantasy Football Nerd’s Weekly Ranking resources.
75 |More info at: http://www.fantasyfootballnerd.com/fantasy-football-api#weekly-rankings
76 | 77 |Return a single weekly ranking record by person id
102 |Return a list of weekly ranking records by position using the current week
111 |Return a list of weekly ranking records by position and week
120 |Return a single weekly ranking record by person id.
164 |FFNerd.WeeklyRanking.find 259, client
170 | 171 |Return a list of weekly ranking records by position using the current week.
188 |FFNerd.WeeklyRanking.list “QB”, client
194 | 195 |Return a list of weekly ranking records by position and week.
212 |FFNerd.WeeklyRanking.list “QB”, client
218 | 219 |new(ExConstructor.map_or_kwlist, Keyword.t) :: %FFNerd.WeeklyRanking{game_status: term, injury: term, last_update: term, name: term, player_id: term, position: term, ppr: term, ppr_high: term, ppr_low: term, practice_status: term, standard: term, standard_high: term, standard_low: term, team: term, week: term}238 | 239 |