Metadata-Version: 2.4
Name: volleyball_prediction
Version: 0.1.0
Summary: Python package to predict women's volleyball match results.
Author-email: İlayda & Selinay & İrem & Merve <selinydeniz@gmail.com>
Project-URL: Homepage, https://github.com/selinydeniz/volleyball_prediction
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: scikit-learn
Requires-Dist: fastapi
Requires-Dist: uvicorn[standard]
Requires-Dist: joblib
Dynamic: license-file

# volleyball_prediction
This Python package contains a machine learning model to predict the outcome of women's volleyball matches. The model can also be provided as a REST API with FastAPI.

---

## Features

- Prediction of international matches (example: Türkiye vs. Serbia)
- Ready-trained model (recorded with joblib)
- Get live predictions via API
- Data cleaning and preprocessing with Pandas

---

## Installation

You can install it from PyPI with the following command:

```bash
pip install volleyball_prediction


from volleyball_prediction.main import guess

print(guess("Türkiye", "Sırbistan"))
# Çıktı: "Türkiye" veya "Sırbistan"

uvicorn volleyball_prediction.predict_api:app --reload


