Skip to main content

a damn fine wrapper for reverse-enginered gwo api

Project description

GWO (Python)

Reverse-enginered GWO api wrapper for Python

PyPI - Version PyPI Downloads Static Badge

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:

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:

pip install GWO

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gwo-0.1.7.tar.gz (21.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gwo-0.1.7-py3-none-any.whl (21.6 kB view details)

Uploaded Python 3

File details

Details for the file gwo-0.1.7.tar.gz.

File metadata

  • Download URL: gwo-0.1.7.tar.gz
  • Upload date:
  • Size: 21.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for gwo-0.1.7.tar.gz
Algorithm Hash digest
SHA256 8059e34a94f0df6bd16935ec78256eea4cf1b42fd68f7a747ef7691b46bfcd2e
MD5 c325111098ac150ef91ff3261f7a2f72
BLAKE2b-256 a0ac770755443adcef7e8e39ded21a29f959d381c38862149331a28e10537c8a

See more details on using hashes here.

File details

Details for the file gwo-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: gwo-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 21.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for gwo-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 07ca53295975e45d1e393a236f9169835eb44d68954d8c4ff0655ebfbc36b24d
MD5 6c8d8d37a3b662aebc18457f1179ee49
BLAKE2b-256 7f581afaa807fd7ab1be3f80e788dcf0939ce67e1d11118bd0abd286aee502bc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page