Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/adalfarus/zeekit

A nice python 2d/3d/Gui library that relies soley on window events and drawing functions to work
https://github.com/adalfarus/zeekit

Last synced: about 1 month ago
JSON representation

A nice python 2d/3d/Gui library that relies soley on window events and drawing functions to work

Awesome Lists containing this project

README

        


Zee-Kit

This is a clever word play on the word See and Kit but with Z -- for coolness

If you have a better name please contact me

## How to set-up and use

```bash
py -m pip install zeekit zkit-pygame --upgrade
```

### Basic code example

```python
from zkitpg import PygameBackend
import zkit

# Create a render instance, this creates a window
renderer = zkit.Renderer(PygameBackend)

```