[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[pygame] AppState-0.1 released
- To: pygame-users@xxxxxxxx
- Subject: [pygame] AppState-0.1 released
- From: "Nathan Whitehead" <nwhitehe@xxxxxxxxx>
- Date: Tue, 16 Sep 2008 16:50:09 -0700
- Delivered-to: archiver@xxxxxxxx
- Delivered-to: pygame-users-outgoing@xxxxxxxx
- Delivered-to: pygame-users@xxxxxxxx
- Delivery-date: Tue, 16 Sep 2008 19:50:18 -0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=H0yd5OteG/5NJ/jKGZXjH9/Pxb5tk8p8Mq/Ss6elx38=; b=uSvRhkjh2qYriQcPGmgwNMaktZh1M39rt5XGoEvnX2sJapW346niOCgkJqV+7RSN2k YnxvmBwq6J6jaVUEe4zuYCVWUjONlkKn8kuHjeqjWLb2geIZqfOKUNVlVo+3Q/18tuWs BSbd/zGTrYuPk6QMR4ZMQjUS4BIpRvhlQwIC4=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=bfNIOrJnW253TTE6PhUWaGkFKN3Uy/w8pORGLyxS/1RrrdIew6iiOlHVZz+OyCgafP RDH1i36aW0L1mrDBc8VSPSw78ZkFfZ5OJm0IKdTn8T3dBBlR2qaljfjWiyT8XrCLZe7t NeIOl8ZwxrU40jt5+iKVSgEl8+JEkL1Av3dHM=
- Reply-to: pygame-users@xxxxxxxx
- Sender: owner-pygame-users@xxxxxxxx
I am proud to announce the release of AppState, a python package for
implementing a persistent shared application state.
This module allows your Python programs to easily have a persistent
global shared state. This state can be used to store things like
number of users, game high scores, message of the day from the author,
etc. The state has an interface like a dictionary with some
additional synchronization functionality and some restrictions. This
module connects to a server on the Google App Engine to store and
manage data. It uses a simple security model based on Google
accounts.
Why would you want to use this module?
* Quickly add multiplayer features to your Pygame game
* Take advantage of Google's efficient and reliable infrastructure (for free!)
* Super easy to get started and use
* Includes security features
Download from PyPI:
http://pypi.python.org/pypi/AppState
README with more info:
http://code.google.com/p/pygalaxy/wiki/AppState
Suggestions are welcome.
--
Nathan Whitehead