Metadata-Version: 1.1
Name: django-filmmap
Version: 0.1
Summary: An API to find movies that are playing in the San Francisco area.
Home-page: https://github.com/Risto-Stevcev/django-filmmap
Author: Risto Stevcev
Author-email: risto1@gmail.com
License: BSD
Description: =======
        FilmMap
        =======
        
        FilmMap is an API to find movies that are playing in the San Francisco area. Feel free to fork the repository and
        use it for your own data sets!
        
        Quick start
        -----------
        
        
        1. Add "filmmap" to your INSTALLED_APPS setting like this::
        
              INSTALLED_APPS = (
                  ...
                  'filmmap',
              )
        
        2. Include the filmmap URLconfs in your project urls.py like this::
        
            urlpatterns = patterns('',
                url(r'^', include('filmmap.urls', namespace='filmmap')),
                url(r'^admin/', include(admin.site.urls)),
            )
        
        3. Run ``python manage.py syncdb`` to create the filmmap models.
        
        4. Run ``python manage.py update_films https://data.sfgov.org/resource/yitu-d5am.json`` to update the films database.
        
        5. Visit http://127.0.0.1:8000/filmmap/ to run the application!
        
        6. Feel free to fork the repository_ and create an API for your own data sets. Modify the api view in `views.py`, the
           the admin comment `update_films.py`, and the models in `models.py` to reflect your particular data set. 
        
        .. _repository: http://github.com/Risto-Stevcev/django-filmmap
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Environment :: Console
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: User Interfaces
