Metadata-Version: 2.1
Name: league-exp-util
Version: 0.1.0
Summary: A utility to calculate League of Legends experience points.
Home-page: https://github.com/FieryAced/league-exp-util
Author: JWasAway
Author-email: JWasAway@Outlook.com
Keywords: league of legends xp calculator game utilities
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# League Experience Utility

This package provides tools to calculate League of Legends experience points based on game duration and outcomes with consideration to First-Win-of-The-Day rewards.

## Installation

```bash
pip install league-exp-util
```
## Usage

```Python
from league_exp_util.exp_calculator import find

result = find(target_xp=5000, game_length=30, fwotd=1)
print(result)  # {'min': 21, 'max': 26, 'avg': 23}
```
