Skip to main content

a damn fine wrapper for reverse-enginered gwo api

Reason this release was yanked:

broken

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.6.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.6-py3-none-any.whl (21.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: gwo-0.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 c6704f7142e367a681c8b901f4d5eee90fdc948df97b8091394ab4f10017728e
MD5 b163b5f4684e9bd47a470ecefc462821
BLAKE2b-256 495dddc4903e7bf538d9c62cc17436dc8177a7f9c3815240d945938a75064def

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gwo-0.1.6-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.6-py3-none-any.whl
Algorithm Hash digest
SHA256 5f643154c24f1d910071e1655d3e84cf0be3e5a7d00e07cd8901085bf33a8d8b
MD5 4ead310294704a47d01d39fea553af0a
BLAKE2b-256 4967337b99f5bec8de19901a76e33df47ff573d6d27c21eb226a11d7dab50857

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