Metadata-Version: 1.1
Name: django-geoip-redis
Version: 1.0.1
Summary: Django GeoIP. Based on default DB or Redis.
Home-page: https://github.com/gotlium/django-geoip-redis
Author: GoTLiuM InSPiRiT
Author-email: gotlium@gmail.com
License: GPL v3
Description: Django-GeoIP-Redis
        ==================
        
        Demo installation:
        
        .. code-block:: bash
        
            $ mkvirtualenv django-geoip-redis
            $ git clone https://github.com/gotlium/django-geoip-redis.git
            $ cd django-geoip-redis
            $ python setup.py develop
            $ cd demo
            $ pip install -r requirements.txt
            $ python manage.py syncdb
            $ python manage.py migrate
            $ python manage.py loaddata ../fixtures/db.json
            $ python manage.py runserver
            $ python manage.py sync_with_redis
            $ python manage.py shell
        
        
        .. code-block:: python
        
            >>> from geoip import record_by_addr
            >>> print ','.join(record_by_addr('91.195.136.52'))
        
        
        If you want use native db for local development,
        you can add ``GEO_BACKEND = 'db'`` into your local_settings.py
        
        
        
        .. image:: https://d2weczhvl823v0.cloudfront.net/gotlium/django-geoip-redis/trend.png
           :alt: Bitdeli badge
           :target: https://bitdeli.com/free
        
        
Keywords: django geoip mysql redis
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: Proxy Servers
