sportsball 0.8.8__tar.gz → 0.9.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (277) hide show
  1. {sportsball-0.8.8/sportsball.egg-info → sportsball-0.9.1}/PKG-INFO +210 -2
  2. {sportsball-0.8.8 → sportsball-0.9.1}/README.md +209 -1
  3. {sportsball-0.8.8 → sportsball-0.9.1}/setup.py +1 -1
  4. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/__init__.py +1 -1
  5. sportsball-0.9.1/sportsball/data/afl/afl/afl_afl_player_model.py +283 -0
  6. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afltables/afl_afltables_player_model.py +215 -0
  7. sportsball-0.9.1/sportsball/data/combined/combined_player_model.py +1507 -0
  8. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/combined/null_check.py +1 -1
  9. sportsball-0.9.1/sportsball/data/espn/espn_player_model.py +1031 -0
  10. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/espn/espn_venue_model.py +20 -12
  11. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/google/google_address_model.py +88 -27
  12. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/hkjc_hkjc_player_model.py +209 -0
  13. sportsball-0.9.1/sportsball/data/nba/nbacom/nba_nbacom_player_model.py +280 -0
  14. sportsball-0.9.1/sportsball/data/player_model.py +1929 -0
  15. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsreference/sportsreference_player_model.py +234 -0
  16. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/team_model.py +61 -1
  17. {sportsball-0.8.8 → sportsball-0.9.1/sportsball.egg-info}/PKG-INFO +210 -2
  18. sportsball-0.9.1/tests/data/combined/combined_player_model_test.py +294 -0
  19. sportsball-0.9.1/tests/data/combined/combined_team_model_test.py +1267 -0
  20. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/espn/espn_player_model_test.py +8 -0
  21. sportsball-0.9.1/tests/data/player_model_test.py +279 -0
  22. sportsball-0.8.8/sportsball/data/afl/afl/afl_afl_player_model.py +0 -74
  23. sportsball-0.8.8/sportsball/data/combined/combined_player_model.py +0 -304
  24. sportsball-0.8.8/sportsball/data/espn/espn_player_model.py +0 -196
  25. sportsball-0.8.8/sportsball/data/nba/nbacom/nba_nbacom_player_model.py +0 -71
  26. sportsball-0.8.8/sportsball/data/player_model.py +0 -429
  27. sportsball-0.8.8/tests/data/combined/combined_player_model_test.py +0 -85
  28. sportsball-0.8.8/tests/data/combined/combined_team_model_test.py +0 -431
  29. sportsball-0.8.8/tests/data/player_model_test.py +0 -70
  30. {sportsball-0.8.8 → sportsball-0.9.1}/LICENSE +0 -0
  31. {sportsball-0.8.8 → sportsball-0.9.1}/MANIFEST.in +0 -0
  32. {sportsball-0.8.8 → sportsball-0.9.1}/requirements.txt +0 -0
  33. {sportsball-0.8.8 → sportsball-0.9.1}/setup.cfg +0 -0
  34. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/__main__.py +0 -0
  35. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/args.py +0 -0
  36. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/cache.py +0 -0
  37. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/__init__.py +0 -0
  38. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/address_model.py +0 -0
  39. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/__init__.py +0 -0
  40. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afl/__init__.py +0 -0
  41. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afl/afl_afl_bookie_model.py +0 -0
  42. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afl/afl_afl_game_model.py +0 -0
  43. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afl/afl_afl_league_model.py +0 -0
  44. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afl/afl_afl_odds_model.py +0 -0
  45. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afl/afl_afl_team_model.py +0 -0
  46. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afl/afl_afl_venue_model.py +0 -0
  47. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afltables/__init__.py +0 -0
  48. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afltables/afl_afltables_coach_model.py +0 -0
  49. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afltables/afl_afltables_game_model.py +0 -0
  50. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afltables/afl_afltables_league_model.py +0 -0
  51. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afltables/afl_afltables_team_model.py +0 -0
  52. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/afltables/afl_afltables_venue_model.py +0 -0
  53. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/aussportsbetting/__init__.py +0 -0
  54. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/aussportsbetting/afl_aussportsbetting_league_model.py +0 -0
  55. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/combined/__init__.py +0 -0
  56. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/combined/afl_combined_league_model.py +0 -0
  57. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/espn/__init__.py +0 -0
  58. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/espn/afl_espn_league_model.py +0 -0
  59. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/oddsportal/__init__.py +0 -0
  60. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/oddsportal/afl_oddsportal_league_model.py +0 -0
  61. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/afl/position.py +0 -0
  62. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/aussportsbetting/__init__.py +0 -0
  63. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/aussportsbetting/aussportsbetting_bookie_model.py +0 -0
  64. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/aussportsbetting/aussportsbetting_game_model.py +0 -0
  65. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/aussportsbetting/aussportsbetting_league_model.py +0 -0
  66. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/aussportsbetting/aussportsbetting_odds_model.py +0 -0
  67. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/aussportsbetting/aussportsbetting_team_model.py +0 -0
  68. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/aussportsbetting/aussportsbetting_venue_model.py +0 -0
  69. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/bet.py +0 -0
  70. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/bookie_model.py +0 -0
  71. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/coach_model.py +0 -0
  72. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/combined/__init__.py +0 -0
  73. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/combined/combined_address_model.py +0 -0
  74. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/combined/combined_coach_model.py +0 -0
  75. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/combined/combined_game_model.py +0 -0
  76. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/combined/combined_league_model.py +0 -0
  77. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/combined/combined_team_model.py +0 -0
  78. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/combined/combined_venue_model.py +0 -0
  79. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/combined/combined_weather_model.py +0 -0
  80. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/combined/ffill.py +0 -0
  81. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/delimiter.py +0 -0
  82. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/dividend_model.py +0 -0
  83. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/espn/__init__.py +0 -0
  84. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/espn/espn_bookie_model.py +0 -0
  85. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/espn/espn_coach_model.py +0 -0
  86. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/espn/espn_game_model.py +0 -0
  87. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/espn/espn_league_model.py +0 -0
  88. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/espn/espn_odds_model.py +0 -0
  89. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/espn/espn_team_model.py +0 -0
  90. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/field_type.py +0 -0
  91. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/game_model.py +0 -0
  92. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/google/__init__.py +0 -0
  93. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/google/google_news_model.py +0 -0
  94. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/__init__.py +0 -0
  95. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/__init__.py +0 -0
  96. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/hkjc_hkjc_bookie_model.py +0 -0
  97. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/hkjc_hkjc_coach_model.py +0 -0
  98. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/hkjc_hkjc_dividend_model.py +0 -0
  99. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/hkjc_hkjc_game_model.py +0 -0
  100. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/hkjc_hkjc_league_model.py +0 -0
  101. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/hkjc_hkjc_odds_model.py +0 -0
  102. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/hkjc_hkjc_owner_model.py +0 -0
  103. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/hkjc_hkjc_team_model.py +0 -0
  104. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/hkjc/hkjc_hkjc_venue_model.py +0 -0
  105. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/hkjc/position.py +0 -0
  106. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/league.py +0 -0
  107. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/league_model.py +0 -0
  108. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/model.py +0 -0
  109. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/__init__.py +0 -0
  110. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/combined/__init__.py +0 -0
  111. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/combined/nba_combined_league_model.py +0 -0
  112. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/espn/__init__.py +0 -0
  113. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/espn/nba_espn_league_model.py +0 -0
  114. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/nba/__init__.py +0 -0
  115. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/nba/nba_nba_game_model.py +0 -0
  116. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/nba/nba_nba_league_model.py +0 -0
  117. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/nba/nba_nba_team_model.py +0 -0
  118. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/nbacom/__init__.py +0 -0
  119. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/nbacom/nba_nbacom_game_model.py +0 -0
  120. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/nbacom/nba_nbacom_league_model.py +0 -0
  121. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/nbacom/nba_nbacom_team_model.py +0 -0
  122. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/nbacom/nba_nbacom_venue_model.py +0 -0
  123. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/oddsportal/__init__.py +0 -0
  124. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/oddsportal/nba_oddsportal_league_model.py +0 -0
  125. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/position.py +0 -0
  126. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/sportsdb/__init__.py +0 -0
  127. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/sportsdb/nba_sportsdb_league_model.py +0 -0
  128. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/sportsreference/__init__.py +0 -0
  129. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nba/sportsreference/nba_sportsreference_league_model.py +0 -0
  130. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/__init__.py +0 -0
  131. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/combined/__init__.py +0 -0
  132. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/combined/ncaab_combined_league_model.py +0 -0
  133. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/espn/__init__.py +0 -0
  134. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/espn/ncaab_espn_league_model.py +0 -0
  135. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/oddsportal/__init__.py +0 -0
  136. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/oddsportal/ncaab_oddsportal_league_model.py +0 -0
  137. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/sportsdb/__init__.py +0 -0
  138. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/sportsdb/ncaab_sportsdb_league_model.py +0 -0
  139. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/sportsreference/__init__.py +0 -0
  140. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaab/sportsreference/ncaab_sportsreference_league_model.py +0 -0
  141. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/__init__.py +0 -0
  142. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/combined/__init__.py +0 -0
  143. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/combined/ncaaf_combined_league_model.py +0 -0
  144. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/espn/__init__.py +0 -0
  145. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/espn/ncaaf_espn_league_model.py +0 -0
  146. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/oddsportal/__init__.py +0 -0
  147. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/oddsportal/ncaaf_oddsportal_league_model.py +0 -0
  148. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/sportsdb/__init__.py +0 -0
  149. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/sportsdb/ncaaf_sportsdb_league_model.py +0 -0
  150. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/sportsreference/__init__.py +0 -0
  151. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/ncaaf/sportsreference/ncaaf_sportsreference_league_model.py +0 -0
  152. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/news_model.py +0 -0
  153. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/__init__.py +0 -0
  154. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/aussportsbetting/__init__.py +0 -0
  155. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/aussportsbetting/nfl_aussportsbetting_league_model.py +0 -0
  156. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/combined/__init__.py +0 -0
  157. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/combined/nfl_combined_league_model.py +0 -0
  158. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/espn/__init__.py +0 -0
  159. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/espn/nfl_espn_league_model.py +0 -0
  160. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/oddsportal/__init__.py +0 -0
  161. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/oddsportal/nfl_oddsportal_league_model.py +0 -0
  162. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/position.py +0 -0
  163. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/sportsdb/__init__.py +0 -0
  164. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/sportsdb/nfl_sportsdb_league_model.py +0 -0
  165. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/sportsreference/__init__.py +0 -0
  166. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/nfl/sportsreference/nfl_sportsreference_league_model.py +0 -0
  167. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/odds_model.py +0 -0
  168. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/oddsportal/__init__.py +0 -0
  169. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/oddsportal/decrypt.py +0 -0
  170. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/oddsportal/oddsportal_bookie_model.py +0 -0
  171. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/oddsportal/oddsportal_game_model.py +0 -0
  172. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/oddsportal/oddsportal_league_model.py +0 -0
  173. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/oddsportal/oddsportal_odds_model.py +0 -0
  174. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/oddsportal/oddsportal_team_model.py +0 -0
  175. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/oddsportal/oddsportal_venue_model.py +0 -0
  176. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/owner_model.py +0 -0
  177. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/season_type.py +0 -0
  178. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sex.py +0 -0
  179. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/social_model.py +0 -0
  180. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/species.py +0 -0
  181. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsdb/__init__.py +0 -0
  182. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsdb/sportsdb_game_model.py +0 -0
  183. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsdb/sportsdb_league_model.py +0 -0
  184. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsdb/sportsdb_team_model.py +0 -0
  185. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsdb/sportsdb_venue_model.py +0 -0
  186. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsreference/__init__.py +0 -0
  187. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsreference/sportsreference_coach_model.py +0 -0
  188. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsreference/sportsreference_game_model.py +0 -0
  189. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsreference/sportsreference_league_model.py +0 -0
  190. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsreference/sportsreference_team_model.py +0 -0
  191. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/sportsreference/sportsreference_venue_model.py +0 -0
  192. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/venue_model.py +0 -0
  193. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/weather/__init__.py +0 -0
  194. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/weather/gribstream/__init__.py +0 -0
  195. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/weather/gribstream/gribstream_weather_model.py +0 -0
  196. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/weather/multi_weather_model.py +0 -0
  197. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/weather/openmeteo/__init__.py +0 -0
  198. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/weather/openmeteo/openmeteo_weather_model.py +0 -0
  199. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/weather_model.py +0 -0
  200. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/wikipedia/__init__.py +0 -0
  201. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/wikipedia/wikipedia_venue_model.py +0 -0
  202. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/x/__init__.py +0 -0
  203. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/data/x/x_social_model.py +0 -0
  204. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/logger.py +0 -0
  205. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/loglevel.py +0 -0
  206. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/playwright.py +0 -0
  207. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/sportsball.py +0 -0
  208. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/vendor/__init__.py +0 -0
  209. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball/vendor/pygooglenews/__init__.py +0 -0
  210. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball.egg-info/SOURCES.txt +0 -0
  211. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball.egg-info/dependency_links.txt +0 -0
  212. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball.egg-info/entry_points.txt +0 -0
  213. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball.egg-info/not-zip-safe +0 -0
  214. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball.egg-info/requires.txt +0 -0
  215. {sportsball-0.8.8 → sportsball-0.9.1}/sportsball.egg-info/top_level.txt +0 -0
  216. {sportsball-0.8.8 → sportsball-0.9.1}/tests/__init__.py +0 -0
  217. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/__init__.py +0 -0
  218. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/afl/__init__.py +0 -0
  219. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/afl/afl/__init__.py +0 -0
  220. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/afl/afl/afl_afl_game_model_test.py +0 -0
  221. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/afl/afl/afl_afl_league_model_test.py +0 -0
  222. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/afl/afltables/__init__.py +0 -0
  223. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/afl/afltables/afl_afltables_coach_model_test.py +0 -0
  224. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/afl/afltables/afl_afltables_game_model_test.py +0 -0
  225. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/afl/afltables/afl_afltables_league_model_test.py +0 -0
  226. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/afl/afltables/afl_afltables_player_model_test.py +0 -0
  227. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/aussportsbetting/__init__.py +0 -0
  228. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/aussportsbetting/aussportsbetting_game_model_test.py +0 -0
  229. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/combined/__init__.py +0 -0
  230. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/combined/combined_game_model_test.py +0 -0
  231. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/combined/combined_venue_model_test.py +0 -0
  232. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/espn/__init__.py +0 -0
  233. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/espn/espn_game_model_test.py +0 -0
  234. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/game_model_test.py +0 -0
  235. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/google/__init__.py +0 -0
  236. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/google/google_address_model_test.py +0 -0
  237. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/google/google_news_model_test.py +0 -0
  238. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/hkjc/__init__.py +0 -0
  239. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/hkjc/hkjc/__init__.py +0 -0
  240. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/hkjc/hkjc/hkjc_hkjc_game_model_test.py +0 -0
  241. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/hkjc/hkjc/hkjc_hkjc_player_model_test.py +0 -0
  242. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nba/__init__.py +0 -0
  243. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nba/nba/__init__.py +0 -0
  244. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nba/nba/nba_nba_game_model_test.py +0 -0
  245. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nba/nba/nba_nba_league_model_test.py +0 -0
  246. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nba/nba/nba_nba_team_model_test.py +0 -0
  247. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nba/sportsdb/__init__.py +0 -0
  248. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nba/sportsdb/nba_sportsdb_league_model_test.py +0 -0
  249. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nba/sportsreference/__init__.py +0 -0
  250. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nba/sportsreference/nba_sportsreference_league_model_test.py +0 -0
  251. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/ncaab/__init__.py +0 -0
  252. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/ncaab/sportsreference/__init__.py +0 -0
  253. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/ncaab/sportsreference/ncaab_sportsreference_league_model_test.py +0 -0
  254. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nfl/__init__.py +0 -0
  255. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nfl/sportsdb/__init__.py +0 -0
  256. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/nfl/sportsdb/nfl_sportsdb_league_model_test.py +0 -0
  257. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/oddsportal/__init__.py +0 -0
  258. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/oddsportal/decrypt_test.py +0 -0
  259. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/oddsportal/oddsportal_game_model_test.py +0 -0
  260. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/oddsportal/oddsportal_league_model_test.py +0 -0
  261. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/social_model_test.py +0 -0
  262. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsdb/__init__.py +0 -0
  263. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsdb/sportsdb_game_model_test.py +0 -0
  264. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsdb/sportsdb_league_model_test.py +0 -0
  265. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsdb/sportsdb_team_model_test.py +0 -0
  266. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsdb/sportsdb_venue_model_test.py +0 -0
  267. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsreference/__init__.py +0 -0
  268. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsreference/sportsreference_coach_model_test.py +0 -0
  269. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsreference/sportsreference_game_model_test.py +0 -0
  270. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsreference/sportsreference_league_model_test.py +0 -0
  271. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsreference/sportsreference_player_model_test.py +0 -0
  272. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsreference/sportsreference_team_model_test.py +0 -0
  273. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/sportsreference/sportsreference_venue_model_test.py +0 -0
  274. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/team_model_test.py +0 -0
  275. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/x/__init__.py +0 -0
  276. {sportsball-0.8.8 → sportsball-0.9.1}/tests/data/x/x_social_model_test.py +0 -0
  277. {sportsball-0.8.8 → sportsball-0.9.1}/tests/sportsball_test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: sportsball
