Metadata-Version: 1.1
Name: django-ct-useragents
Version: 0.1
Summary: A simple Django app to track IP and User Agent info.
Home-page: https://cascadiantech.com/
Author: Cascadian Tech LLC
Author-email: anthony@cascadiantech.com
License: BSD License
Description: =====
        Useragents
        =====
        
        Useragents is a simple app to track the user agents, ips and other info
        of the various visitors of your django site. The information is stored in
        the database for easy reference and exporting.
        
        Quick start
        -----------
        
        1. Add "useragents" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'useragents',
            ]
            
        2. Add useragents to the middleware:
        	MIDDLEWARE_CLASSES = [
        		...
        		'useragents.utils.UserAgentsMiddleware',
        		...
        	]
        
        3. Run `python manage.py migrate` to create the polls models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/
           see the info on your visitors
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
