Metadata-Version: 2.4
Name: gwo
Version: 0.1.9
Summary: a damn fine wrapper for reverse-enginered gwo api
Home-page: https://github.com/Reb0rnEnder/GWOApi
Author: RebornEnder
Author-email: contact@dotbend.xyz
License: LICENCE
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.12.15
Requires-Dist: beautifulsoup4>=4.14.2
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# GWO (Python)
### Reverse-enginered [GWO](https://gwo.pl/) api wrapper for Python
[![PyPI - Version](https://img.shields.io/pypi/v/gwo?color=%2334D058)](https://pypi.org/project/gwo/) [![PyPI Downloads](https://static.pepy.tech/personalized-badge/gwo?period=total&units=INTERNATIONAL_SYSTEM&left_color=GREY&right_color=BLUE&left_text=downloads)](https://pepy.tech/projects/gwo) [![Static Badge](https://img.shields.io/badge/python-3.9_%7C_3.10_%7C_3.11_%7C_3.12_%7C_3.13_%7C_3.14-%2334D058)](https://pypi.org/project/gwo/)
---
GWO (Python) is an api wrapper for GWO (Website) that allows you to programmatically extract excercises from the users accesses, modify and view user info, and anwser exercises all in a simple to use package
### đź“± Ultra compatible
Due to its simple nature GWO (Python) is compatible with almost every platform*
### đź§¶ Niche but usefull
* Stuck on an exercise? Code up a tool to show you the anwser.
* Training an ai? Extract all exercises and their anwsers to train a model capable of solving the exercises.
* I have honestly no idea for what else you might wanna use this for, its very niche i said.

## Example of a script using GWO
Below is a simple script, using user input to log in and print out user info:
```python
from GWO import GWOApi, User, LoginException, FetchException
from typing import Optional
import asyncio

async def login(username: str, password: str) -> Optional[User]:
    if not (username and password):
        return None
    try:
        client: GWOApi = await GWOApi.login(username, password)
        return client.user
    except (LoginException, FetchException):
        return None

async def main():
    print("Welcome to GWO!\nLogin with your GWO account")
    while True:
        username: str = input("Username: ")
        password: str = input("Password: ")
        if not (username and password):
            print("Username or password cannot be empty!"); continue
        user: Optional[User] = await login(username, password)
        if not user:
            print("Invalid username or password!"); continue
        print(f"Hello, {user.firstName}!"); break

asyncio.run(main())
```
To run the script, install `GWO`:
```console
pip install GWO
```

> We use analytics but don't worry, they're anonymous (and you can disable them (refer to docstrings))
