├── .gitignore ├── Readme.md ├── db.sqlite3 ├── manage.py ├── ocr ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── sample image ├── 2022-02-16_16-25.png ├── 2022-02-16_16-26.png ├── 2022-02-16_16-30.png └── 2022-02-16_16-31.png ├── static ├── assets │ ├── 1.svg │ ├── 2.svg │ ├── 3.svg │ ├── 4.svg │ └── icons │ │ ├── TEXT.svg │ │ ├── sachit.jpg │ │ └── text-check.svg ├── build.css ├── copy.js ├── error.js └── style.css ├── templates └── home.html └── website ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/Readme.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/manage.py -------------------------------------------------------------------------------- /ocr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocr/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/ocr/admin.py -------------------------------------------------------------------------------- /ocr/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/ocr/apps.py -------------------------------------------------------------------------------- /ocr/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/ocr/models.py -------------------------------------------------------------------------------- /ocr/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/ocr/tests.py -------------------------------------------------------------------------------- /ocr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/ocr/urls.py -------------------------------------------------------------------------------- /ocr/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/ocr/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample image/2022-02-16_16-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/sample image/2022-02-16_16-25.png -------------------------------------------------------------------------------- /sample image/2022-02-16_16-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/sample image/2022-02-16_16-26.png -------------------------------------------------------------------------------- /sample image/2022-02-16_16-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/sample image/2022-02-16_16-30.png -------------------------------------------------------------------------------- /sample image/2022-02-16_16-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/sample image/2022-02-16_16-31.png -------------------------------------------------------------------------------- /static/assets/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/assets/1.svg -------------------------------------------------------------------------------- /static/assets/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/assets/2.svg -------------------------------------------------------------------------------- /static/assets/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/assets/3.svg -------------------------------------------------------------------------------- /static/assets/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/assets/4.svg -------------------------------------------------------------------------------- /static/assets/icons/TEXT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/assets/icons/TEXT.svg -------------------------------------------------------------------------------- /static/assets/icons/sachit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/assets/icons/sachit.jpg -------------------------------------------------------------------------------- /static/assets/icons/text-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/assets/icons/text-check.svg -------------------------------------------------------------------------------- /static/build.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/build.css -------------------------------------------------------------------------------- /static/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/copy.js -------------------------------------------------------------------------------- /static/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/error.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/templates/home.html -------------------------------------------------------------------------------- /website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/website/asgi.py -------------------------------------------------------------------------------- /website/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/website/settings.py -------------------------------------------------------------------------------- /website/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/website/urls.py -------------------------------------------------------------------------------- /website/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASACHIT/OCR-django-app/HEAD/website/wsgi.py --------------------------------------------------------------------------------