3
- Version: 0.8.8
3
+ Version: 0.9.1
4
4
  Summary: A library for pulling in and normalising sports stats.
5
5
  Home-page: https://github.com/8W9aG/sportsball
6
6
  Author: Will Sackfield
@@ -137,6 +137,7 @@ The supported leagues are:
137
137
  * **Player**: A player within the team.
138
138
  * **Address**: The address information of a players birth.
139
139
  * **Owner**: The owner of the player.
140
+ * **Venue**: The college of the player.
140
141
  * **Odds**: The odds for the team to win the game.
141
142
  * **Bookie**: The bookie publishing the odds.
142
143
  * **News**: News about the team the day before the game.
@@ -273,7 +274,7 @@ A representation of a player within a team within a game.
273
274
  * **sex**: The sex of the player.
274
275
  * **age**: The age of the player in years.
275
276
  * **starting_position**: The starting position of the player.
276
- * **weight**: The weight of the player in (in KGs).
277
+ * **weight**: The weight of the player (in KGs).
277
278
  * **birth_address**: The address model for the players birth location.
278
279
  * **seconds_played**: The amount of seconds the player played the game for.
279
280
  * **field_goals_percentage**: The ratio of field goals scored by field goals attempted for the player during the game.
@@ -292,6 +293,213 @@ A representation of a player within a team within a game.
292
293
  * **game_score**: The [John Hollinger game score](https://www.nbastuffer.com/analytics101/game-score/) of the player during the game.
293
294
  * **point_differential**: The points scored by the players team while the player was on the court minus the points scored by the opposing team when the player is off the court.
294
295
  * **version**: The version of the player model.
296
+ * **height**: The height of the player in (in CMs).
297
+ * **college**: The college the player went to.
298
+ * **headshot**: An image URL representing the headshot of the player.
299
+ * **forced_fumbles**: The number of forced fumbles made by the player during the game.
300
+ * **fumbles_recovered**: The number of fumbles recovered made by the player during the game.
301
+ * **fumbles_recovered_yards**: The yards gained during fumbles recovered by the player during the game.
302
+ * **fumbles_touchdowns**: The number of fumble touchdowns made by the player during the game.
303
+ * **offensive_two_point_returns**: The number of offensive two point returns made by the player during the game.
304
+ * **offensive_fumbles_touchdowns**: The number of offensive fumbles touchdowns made by the player during the game.
305
+ * **defensive_fumbles_touchdowns**: The number of defensive fumbles touchdowns made by the player during the game.
306
+ * **average_gain**: The average number of yards gained by the player during the game.
307
+ * **completion_percentage**: The completion percentage of the player during the game.
308
+ * **completions**: The number of completions made by the player during the game.
309
+ * **espn_quarterback_rating**: The number of ESPN quarterback rating of the player.
310
+ * **interception_percentage**: The interception percentage of the player during the game.
311
+ * **interceptions**: The number of interceptions made by the player during the game.
312
+ * **long_passing**: The number of long passes made by the player during the game.
313
+ * **misc_yards**: The miscellaneous yards gained by the player during the game.
314
+ * **net_passing_yards**: The total passing yards gained by the player during the game.
315
+ * **net_total_yards**: The net total yards gained by the player during the game.
316
+ * **passing_attempts**: The number of attempted passes made by the player during the game.
317
+ * **passing_big_plays**: The number of passes that led to big plays made by the player during the game.
318
+ * **passing_first_downs**: The number of passes first downs made by the player during the game.
319
+ * **passing_fumbles**: The number of passing fumbles made by the player during the game.
320
+ * **passing_fumbles_lost**: The number of passing fumbles lost by the player during the game.
321
+ * **passing_touchdown_percentage**: The percentage of passing touchdowns by the player during the game.
322
+ * **passing_touchdowns**: The number of passing touchdowns made by the player during the game.
323
+ * **passing_yards**: The yards gained by the player during passing during the game.
324
+ * **passing_yards_after_catch**: The yards gained by the player after passing after a catch during the game.
325
+ * **passing_yards_at_catch**: The yards gained by the player after passing before a catch during the game.
326
+ * **quarterback_rating**: The quarterback rating of the player.
327
+ * **sacks**: The number of sacks made by the player during the game.
328
+ * **sacks_yards_lost**: The yards lost by the player performing a sack during the game.
329
+ * **net_passing_attempts**: The number of passing attempts made by the player during the game.
330
+ * **total_offensive_plays**: The number of offensive plays made by the player during the game.
331
+ * **total_points**: The number of points made by the player during the game.
332
+ * **total_touchdowns**: The number of touchdowns made by the player during the game.
333
+ * **total_yards**: The total yards gained by the player during the game.
334
+ * **total_yards_from_scrimmage**: The total yards gained by the player from scrimmage during the game.
335
+ * **two_point_pass**: The two point passes made by the player during the game.
336
+ * **two_point_pass_attempt**: The attempts at two point passes made by the player during the game.
337
+ * **yards_per_completion**: The yards gained per completion by the player during the game.
338
+ * **yards_per_pass_attempt**: The yards gained per pass attempt by the player during the game.
339
+ * **net_yards_per_pass_attempt**: The net number of yards gained per pass attempt by the player during the game.
340
+ * **long_rushing**: The long rushes made by the player during the game.
341
+ * **rushing_attempts**: The attempted rushes made by the player during the game.
342
+ * **rushing_big_plays**: The rushes resulting in big plays made by the player during the game.
343
+ * **rushing_first_downs**: The rushing first downs made by the player during the game.
344
+ * **rushing_fumbles**: The rushing fumbles made by the player during the game.
345
+ * **rushing_fumbles_lost**: The rushing fumbles lost by the player during the game.
346
+ * **rushing_touchdowns**: The rushing touchdowns made by the player during the game.
347
+ * **rushing_yards**: The yards made by rushing by the player during the game.
348
+ * **stuffs**: The stuffs made by the player during the game.
349
+ * **stuff_yards_lost**: The yards lost while stuffing by the player during the game.
350
+ * **two_point_rush**: The number of two point rushes made by the player during the game.
351
+ * **two_point_rush_attempts**: The number of attempted two point rushes made by the player during the game.
352
+ * **yards_per_rush_attempt**: The number of yards per rush attempt made by the player during the game.
353
+ * **espn_widereceiver**: The ESPN rating for the wide receiver.
354
+ * **long_reception**: The number of long receptions made by the player during the game.
355
+ * **receiving_big_plays**: The number of receives that resulted in big plays made by the player during the game.
356
+ * **receiving_first_downs**: The number of first down receives made by the player during the game.
357
+ * **receiving_fumbles**: The number of fumble receives made by the player during the game.
358
+ * **receiving_fumbles_lost**: The number of fumble receives lost by the player during the game.
359
+ * **receiving_targets**: The number of target receives made by the player during the game.
360
+ * **receiving_yards**: The number of yards gained by receives by the player during the game.
361
+ * **receiving_yards_after_catch**: The number of yards gained by receives by the player during the game after a catch.
362
+ * **receiving_yards_at_catch**: The number of yards gained by the receives by the player during the game at a catch.
363
+ * **receptions**: The number of receptions made by the player during the game.
364
+ * **two_point_receptions**: The number of two point receptions made by the player during the game.
365
+ * **two_point_reception_attempts**: The number of two point reception attempts made by the player during the game.
366
+ * **yards_per_reception**: The yards gained on average per reception by the player during the game.
367
+ * **assist_tackles**: The number of assist tackles made by the player during the game.
368
+ * **average_interception_yards**: The average number of yards gained by an interception made by the player during the game.
369
+ * **average_sack_yards**: The average number of yards gained by a sack made by the player during the game.
370
+ * **average_stuff_yards**: The average number of yards gained by a stuff made by the player during the game.
371
+ * **blocked_field_goal_touchdowns**: The number of blocked field goal touchdowns made by the player during the game.
372
+ * **blocked_punt_touchdowns**: The number of blocked punt touchdowns made by the player during the game.
373
+ * **defensive_touchdowns**: The number of defensive touchdowns made by the player during the game.
374
+ * **hurries**: The number of hurries made by the player during the game.
375
+ * **kicks_blocked**: The number of kicks blocked by the player during the game.
376
+ * **long_interception**: The number of long interceptions made by the player during the game.
377
+ * **misc_touchdowns**: The number of miscellaneous touchdowns made by the player during the game.
378
+ * **passes_batted_down**: The number of passes batted down by the player during the game.
379
+ * **passes_defended**: The number of passes defended by the player during the game.
380
+ * **quarterback_hits**: The number of quarterback hits made by the player during the game.
381
+ * **sacks_assisted**: The number of sacks the player assisted with during the game.
382
+ * **sacks_unassisted**: The number of sacks the player made unassisted during the game.
383
+ * **sacks_yards**: The number of yards gained by the player making a sack during the game.
384
+ * **safeties**: The safeties made by the player during the game.
385
+ * **solo_tackles**: The number of solo tackles made by the player during the game.
386
+ * **stuff_yards**: The yards gained by the stuffs made by the player during the game.
387
+ * **tackles_for_loss**: The tackles for losses made by the player during the game.
388
+ * **tackles_yards_lost**: The yards lost by tackles made by the player during the game.
389
+ * **yards_allowed**: The yards allowed to be gained by the player during the game.
390
+ * **points_allowed**: The points allowed to be gained by the player during the game.
391
+ * **one_point_safeties_made**: The one point safeties made by the player during the game.
392
+ * **missed_field_goal_return_td**: The missed field goal return TD made by the player during the game.
393
+ * **blocked_punt_ez_rec_td**: The blocked punt EZ rec TD of the player during the game.
394
+ * **interception_touchdowns**: The number of interception touchdowns made by the player during the game.
395
+ * **interception_yards**: The number of yards gained by interceptions made by the player during the game.
396
+ * **average_kickoff_return_yards**: The average number of kickoff return yards made by the player during the game.
397
+ * **average_kickoff_yards**: The average number of kickoff yards made by the player during the game.
398
+ * **extra_point_attempts**: The number of extra point attempts made by the player during the game.
399
+ * **extra_point_percentage**: The number of extra point percentages made by the player during the game.
400
+ * **extra_point_blocked**: The number of extra points blocked by the player during the game.
401
+ * **extra_points_blocked_percentage**: The percentage of extra points blocked by the player during the game.
402
+ * **extra_points_made**: The number of extra points made by the player during the game.
403
+ * **fair_catches**: The number of fair catches made by the player during the game.
404
+ * **fair_catch_percentage**: The percentage of fair catches made by the player during the game.
405
+ * **field_goal_attempts_max_19_yards**: The field goal attempts between 0-19 yards made by the player during the game.
406
+ * **field_goal_attempts_max_29_yards**: The field goal attempts between 19-29 yards made by the player during the game.
407
+ * **field_goal_attempts_max_39_yards**: The field goal attempts between 29-39 yards made by the player during the game.
408
+ * **field_goal_attempts_max_49_yards**: The field goal attempts between 39-49 yards made by the player during the game.
409
+ * **field_goal_attempts_max_59_yards**: The field goal attempts between 49-59 yards made by the player during the game.
410
+ * **field_goal_attempts_max_99_yards**: The field goal attempts between 59-99 yards made by the player during the game.
411
+ * **field_goal_attempts_above_50_yards**: The field goal attempts above 50 yards made by the player during the game.
412
+ * **field_goal_attempt_yards**: The yards gained by field goal attempts made by the player during the game.
413
+ * **field_goals_blocked**: The field goals blocked by the player during the game.
414
+ * **field_goals_blocked_percentage**: The percentage of field goals made by the player during the game.
415
+ * **field_goals_made**: The number of field goals made by the player during the game.
416
+ * **field_goals_made_max_19_yards**: The number of field goals made between 0-19 yards by the player during the game.
417
+ * **field_goals_made_max_29_yards**: The number of field goals made between 19-29 yards by the player during the game.
418
+ * **field_goals_made_max_39_yards**: The number of field goals made between 29-39 yards by the player during the game.
419
+ * **field_goals_made_max_49_yards**: The number of field goals made between 39-49 yards by the player during the game.
420
+ * **field_goals_made_max_59_yards**: The number of field goals made between 49-59 yards by the player during the game.
421
+ * **field_goals_made_max_99_yards**: The number of field goals made between 59-99 yards by the player during the game.
422
+ * **field_goals_made_above_50_yards**: The number of field goals made over 50 yards by the player during the game.
423
+ * **field_goals_made_yards**: The number of yards gained by field goals made by the player during the game.
424
+ * **field_goals_missed_yards**: The number of yards gained by missed field goals made by the player during the game.
425
+ * **kickoff_out_of_bounds**: The number of out of bounds kickoffs made by the player during the game.
426
+ * **kickoff_returns**: The number of kickoff returns made by the player during the game.
427
+ * **kickoff_returns_touchdowns**: The number of kickoff returns touchdowns made by the player during the game.
428
+ * **kickoff_return_yards**: The yards gained by kickoff returns made by the player during the game.
429
+ * **long_field_goal_attempt**: The number of long field goal attempts made by the player during the game.
430
+ * **long_field_goal_made**: The number of long field goals made by the player during the game.
431
+ * **long_kickoff**: The number of long kickoffs made by the player during the game.
432
+ * **total_kicking_points**: The number of kicking points made by the player during the game.
433
+ * **touchback_percentage**: The percentage of touchbacks made by the player during the game.
434
+ * **touchbacks**: The touchbacks made by the player during the game.
435
+ * **defensive_fumble_returns**: The number of defensive fumble returns made by the player during the game.
436
+ * **defensive_fumble_return_yards**: The yards gained by defensive fumble returns made by the player during the game.
437
+ * **fumble_recoveries**: The fumble recoveries made by the player during the game.
438
+ * **fumble_recovery_yards**: The yards gained by fumble recoveries made by the player during the game.
439
+ * **kick_return_fair_catches**: The kick return fair catches made by the player during the game.
440
+ * **kick_return_fair_catch_percentage**: The percentage of kick return fair catches made by the player during the game.
441
+ * **kick_return_fumbles**: The kick return fumbles made by the player during the game.
442
+ * **kick_return_fumbles_lost**: The kick return fumbles lost by the player during the game.
443
+ * **kick_returns**: The kick returns made by the player during the game.
444
+ * **kick_return_touchdowns**: The kick return touchdowns made by the player during the game.
445
+ * **kick_return_yards**: The yards gained by kick returns made by the player during the game.
446
+ * **long_kick_return**: The long kick returns made by the player during the game.
447
+ * **long_punt_return**: The long punt returns made by the player during the game.
448
+ * **misc_fumble_returns**: The miscellaneous fumble returns made by the player during the game.
449
+ * **misc_fumble_return_yards**: The yards gained by miscellaneous fumble returns made by the player during the game.
450
+ * **opposition_fumble_recoveries**: The opposition fumble recoveries made by the player during the game.
451
+ * **opposition_fumble_recovery_yards**: The yards gained by opposition fumble recoveries made by the player during the game.
452
+ * **opposition_special_team_fumble_returns**: The opposition special team fumble returns made by the player during the game.
453
+ * **opposition_special_team_fumble_return_yards**: The opposition special team fumble return yards made by the player during the game.
454
+ * **punt_return_fair_catches**: The number of punt return fair catches made by the player during the game.
455
+ * **punt_return_fair_catch_percentage**: The percentage of punt return fair catches made by the player during the game.
456
+ * **punt_return_fumbles**: The number of punt return fumbles made by the player during the game.
457
+ * **punt_return_fumbles_lost**: The number of punt return fumbles lost by the player during the game.
458
+ * **punt_returns**: The number of punt returns made by the player during the game.
459
+ * **punt_returns_started_inside_the_10**: The number of punt returns started inside the 10 yard line by the player during the game.
460
+ * **punt_returns_started_inside_the_20**: The number of punt returns started inside the 20 yard line by the player during the game.
461
+ * **punt_return_touchdowns**: The number of punt return touchdowns made by the player during the game.
462
+ * **punt_return_yards**: The yards gained by the player during the game.
463
+ * **special_team_fumble_returns**: The special team fumble returns made by the player during the game.
464
+ * **yards_per_kick_return**: The yards gained per kick return made by the player during the game.
465
+ * **yards_per_punt_return**: The yards gained per punt return made by the player during the game.
466
+ * **yards_per_return**: The yards gained per return made by the player during the game.
467
+ * **average_punt_return_yards**: The average yards gained per punt return made by the player during the game.
468
+ * **fair_catches**: The number of fair catches made by the player during the game.
469
+ * **gross_average_punt_yards**: The gross average punt yards made by the player during the game.
470
+ * **long_punt**: The long punts made by the player during the game.
471
+ * **net_average_punt_yards**: The net average punt yards made by the player during the game.
472
+ * **punts**: The punts made by the player during the game.
473
+ * **punts_blocked**: The punts blocked made by the player during the game.
474
+ * **punts_blocked_percentage**: The percentage of punts blocked by the player during the game.
475
+ * **punts_inside_10**: The punts made by the player inside the 10 yard line during the game.
476
+ * **punts_inside_10_percentage**: The percentage of punts made by the player inside the 10 yard line during the game.
477
+ * **punts_inside_20**: The punts made by the player inside the 20 yard line during the game.
478
+ * **punts_inside_20_percentage**: The percentage of punts made by the player inside the 20 yard line during the game.
479
+ * **punts_over_50**: The punts over the 50 yard line made by the player during the game.
480
+ * **punt_yards**: The punt yards made by the player during the game.
481
+ * **defensive_points**: The points scored defensively by the player during the game.
482
+ * **misc_points**: The miscellaneous points made by the player during the game.
483
+ * **return_touchdowns**: The return touchdowns made by the player during the game.
484
+ * **total_two_point_conversions**: The total two point conversions made by the player during the game.
485
+ * **passing_touchdowns_9_yards**: The passing touchdowns made by the player during the game from 9 yards.
486
+ * **passing_touchdowns_19_yards**: The passing touchdowns made by the player during the game from 19 yards.
487
+ * **passing_touchdowns_29_yards**: The passing touchdowns made by the player during the game from 29 yards.
488
+ * **passing_touchdowns_39_yards**: The passing touchdowns made by the player during the game from 39 yards.
489
+ * **passing_touchdowns_49_yards**: The passing touchdowns made by the player during the game from 49 yards.
490
+ * **passing_touchdowns_above_50_yards**: The passing touchdowns made by the player during the game above 50 yards.
491
+ * **receiving_touchdowns_9_yards**: The receiving touchdowns made by the player during the game from 9 yards.
492
+ * **receiving_touchdowns_19_yards**: The receiving touchdowns made by the player during the game from 19 yards.
493
+ * **receiving_touchdowns_29_yards**: The receiving touchdowns made by the player during the game from 29 yards.
494
+ * **receiving_touchdowns_39_yards**: The receiving touchdowns made by the player during the game from 39 yards.
495
+ * **receiving_touchdowns_49_yards**: The receiving touchdowns made by the player during the game from 49 yards.
496
+ * **receiving_touchdowns_above_50_yards**: The receiving touchdowns made by the player during the game above 50 yards.
497
+ * **rushing_touchdowns_9_yards**: The rushing touchdowns made by the player during the game from 9 yards.
498
+ * **rushing_touchdowns_19_yards**: The rushing touchdowns made by the player during the game from 19 yards.
499
+ * **rushing_touchdowns_29_yards**: The rushing touchdowns made by the player during the game from 29 yards.
500
+ * **rushing_touchdowns_39_yards**: The rushing touchdowns made by the player during the game from 39 yards.
501
+ * **rushing_touchdowns_49_yards**: The rushing touchdowns made by the player during the game from 49 yards.
502
+ * **rushing_touchdowns_above_50_yards**: The rushing touchdowns made by the player during the game above 50 yards.
295
503
 
296
504
  #### Odds
297
505
 
@@ -75,6 +75,7 @@ The supported leagues are:
75
75
  * **Player**: A player within the team.
76
76
  * **Address**: The address information of a players birth.
77
77
  * **Owner**: The owner of the player.
78
+ * **Venue**: The college of the player.
78
79
  * **Odds**: The odds for the team to win the game.
79
80
  * **Bookie**: The bookie publishing the odds.
80
81
  * **News**: News about the team the day before the game.
@@ -211,7 +212,7 @@ A representation of a player within a team within a game.
211
212
  * **sex**: The sex of the player.
212
213
  * **age**: The age of the player in years.
213
214
  * **starting_position**: The starting position of the player.
214
- * **weight**: The weight of the player in (in KGs).
215
+ * **weight**: The weight of the player (in KGs).
215
216
  * **birth_address**: The address model for the players birth location.
216
217
  * **seconds_played**: The amount of seconds the player played the game for.
217
218
  * **field_goals_percentage**: The ratio of field goals scored by field goals attempted for the player during the game.
@@ -230,6 +231,213 @@ A representation of a player within a team within a game.
230
231
  * **game_score**: The [John Hollinger game score](https://www.nbastuffer.com/analytics101/game-score/) of the player during the game.
231
232
  * **point_differential**: The points scored by the players team while the player was on the court minus the points scored by the opposing team when the player is off the court.
232
233
  * **version**: The version of the player model.
234
+ * **height**: The height of the player in (in CMs).
235
+ * **college**: The college the player went to.
236
+ * **headshot**: An image URL representing the headshot of the player.
237
+ * **forced_fumbles**: The number of forced fumbles made by the player during the game.
238
+ * **fumbles_recovered**: The number of fumbles recovered made by the player during the game.
239
+ * **fumbles_recovered_yards**: The yards gained during fumbles recovered by the player during the game.
240
+ * **fumbles_touchdowns**: The number of fumble touchdowns made by the player during the game.
241
+ * **offensive_two_point_returns**: The number of offensive two point returns made by the player during the game.
242
+ * **offensive_fumbles_touchdowns**: The number of offensive fumbles touchdowns made by the player during the game.
243
+ * **defensive_fumbles_touchdowns**: The number of defensive fumbles touchdowns made by the player during the game.
244
+ * **average_gain**: The average number of yards gained by the player during the game.
245
+ * **completion_percentage**: The completion percentage of the player during the game.
246
+ * **completions**: The number of completions made by the player during the game.
247
+ * **espn_quarterback_rating**: The number of ESPN quarterback rating of the player.
248
+ * **interception_percentage**: The interception percentage of the player during the game.
249
+ * **interceptions**: The number of interceptions made by the player during the game.
250
+ * **long_passing**: The number of long passes made by the player during the game.
251
+ * **misc_yards**: The miscellaneous yards gained by the player during the game.
252
+ * **net_passing_yards**: The total passing yards gained by the player during the game.
253
+ * **net_total_yards**: The net total yards gained by the player during the game.
254
+ * **passing_attempts**: The number of attempted passes made by the player during the game.
255
+ * **passing_big_plays**: The number of passes that led to big plays made by the player during the game.
256
+ * **passing_first_downs**: The number of passes first downs made by the player during the game.
257
+ * **passing_fumbles**: The number of passing fumbles made by the player during the game.
258
+ * **passing_fumbles_lost**: The number of passing fumbles lost by the player during the game.
259
+ * **passing_touchdown_percentage**: The percentage of passing touchdowns by the player during the game.
260
+ * **passing_touchdowns**: The number of passing touchdowns made by the player during the game.
261
+ * **passing_yards**: The yards gained by the player during passing during the game.
262
+ * **passing_yards_after_catch**: The yards gained by the player after passing after a catch during the game.
263
+ * **passing_yards_at_catch**: The yards gained by the player after passing before a catch during the game.
264
+ * **quarterback_rating**: The quarterback rating of the player.
265
+ * **sacks**: The number of sacks made by the player during the game.
266
+ * **sacks_yards_lost**: The yards lost by the player performing a sack during the game.
267
+ * **net_passing_attempts**: The number of passing attempts made by the player during the game.
268
+ * **total_offensive_plays**: The number of offensive plays made by the player during the game.
269
+ * **total_points**: The number of points made by the player during the game.
270
+ * **total_touchdowns**: The number of touchdowns made by the player during the game.
271
+ * **total_yards**: The total yards gained by the player during the game.
272
+ * **total_yards_from_scrimmage**: The total yards gained by the player from scrimmage during the game.
273
+ * **two_point_pass**: The two point passes made by the player during the game.
274
+ * **two_point_pass_attempt**: The attempts at two point passes made by the player during the game.
275
+ * **yards_per_completion**: The yards gained per completion by the player during the game.
276
+ * **yards_per_pass_attempt**: The yards gained per pass attempt by the player during the game.
277
+ * **net_yards_per_pass_attempt**: The net number of yards gained per pass attempt by the player during the game.
278
+ * **long_rushing**: The long rushes made by the player during the game.
279
+ * **rushing_attempts**: The attempted rushes made by the player during the game.
280
+ * **rushing_big_plays**: The rushes resulting in big plays made by the player during the game.
281
+ * **rushing_first_downs**: The rushing first downs made by the player during the game.
282
+ * **rushing_fumbles**: The rushing fumbles made by the player during the game.
283
+ * **rushing_fumbles_lost**: The rushing fumbles lost by the player during the game.
284
+ * **rushing_touchdowns**: The rushing touchdowns made by the player during the game.
285
+ * **rushing_yards**: The yards made by rushing by the player during the game.
286
+ * **stuffs**: The stuffs made by the player during the game.
287
+ * **stuff_yards_lost**: The yards lost while stuffing by the player during the game.
288
+ * **two_point_rush**: The number of two point rushes made by the player during the game.
289
+ * **two_point_rush_attempts**: The number of attempted two point rushes made by the player during the game.
290
+ * **yards_per_rush_attempt**: The number of yards per rush attempt made by the player during the game.
291
+ * **espn_widereceiver**: The ESPN rating for the wide receiver.
292
+ * **long_reception**: The number of long receptions made by the player during the game.
293
+ * **receiving_big_plays**: The number of receives that resulted in big plays made by the player during the game.
294
+ * **receiving_first_downs**: The number of first down receives made by the player during the game.
295
+ * **receiving_fumbles**: The number of fumble receives made by the player during the game.
296
+ * **receiving_fumbles_lost**: The number of fumble receives lost by the player during the game.
297
+ * **receiving_targets**: The number of target receives made by the player during the game.
298
+ * **receiving_yards**: The number of yards gained by receives by the player during the game.
299
+ * **receiving_yards_after_catch**: The number of yards gained by receives by the player during the game after a catch.
300
+ * **receiving_yards_at_catch**: The number of yards gained by the receives by the player during the game at a catch.
301
+ * **receptions**: The number of receptions made by the player during the game.
302
+ * **two_point_receptions**: The number of two point receptions made by the player during the game.
303
+ * **two_point_reception_attempts**: The number of two point reception attempts made by the player during the game.
304
+ * **yards_per_reception**: The yards gained on average per reception by the player during the game.
305
+ * **assist_tackles**: The number of assist tackles made by the player during the game.
306
+ * **average_interception_yards**: The average number of yards gained by an interception made by the player during the game.
307
+ * **average_sack_yards**: The average number of yards gained by a sack made by the player during the game.
308
+ * **average_stuff_yards**: The average number of yards gained by a stuff made by the player during the game.
309
+ * **blocked_field_goal_touchdowns**: The number of blocked field goal touchdowns made by the player during the game.
310
+ * **blocked_punt_touchdowns**: The number of blocked punt touchdowns made by the player during the game.
311
+ * **defensive_touchdowns**: The number of defensive touchdowns made by the player during the game.
312
+ * **hurries**: The number of hurries made by the player during the game.
313
+ * **kicks_blocked**: The number of kicks blocked by the player during the game.
314
+ * **long_interception**: The number of long interceptions made by the player during the game.
315
+ * **misc_touchdowns**: The number of miscellaneous touchdowns made by the player during the game.
316
+ * **passes_batted_down**: The number of passes batted down by the player during the game.
317
+ * **passes_defended**: The number of passes defended by the player during the game.
318
+ * **quarterback_hits**: The number of quarterback hits made by the player during the game.
319
+ * **sacks_assisted**: The number of sacks the player assisted with during the game.
320
+ * **sacks_unassisted**: The number of sacks the player made unassisted during the game.
321
+ * **sacks_yards**: The number of yards gained by the player making a sack during the game.
322
+ * **safeties**: The safeties made by the player during the game.
323
+ * **solo_tackles**: The number of solo tackles made by the player during the game.
324
+ * **stuff_yards**: The yards gained by the stuffs made by the player during the game.
325
+ * **tackles_for_loss**: The tackles for losses made by the player during the game.
326
+ * **tackles_yards_lost**: The yards lost by tackles made by the player during the game.
327
+ * **yards_allowed**: The yards allowed to be gained by the player during the game.
328
+ * **points_allowed**: The points allowed to be gained by the player during the game.
329
+ * **one_point_safeties_made**: The one point safeties made by the player during the game.
330
+ * **missed_field_goal_return_td**: The missed field goal return TD made by the player during the game.
331
+ * **blocked_punt_ez_rec_td**: The blocked punt EZ rec TD of the player during the game.
332
+ * **interception_touchdowns**: The number of interception touchdowns made by the player during the game.
333
+ * **interception_yards**: The number of yards gained by interceptions made by the player during the game.
334
+ * **average_kickoff_return_yards**: The average number of kickoff return yards made by the player during the game.
335
+ * **average_kickoff_yards**: The average number of kickoff yards made by the player during the game.
336
+ * **extra_point_attempts**: The number of extra point attempts made by the player during the game.
337
+ * **extra_point_percentage**: The number of extra point percentages made by the player during the game.
338
+ * **extra_point_blocked**: The number of extra points blocked by the player during the game.
339
+ * **extra_points_blocked_percentage**: The percentage of extra points blocked by the player during the game.
340
+ * **extra_points_made**: The number of extra points made by the player during the game.
341
+ * **fair_catches**: The number of fair catches made by the player during the game.
342
+ * **fair_catch_percentage**: The percentage of fair catches made by the player during the game.
343
+ * **field_goal_attempts_max_19_yards**: The field goal attempts between 0-19 yards made by the player during the game.
344
+ * **field_goal_attempts_max_29_yards**: The field goal attempts between 19-29 yards made by the player during the game.
345
+ * **field_goal_attempts_max_39_yards**: The field goal attempts between 29-39 yards made by the player during the game.
346
+ * **field_goal_attempts_max_49_yards**: The field goal attempts between 39-49 yards made by the player during the game.
347
+ * **field_goal_attempts_max_59_yards**: The field goal attempts between 49-59 yards made by the player during the game.
348
+ * **field_goal_attempts_max_99_yards**: The field goal attempts between 59-99 yards made by the player during the game.
349
+ * **field_goal_attempts_above_50_yards**: The field goal attempts above 50 yards made by the player during the game.
350
+ * **field_goal_attempt_yards**: The yards gained by field goal attempts made by the player during the game.
351
+ * **field_goals_blocked**: The field goals blocked by the player during the game.
352
+ * **field_goals_blocked_percentage**: The percentage of field goals made by the player during the game.
353
+ * **field_goals_made**: The number of field goals made by the player during the game.
354
+ * **field_goals_made_max_19_yards**: The number of field goals made between 0-19 yards by the player during the game.
355
+ * **field_goals_made_max_29_yards**: The number of field goals made between 19-29 yards by the player during the game.
356
+ * **field_goals_made_max_39_yards**: The number of field goals made between 29-39 yards by the player during the game.
357
+ * **field_goals_made_max_49_yards**: The number of field goals made between 39-49 yards by the player during the game.
358
+ * **field_goals_made_max_59_yards**: The number of field goals made between 49-59 yards by the player during the game.
359
+ * **field_goals_made_max_99_yards**: The number of field goals made between 59-99 yards by the player during the game.
360
+ * **field_goals_made_above_50_yards**: The number of field goals made over 50 yards by the player during the game.
361
+ * **field_goals_made_yards**: The number of yards gained by field goals made by the player during the game.
362
+ * **field_goals_missed_yards**: The number of yards gained by missed field goals made by the player during the game.
363
+ * **kickoff_out_of_bounds**: The number of out of bounds kickoffs made by the player during the game.
364
+ * **kickoff_returns**: The number of kickoff returns made by the player during the game.
365
+ * **kickoff_returns_touchdowns**: The number of kickoff returns touchdowns made by the player during the game.
366
+ * **kickoff_return_yards**: The yards gained by kickoff returns made by the player during the game.
367
+ * **long_field_goal_attempt**: The number of long field goal attempts made by the player during the game.
368
+ * **long_field_goal_made**: The number of long field goals made by the player during the game.
369
+ * **long_kickoff**: The number of long kickoffs made by the player during the game.
370
+ * **total_kicking_points**: The number of kicking points made by the player during the game.
371
+ * **touchback_percentage**: The percentage of touchbacks made by the player during the game.
372
+ * **touchbacks**: The touchbacks made by the player during the game.
373
+ * **defensive_fumble_returns**: The number of defensive fumble returns made by the player during the game.
374
+ * **defensive_fumble_return_yards**: The yards gained by defensive fumble returns made by the player during the game.
375
+ * **fumble_recoveries**: The fumble recoveries made by the player during the game.
376
+ * **fumble_recovery_yards**: The yards gained by fumble recoveries made by the player during the game.
377
+ * **kick_return_fair_catches**: The kick return fair catches made by the player during the game.
378
+ * **kick_return_fair_catch_percentage**: The percentage of kick return fair catches made by the player during the game.
379
+ * **kick_return_fumbles**: The kick return fumbles made by the player during the game.
380
+ * **kick_return_fumbles_lost**: The kick return fumbles lost by the player during the game.
381
+ * **kick_returns**: The kick returns made by the player during the game.
382
+ * **kick_return_touchdowns**: The kick return touchdowns made by the player during the game.
383
+ * **kick_return_yards**: The yards gained by kick returns made by the player during the game.
384
+ * **long_kick_return**: The long kick returns made by the player during the game.
385
+ * **long_punt_return**: The long punt returns made by the player during the game.
386
+ * **misc_fumble_returns**: The miscellaneous fumble returns made by the player during the game.
387
+ * **misc_fumble_return_yards**: The yards gained by miscellaneous fumble returns made by the player during the game.
388
+ * **opposition_fumble_recoveries**: The opposition fumble recoveries made by the player during the game.
389
+ * **opposition_fumble_recovery_yards**: The yards gained by opposition fumble recoveries made by the player during the game.
390
+ * **opposition_special_team_fumble_returns**: The opposition special team fumble returns made by the player during the game.
391
+ * **opposition_special_team_fumble_return_yards**: The opposition special team fumble return yards made by the player during the game.
392
+ * **punt_return_fair_catches**: The number of punt return fair catches made by the player during the game.
393
+ * **punt_return_fair_catch_percentage**: The percentage of punt return fair catches made by the player during the game.
394
+ * **punt_return_fumbles**: The number of punt return fumbles made by the player during the game.
395
+ * **punt_return_fumbles_lost**: The number of punt return fumbles lost by the player during the game.
396
+ * **punt_returns**: The number of punt returns made by the player during the game.
397
+ * **punt_returns_started_inside_the_10**: The number of punt returns started inside the 10 yard line by the player during the game.
398
+ * **punt_returns_started_inside_the_20**: The number of punt returns started inside the 20 yard line by the player during the game.
399
+ * **punt_return_touchdowns**: The number of punt return touchdowns made by the player during the game.
400
+ * **punt_return_yards**: The yards gained by the player during the game.
401
+ * **special_team_fumble_returns**: The special team fumble returns made by the player during the game.
402
+ * **yards_per_kick_return**: The yards gained per kick return made by the player during the game.
403
+ * **yards_per_punt_return**: The yards gained per punt return made by the player during the game.
404
+ * **yards_per_return**: The yards gained per return made by the player during the game.
405
+ * **average_punt_return_yards**: The average yards gained per punt return made by the player during the game.
406
+ * **fair_catches**: The number of fair catches made by the player during the game.
407
+ * **gross_average_punt_yards**: The gross average punt yards made by the player during the game.
408
+ * **long_punt**: The long punts made by the player during the game.
409
+ * **net_average_punt_yards**: The net average punt yards made by the player during the game.
410
+ * **punts**: The punts made by the player during the game.
411
+ * **punts_blocked**: The punts blocked made by the player during the game.
412
+ * **punts_blocked_percentage**: The percentage of punts blocked by the player during the game.
413
+ * **punts_inside_10**: The punts made by the player inside the 10 yard line during the game.
414
+ * **punts_inside_10_percentage**: The percentage of punts made by the player inside the 10 yard line during the game.
415
+ * **punts_inside_20**: The punts made by the player inside the 20 yard line during the game.
416
+ * **punts_inside_20_percentage**: The percentage of punts made by the player inside the 20 yard line during the game.
417
+ * **punts_over_50**: The punts over the 50 yard line made by the player during the game.
418
+ * **punt_yards**: The punt yards made by the player during the game.
419
+ * **defensive_points**: The points scored defensively by the player during the game.
420
+ * **misc_points**: The miscellaneous points made by the player during the game.
421
+ * **return_touchdowns**: The return touchdowns made by the player during the game.
422
+ * **total_two_point_conversions**: The total two point conversions made by the player during the game.
423
+ * **passing_touchdowns_9_yards**: The passing touchdowns made by the player during the game from 9 yards.
424
+ * **passing_touchdowns_19_yards**: The passing touchdowns made by the player during the game from 19 yards.
425
+ * **passing_touchdowns_29_yards**: The passing touchdowns made by the player during the game from 29 yards.
426
+ * **passing_touchdowns_39_yards**: The passing touchdowns made by the player during the game from 39 yards.
427
+ * **passing_touchdowns_49_yards**: The passing touchdowns made by the player during the game from 49 yards.
428
+ * **passing_touchdowns_above_50_yards**: The passing touchdowns made by the player during the game above 50 yards.
429
+ * **receiving_touchdowns_9_yards**: The receiving touchdowns made by the player during the game from 9 yards.
430
+ * **receiving_touchdowns_19_yards**: The receiving touchdowns made by the player during the game from 19 yards.
431
+ * **receiving_touchdowns_29_yards**: The receiving touchdowns made by the player during the game from 29 yards.
432
+ * **receiving_touchdowns_39_yards**: The receiving touchdowns made by the player during the game from 39 yards.
433
+ * **receiving_touchdowns_49_yards**: The receiving touchdowns made by the player during the game from 49 yards.
434
+ * **receiving_touchdowns_above_50_yards**: The receiving touchdowns made by the player during the game above 50 yards.
435
+ * **rushing_touchdowns_9_yards**: The rushing touchdowns made by the player during the game from 9 yards.
436
+ * **rushing_touchdowns_19_yards**: The rushing touchdowns made by the player during the game from 19 yards.
437
+ * **rushing_touchdowns_29_yards**: The rushing touchdowns made by the player during the game from 29 yards.
438
+ * **rushing_touchdowns_39_yards**: The rushing touchdowns made by the player during the game from 39 yards.
439
+ * **rushing_touchdowns_49_yards**: The rushing touchdowns made by the player during the game from 49 yards.
440
+ * **rushing_touchdowns_above_50_yards**: The rushing touchdowns made by the player during the game above 50 yards.
233
441
 
234
442
  #### Odds
235
443
 
@@ -26,7 +26,7 @@ def install_requires() -> typing.List[str]:
26
26
 
27
27
  setup(
28
28
  name='sportsball',
29
- version='0.8.8',
29
+ version='0.9.1',
30
30
  description='A library for pulling in and normalising sports stats.',
31
31
  long_description=long_description,
32
32
  long_description_content_type='text/markdown',
@@ -4,4 +4,4 @@
4
4
  import cchardet # type: ignore
5
5
  import lxml # noqa: ignore
6
6
 
7
- __VERSION__ = "0.8.8"
7
+ __VERSION__ = "0.9.1"