Skip to content

SuperMechs-oriented python library modeling game objects, mechanics, & more.

Notifications You must be signed in to change notification settings

Enegg/supermechs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

supermechs

Ruff Commit activity

Foundation for simulating the mechanics of the SuperMechs game.

Installing

Python 3.10 or higher is required.

To install the library, you can run the following command:

python -m pip install git+https://github.com/Enegg/supermechs.git

python should be replaced with your python executable.

There's currently no PyPI release available.

Versioning

The library is in its alpha stage. The API is immature and may substantially change as development progresses.

Quick example

import requests  # pip install requests
from serial import to_item_pack

with requests.get("https://raw.githubusercontent.com/Enegg/Item-packs/master/items.json") as resp:
    resp.raise_for_status()
    pack = to_item_pack(resp.json())

print(pack.data)
# do stuff with pack

About

SuperMechs-oriented python library modeling game objects, mechanics, & more.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published