Metadata-Version: 1.1
Name: django-webcam
Version: 0.1b0
Summary: django fields easy store webcam snaphot
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
        ===================
        
        .. warning:: From version 1.0 beta, storing on the database is not available.
        
        
        django fields to store webcam snaphot ( ie Facebook Profile )
        
        * fully compatible with
        * Support gif/jpeg/png
        * Manage multiple fields in the same page
        * Works in the admin as any other field ( need ``import webcam.admin`` to configure ``FORMFIELD_FOR_DBFIELD_DEFAULTS``)
        
        .. note:: based on jquery.webcam plugin from Robert Eisele (robert@xarg.org)
        
        
        Examples
        ========
        
        
        models.py::
        
            from django.db import models
            from webcam.fields import CameraField
        
            class Person(models.Model):
                picture = CameraStorage()
        
        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: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
