Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sleventyeleven/pyscore
A very Simple Python Based Scoring Engine.
https://github.com/sleventyeleven/pyscore
Last synced: about 1 month ago
JSON representation
A very Simple Python Based Scoring Engine.
- Host: GitHub
- URL: https://github.com/sleventyeleven/pyscore
- Owner: sleventyeleven
- License: gpl-3.0
- Created: 2014-02-13T21:18:59.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-10T20:20:22.000Z (over 9 years ago)
- Last Synced: 2024-11-29T16:47:35.953Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 398 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PyScore
=======A very Simple Python Based Scoring Engine
Currently In the works.
Note: See the current development branch for more featured, although bleeding edge, code.
Requires
========python 2.5+
Python MySQLdb
MySQL 5.0+
Apache 2.2+
mod_python
Installation
============In order for the side to work, mod_python must be installed and your apache configure should look something like this.
...
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
DirectoryIndex page.py
AuthBasicAuthoritative off
AddHandler mod_python .py
PythonHandler mod_python.publisher
PythonDebug On
PythonAuthenHandler auth
AuthType Basic
AuthName "Restricted Area"
require valid-user
...Your database structure should be something like the following.
PyScore
PS_Users User_Name:Text User_Password:PASSWORD() Total_Points:Int
PS_Challenges Challenge_Completed:CSV Point_Value:Int Challenge_Text:Text Challenge_Answer:Text
More detailed information to come.