Metadata-Version: 1.1
Name: django-world-regions
Version: 0.1
Summary: Simple Django app to group countries in world's regions like *Northern America*, *Eastern Europe*, etc.
Home-page: https://github.com/cesarcruz/django-world-regions
Author: Julio Cesar Rodriguez
Author-email: juliocesarrodriguezcruz@gmail.com
License: MIT License
Description: ====================
        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:: Currently this package don't use GeoDjango neither map data.
        
        Installation
        ============
        1. ``pip install django-world-regions``
        2. Add ``world_regions`` to ``INSTALLED_APPS``
        3. ``python manage.py migrate``
        
        Usage
        =====
        
        .. code::
        
           from world_regions.models import Region
        
           region = Region.objects.get(countries__country='US')
           print region.name
        
        .. _Django Countries: https://github.com/SmileyChris/django-countries
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
