GithubHelp home page GithubHelp logo

negassab / ocrspace Goto Github PK

View Code? Open in Web Editor NEW

This project forked from erikboesen/ocrspace

1.0 1.0 0.0 37 KB

A Python API wrapper for the ocr.space Optical Character Recognition API.

License: MIT License

Python 100.00%

ocrspace's Introduction

ocrspace

A Python wrapper for using the ocr.space API.

Installation

Simply install from pip:

pip install ocrspace

Use

First, get an API key from Free OCR API, otherwise the default apikey helloworld will be used, which is severely rate limited.

First you'll need to import and instantiate the API wrapper:

import ocrspace

api_key = 'apikey retrieved from Free OCR API'

api = ocrspace.API(api_key=api_key)
# Or if you have a custom API host, API key or desired language, pass those:
api = ocrspace.API(endpoint='https://example.host', api_key=api_key, language=ocrspace.Language.Croatian)

If you wish to change the OCR engine used, use the enum class Engine from ocrspace and pass the value of ocrspace.Engine.ENGINE_2 to the api instantiation. By default it uses ocrspace.Engine.ENGINE_1:

import ocrspace

api_key = "apikey retrieved from Free OCR API"

api = ocrspace.API(api_key=api_key, engine=ocrspace.Engine.ENGINE_2)
# Or if you have a custom API host, API key or desired language, pass those:
api = ocrspace.API(endpoint='https://example.host', api_key=api_key, language=ocrspace.Language.Croatian, engine=ocrspace.Engine.ENGINE_2)

To perform recognition on an image hosted at some URL:

api.ocr_url('URL of image goes here')

Or, if you have an image locally upon which to perform recognition:

api.ocr_file('image.jpg')
# or:
api.ocr_file(open('image.jpg', 'rb'))  # or any other file pointer

That's it! Look at example.py for a demonstration.

Authorship

This package was created by Ali Najafi and is maintained by Erik Boesen and Negassa Berhanu.

License

MIT

ocrspace's People

Contributors

a4fr avatar abmyii avatar erikboesen avatar negassab avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.