├── .gitignore ├── LICENSE.rst ├── MANIFEST.in ├── README ├── README.rst ├── agents_2011_04_14.pkl ├── setup.py ├── smartagent ├── __init__.py ├── agents_basic.pkl ├── decorators.py ├── middleware.py ├── models.py ├── tests.py ├── urls.py ├── utils.py └── views.py └── test_site ├── __init__.py ├── core ├── __init__.py ├── models.py ├── tests.py └── views.py ├── manage.py ├── settings.py ├── templates └── browser_data.html └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/README.rst -------------------------------------------------------------------------------- /agents_2011_04_14.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/agents_2011_04_14.pkl -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/setup.py -------------------------------------------------------------------------------- /smartagent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smartagent/agents_basic.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/smartagent/agents_basic.pkl -------------------------------------------------------------------------------- /smartagent/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/smartagent/decorators.py -------------------------------------------------------------------------------- /smartagent/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/smartagent/middleware.py -------------------------------------------------------------------------------- /smartagent/models.py: -------------------------------------------------------------------------------- 1 | __author__ = 'James' 2 | -------------------------------------------------------------------------------- /smartagent/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/smartagent/tests.py -------------------------------------------------------------------------------- /smartagent/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/smartagent/urls.py -------------------------------------------------------------------------------- /smartagent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/smartagent/utils.py -------------------------------------------------------------------------------- /smartagent/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/smartagent/views.py -------------------------------------------------------------------------------- /test_site/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_site/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_site/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/test_site/core/models.py -------------------------------------------------------------------------------- /test_site/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/test_site/core/tests.py -------------------------------------------------------------------------------- /test_site/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/test_site/core/views.py -------------------------------------------------------------------------------- /test_site/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/test_site/manage.py -------------------------------------------------------------------------------- /test_site/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/test_site/settings.py -------------------------------------------------------------------------------- /test_site/templates/browser_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/test_site/templates/browser_data.html -------------------------------------------------------------------------------- /test_site/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamespacileo/django-smartagent/HEAD/test_site/urls.py --------------------------------------------------------------------------------