Skip to content

Dynamic chess is chess but there is an extra piece; the wizard that can dynamically shift, remove, add and manipulate the board the other pieces are playing on.

Notifications You must be signed in to change notification settings

smiddy-001/Dynamic-Chess

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chess 'i Guess

made with:

Design

minimal and sleek

run with . venv/bin/activate && python app.py

Theming

img_1.png

colors, Picks the black, a random colourful one and uses plain white #111420, #ee1e0b, #eee52f, #17cc26, #2b68d9, #9828b6

{"Rich black":"111420","Off Red":"ee1e0b","Aureolin":"eee52f","Lime green":"17cc26","Celtic Blue":"2b68d9","Dark violet":"9828b6"}

Testing

The best way to test Quart is with Tox,

$ pip install tox
$ tox

A minimal Quart example is,

from quart import Quart, render_template, websocket

app = Quart(__name__)

@app.route("/")
async def hello():
    return await render_template("index.html")

@app.route("/api")
async def json():
    return {"hello": "world"}

@app.websocket("/ws")
async def ws():
    while True:
        await websocket.send("hello")
        await websocket.send_json({"hello": "world"})

if __name__ == "__main__":
    app.run()

About

Dynamic chess is chess but there is an extra piece; the wizard that can dynamically shift, remove, add and manipulate the board the other pieces are playing on.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published