Allejo is an django app who provides management and creation for custom tournaments and rankings for some sports like soccer. You can use django-allejo for football management simulation games like elifoot or Football Manager also for backend APIs like goalserve and Tabela Fácil.
Allejo works fine on Django 1.4+ and Django 1.7
pip install django-allejo
Put allejo app into INSTALLED_APPS
:
INSTALLED_APPS = [
...
'allejo',
]
python manage.py migrate allejo
For Django 1.4+ and South users use this SETTINGS
below:
SOUTH_MIGRATION_MODULES = {
'allejo': 'allejo.south_migrations',
}
You can input data through django-admin or make a wrapper to read some external API.
# get all matches from a championship
championship.match_set.all()
# standings from a championship
championship.standings_set.all()
Special thanks to Intip! Thanks for giving space for our 'social codings' hackathons.
Copyright (c) 2013 Igor P. Leroy. See LICENSE for details.