Metadata-Version: 1.0
Name: django-webcam
Version: 0.1.4b3
Summary: UNKNOWN
Home-page: https://github.com/saxix/django-webcam
Author: sax
Author-email: sax@os4d.org
License: BSD
Download-URL: https://github.com/saxix/django-webcam/tarball/master
Description: =============
        django-webcam
        =============
        
        django fields and templetags to store easier webcam snaphot in ImageField ( ie Facebook Profile )
        
        .. note:: It use the jquery.webcam plugin from Robert Eisele (robert@xarg.org)
        
        
        Examples
        --------
        
        models.py::
        
            class Person(models.Model):
                picture = CameraField(upload_to='photos', blank=True)
        
        
        urls.py::
        
            sec('/picture/(?P<pk>\d+)/$'),
                CameraView.as_view(target='registration.Person.picture'), name='picture-mgm')
        
        your template::
        
            {% load webcam %}
        
            {% url "picture-mgm" object.pk as picmgm %}
            {% url "camera" object.picture as default_image %}
            {% camera  picmgm default_image %}
        
        
        Links
        ~~~~~
        
           * Project home page: https://github.com/saxix/django-webcam
           * Issue tracker: https://github.com/saxix/django-webcam/issues?sort
           * Download: http://pypi.python.org/pypi/django-webcam/
        
Platform: any
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: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
