Skip to content

Py-GNU-Unix/oopygame

Repository files navigation

icon.svg

oopygame

An object oriented api based on pygame 💣🖥️🚀


Brief description

That's an Object-oriented API based on pygame. The goal of this library is help to create great programs in less time as possible. This library is easly extendible with demon and subclasses.

example screenshot.png

Supported platforms:

  • GNU/Linux (both wayland and xorg)

  • BSD (both wayland and xorg)

  • Windows (99%)

  • OS X (99%)


Installation

The installation of this module is very simple.

pip3 install git+https://github.com/Py-GNU-Unix/oopygame.git

and for removing

pip3 uninstall oopygame

Basic example

import oopygame as oop

my_win = oop.Window()

obj = oop.Object(my_win)

while True:
    my_win.do_routine()

We hope that our article has helped you