Metadata-Version: 1.0
Name: django-countries-plus
Version: 0.1.3
Summary: A django model & fixture containing all data from the countries table of Geonames.org
Home-page: http://pypi.python.org/pypi/django-countries-plus/
Author: Andrew Cordery
Author-email: cordery@gmail.com
License: LICENSE.txt
Description: ===========
        django-countries-plus
        ===========
        
        django-countries-plus provides a model and fixture containing all top level country data from Geonames.org (http://download.geonames.org/export/dump/countryInfo.txt)
        
        The model provides the following fields (original geonames.org column name in parentheses).
        
        * iso (ISO)
        * iso3 (ISO3)
        * iso_numeric (ISO-Numeric)
        * fips (fips)
        * name (Country)
        * capital
        * area (Area(in sq km))
        * population (population)
        * continent (continent)
        * tld (tld)
        * currency_code (CurrencyCode)
        * currency_name (CurrencyName)
        * phone (Phone)
        * postal_code_format (Postal Code Format)
        * postal_code_regex (Postal Code Regex)
        * languages (Languages)
        * geonameid (geonameid)
        * neighbors (neighbours)
        * equivalent_fips_code (EquivalentFipsCode)
        
        
        ------------
        Installation
        ------------
        
        ::
        
            pip install django-countries-plus
        
        
        ------------
        Usage
        ------------
        
        1. Add ``countries_plus`` to your INSTALLED_APPS
        
        2. Sync your fixtures::
        
                python manage.py syncdb 
                
        3. In your code use::
        
                from countries_plus.models import Country
                usa = Country.objects.get(iso3='USA')
        
Platform: UNKNOWN
