Skip to content

minervaproject/unicheck

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unicheck Python Library

This library eases the use of the Unicheck REST API from Python and it has been used in production for years.

As this is an open-source project that is community maintained, do not be surprised if some bugs or features are not implemented quickly enough.

Quickstart

Installation

sudo pip install unicheck

Feeling impatient? I like your style.

from unicheck import Unicheck

un = Unicheck('api_key', 'api_secret')    # Creating connection

upload = un.file.upload('~/Downloads/original.pdf')     # Upload file from path

check = un.check.create_sync(upload_resp.response['file']['id'])    # Start check using upload id

Short syntax

from unicheck import Unicheck

un = Unicheck('api_key', 'api_secret')

un.check.create_sync(un.file.upload('~/Downloads/original.pdf').response['file']['id']).response

About

Unplag Python SDK

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%