Pasty

Serverless state management using online text services.


License
Other
Install
pip install Pasty==0.0.0

Documentation

Pasty

Pasty is a library to provide "serverless" state management for games.

Getting Started

Requirements

Installation

Pasty can be installed with pip or easy_install:

pip install Pasty

Or directly from the source code:

python setup.py install

Basic Usage

After installation, abstract base classes can be imported from the package:

python
>>> import pasty
pasty.__version__

For Developers

Requirements

Environment

Create a virtualenv:

make develop

Run static analysis:

make doc
make pep8
make pylint
make check  # all of the above

Run the tests:

make test
make tests  # includes integration tests