Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muskanpaliwal/textextractor_pratilipi
Simply extracts texts from an image using the PIL library of python and shows on the web app.
https://github.com/muskanpaliwal/textextractor_pratilipi
Last synced: 21 days ago
JSON representation
Simply extracts texts from an image using the PIL library of python and shows on the web app.
- Host: GitHub
- URL: https://github.com/muskanpaliwal/textextractor_pratilipi
- Owner: MuskanPaliwal
- Created: 2021-12-16T16:02:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-24T04:44:53.000Z (almost 3 years ago)
- Last Synced: 2023-03-08T08:42:03.605Z (over 1 year ago)
- Language: Python
- Homepage: https://textextractorpratilipi.herokuapp.com/
- Size: 121 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TextExtractor_Pratilipi
Simply extracts texts from an image using the PIL library of python and shows on the web app.Installation
1. **clone the repository.**
```shell
$git clone https://github.com/MuskanPaliwal/TextExtractor_Pratilipi.git```
2. **navigate to downloaded folder.**```shell
$cd TextExtractor_Pratilipi```
3. **set up virtual environment.**```shell
#windows
$py -3 -m venv venv
#linux/mac OS
$python3 -m venv venv```
4. **activate virtual environment.**```shell
#windows$venv\Scripts\activate
#linux/mac OS
$source venv/bin/activate```
5. **install flask & other required dependencies**
```shell
#windows
$pip install -r requirements.txt
#linux/mac OS
$pip3 install -r requirements.txt```
6. **Tesseract installation - for Windows OS**
```shell
$ sudo apt install tesseract-ocr
```7. **setup flask environment and run app**
```shell#windows
$set FLASK_APP=app.py
$set FLASK_ENV=development
$flask run#linux/mac OS
$export FLASK_APP=app.py
$export FLASK_ENV=development
$flask run