Skip to content

Latest commit

 

History

History
61 lines (41 loc) · 1.29 KB

README.md

File metadata and controls

61 lines (41 loc) · 1.29 KB

django-allejo

django-allejo

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

Installation

  pip install django-allejo

Put allejo app into INSTALLED_APPS:

  INSTALLED_APPS = [
      ...
      'allejo',
      ]
  python manage.py migrate allejo

Django < 1.7

For Django 1.4+ and South users use this SETTINGS below:

  SOUTH_MIGRATION_MODULES = {
      'allejo': 'allejo.south_migrations',
  }

Usage

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()

Credits

Special thanks to Intip! Thanks for giving space for our 'social codings' hackathons.

Copyright

Copyright (c) 2013 Igor P. Leroy. See LICENSE for details.