Metadata-Version: 2.1
Name: pybiwenger
Version: 0.1.0
Summary: A python package to interact with the Soccer Fantasy Game Biwenger
License: MIT
Author: Pablo Minue
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: black (>=25.1.0,<26.0.0)
Requires-Dist: isort (>=6.0.1,<7.0.0)
Requires-Dist: pydantic (>=2.11.7,<3.0.0)
Requires-Dist: requests (>=2.32.5,<3.0.0)
Requires-Dist: retry (>=0.9.2,<0.10.0)
Requires-Dist: rich (>=14.1.0,<15.0.0)
Description-Content-Type: text/markdown

# pybiwenger

pybiwenger is a Python Library that allows to interact with the Soccer Fantasy Game Biwenger.

## Installation

You can either install it via cloning the repository:

```bash
git clone https://github.com/pablominue/pybiwenger.git
```

or via pip

```bash
pip install pybiwenger
```

To be able to use the modules and tools this library provides, you will need to authenticate after importing the library:

```python
import pybiwenger

pybiwenger.authenticate(
    username="your_biwenger_email",
    password="your_biwenger_passowrd"
)
```

These credentials will only be stored in your local environment variables

