https://github.com/xudyang1/nba-player-stats-explorer
NBA player data exploration
https://github.com/xudyang1/nba-player-stats-explorer
python streamlit
Last synced: about 1 month ago
JSON representation
NBA player data exploration
- Host: GitHub
- URL: https://github.com/xudyang1/nba-player-stats-explorer
- Owner: xudyang1
- License: mit
- Created: 2024-12-12T23:48:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-13T00:17:21.000Z (over 1 year ago)
- Last Synced: 2025-09-02T00:45:08.521Z (10 months ago)
- Topics: python, streamlit
- Language: Python
- Homepage: https://nba-player-stats.streamlit.app
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [Web App for NBA Player Data Exploration](https://nba-player-stats.streamlit.app)
## Development
1. setup and activate python virtual environment. For example,
```bash
python3 -m venv .venv
source .venv/bin/activate
```
2. install dependencies
```bash
pip install -r requirements.txt
pip install -r requirements-dev.txt
```
3. install pre-commit hook
```bash
pre-commit install
```
3. run app
```bash
streamlit run ./src/app.py
```