kawa-kokosowa / sappho

2D Game Library
http://sappho.lillian.link/
MIT License
15 stars 1 forks source link
game-2d game-engine pygame python

Sappho Logo (A Lyre)

GitHub license PyPI Version Code Climate Travis Coverage Status

Sappho is a 2D game engine written with Python (2 and 3) and pygame.

sappho in action

Lily Seabreeze is this project's mom and owner. Be sure to checkout the AUTHORS.md!

Design Philosophy

  1. Don't interfere with the way people build their pygame games
  2. We are not automating game logic
  3. Sappho modules may not import other Sappho modules
  4. Inherit from pygame objects when possible; use conventional pygame models/architecture.
  5. Consistency.
  6. Simplicity trumps all else.
  7. Well documented.
  8. Code is easy-to-test. We show that with our 100% test coverage.

For more check CONTRIBUTING.md.

Getting Started

Install pygame:

Install sappho and run the demo:

  1. Install: pip install -r requirements/main.txt .
  2. cd demo/
  3. python demo.py

Be sure to checkout the contents of demo.py for a sample on how Sappho is used.

We also have some good docs: http://sappho.lillian.link/

If you wanna contribute, please read CONTRIBUTING.md!