Django World Regions

Simple Django app to group countries in world's regions like Northern America, Eastern Europe, etc.

Regions data are based in http://techydiary.com/region-yaml-for-django-fixtures/ thanks Stephen for that.

Django Countries is used to handle countries.

Note

This package don't use GeoDjango

Installation

  1. pip install django-world-regions
  2. Add world_regions to INSTALLED_APPS
  3. python manage.py migrate
  4. python manage.py loaddata fixtures/initial_data.json

Usage

from world_regions.models import Region

region = Region.objects.get(countries_country='US')
print region.name