Metadata-Version: 1.1
Name: django-tesseractfield
Version: 0.0.1
Summary: A small app providing a tesseract field for django
Home-page: http://github.com/duboisR/django_tesseractfield
Author: Dubois Romain
Author-email: dubois.rom@gmail.com
License: MIT License
Description-Content-Type: UNKNOWN
Description: [![PyPI version](https://badge.fury.io/py/django-tesseractfield.svg)](https://badge.fury.io/py/django-tesseractfield)
        
        # django-tesseractfield
        
        This module fills the need of having a **tesseractfield** that's usable in both
        django models and forms.
        
        ![django-tesseractfield](https://www.useloom.com/share/bc991388a02047a7ae2f9796f23a719f)
        
        Makes use of [tesseract](https://opensource.google.com/projects/tesseract).
        
        ## Installation
        - Run ``pip install django-tesseractfield``
        - Add ``tesseractfield`` to your ``INSTALLED_APPS``
        - Collect static files with ``./manage.py collectstatic``
        
        ## Usage
        To activate tesseract transcription on your Django site, add this line to your URLconf:
        
        ```python
        path('', include('tesseractfield.urls')),
        ```
        
        In your models, you can use it like this:
        
        ```python
        from django.db import models
        from tesseractfield.fields import TesseractField
        
        class MyModel(model.Model):
            content = TesseractField()
        ```
        
        In your foms, you can use it like this:
        
        ```python
        from django import forms
        from tesseractfield.fields import TesseractWidget
        
        class MyForm(forms.Form):
            content = forms.Textarea()
        
            class Meta:
                widgets = {
                    'content': TesseractWidget(),
                }
        ```
        
        ## Maintainers
        - [@duboisR](https://github.com/duboisR)
        
        ## Articles
        - [Django Tesseract OCR](https://medium.com/@duboisr/django-et-tesseract-188d389ad4ba)
        
Keywords: django,tesseract,field,admin
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Framework :: Django :: 2.0
Classifier: Programming Language :: Python :: 3.5
Requires: django (>=2.0)
