Metadata-Version: 1.1
Name: django-airports
Version: 0.1.2
Summary: Airport model and worldwide airport data for Django
Home-page: http://github.com/bashu/django-airports
Author: Basil Shubin
Author-email: basil.shubin@gmail.com
License: MIT License
Description: django-airports
        ===
        
        ### Airport model and worldwide airport data for Django
        
        ----
        
        django-airports provides you with airport related model and data (from [OpenFlights](http://openflights.org/)) that can be used in your django projects.
        
        Authored by [Basil Shubin](http://resume.github.io/?bashu), inspired by [django-cities](https://github.com/coderholic/django-cities)
        
        [![Latest Version](https://pypip.in/version/django-airports/badge.svg)](https://pypi.python.org/pypi/django-airports/)
        [![Downloads](https://pypip.in/download/django-airports/badge.svg)](https://pypi.python.org/pypi/django-airports/)
        [![License](https://pypip.in/license/django-airports/badge.svg)](https://pypi.python.org/pypi/django-airports/)
        
        ----
        
        ### Requirements
        
        You must have *django-cities* installed and configured, see the [django-cities documentation](https://github.com/coderholic/django-cities) for details and setup instructions.
        
        ### Setup
        
        Either clone this repository into your project, or install with ```pip install django-airports```
        
        You'll need to add ```airports``` to ```INSTALLED_APPS``` in your project's ```settings.py``` file:
        
        ```python
        INSTALLED_APPS = (
            ...
            'airports',
        )
        ```
        
        Then run ```./manage.py syncdb``` to create the required database tables, and ```./manage.py airports``` to import all of the airports data. **NOTE:** This can take some time.
        
        Please see ``example`` application. This application is used to manually test the functionalities of this package. This also serves as a good example.
        
        You need Django 1.4 or above to run that. It might run on older versions but that is not tested.
        
        ### Notes
        
        The ```airports``` manage command has options, see ```airports --help``` output.  Verbosity is controlled through LOGGING.
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
