Metadata-Version: 2.1
Name: python-nbaclient
Version: 0.0.5
Summary: A Python Wrapper of NBA RESTful Stats APIs
Home-page: https://github.com/xuhang57/python_nbaclient
Author: Lucas H. Xu
Author-email: lucasxu.pub@gmail.com
License: GPLv3
Keywords: nba python client api
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pprint

# python-nbaclient

A Python Wrapper of NBA Stats RESTful APIs

## Installation

`pip install python_nbaclient`

## Example

```python
from python_nbaclient import teams
teams.FranchiseLeaders(1610612738)
{ 'parameters': {'LeagueID': None, 'TeamID': 1610612738},
  'resource': 'playerawards',
  'resultSets': [ { 'headers': [ 'TEAM_ID',
                                 'PTS',
                                 'PTS_PERSON_ID',
                                 'PTS_PLAYER',
                                 'AST',
                                 'AST_PERSON_ID',
                                 'AST_PLAYER',
                                 'REB',
                                 'REB_PERSON_ID',
                                 'REB_PLAYER',
                                 'BLK',
                                 'BLK_PERSON_ID',
                                 'BLK_PLAYER',
                                 'STL',
                                 'STL_PERSON_ID',
                                 'STL_PLAYER'],
                    'name': 'FranchiseLeaders',
                    'rowSet': [ [ 1610612738,
                                  26395,
                                  76970,
                                  'John Havlicek',
                                  6945,
                                  600003,
                                  'Bob Cousy',
                                  21620,
                                  78049,
                                  'Bill Russell',
                                  1703,
                                  305,
                                  'Robert Parish',
                                  1583,
                                  1718,
                                  'Paul Pierce']]}]}
```


