Metadata-Version: 2.1
Name: pygase
Version: 0.2.0
Summary: A lightweight client-server technology and UDP-based network protocol for real-time online gaming.
Home-page: https://github.com/sbischoff-ai/python-game-service
License: MIT
Keywords: client,server,real-time,network,games
Author: Silas Bischoff
Author-email: silas.bischoff@googlemail.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Internet
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Requires-Dist: curio (>=0.9.0,<0.10.0)
Requires-Dist: ifaddr (>=0.1.6,<0.2.0)
Requires-Dist: u-msgpack-python (>=2.5,<3.0)
Project-URL: Repository, https://github.com/sbischoff-ai/python-game-service
Description-Content-Type: text/markdown

[![Build Status](https://dev.azure.com/pxlbrain/pygase/_apis/build/status/sbischoff-ai.pygase?branchName=master)](https://dev.azure.com/pxlbrain/pygase/_build/latest?definitionId=2&branchName=master)
![Azure DevOps tests (branch)](https://img.shields.io/azure-devops/tests/pxlbrain/pygase/1/master.svg)
![Azure DevOps coverage (branch)](https://img.shields.io/azure-devops/coverage/pxlbrain/pygase/1/master.svg)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
![PyPI](https://img.shields.io/pypi/v/pygase.svg)
# PyGaSe
**Py**thon**Ga**me**Se**rver

A Python package that contains a versatile lightweight UDP-based client-server API and network protocol for 
real-time online games.

### Installation:
```
pip install pygase
```

## Example

[This example game implements](/chase/) an online game of chase, in which players can move around,
while one of them is the chaser who has to catch another player. A player who has been
catched becomes the next chaser and can catch other players after a 5s protection countdown.

For a complete API documentation look in [here](/docs/api/) (see GitHub if you're on PyPI.org).

