Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/adalfarus/zeekit
- Owner: adalfarus
- License: lgpl-2.1
- Created: 2024-07-20T12:48:53.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-23T17:44:37.000Z (6 months ago)
- Last Synced: 2024-12-03T10:27:16.779Z (about 2 months ago)
- Language: Python
- Size: 69.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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)```