Skip to content

Mykolaichenko/unplag-python-sdk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UNPLAG Python Library

Build Status Coverage Status PyPI version

This library eases the use of the Unplag 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 unplag

Feeling impatient? I like your style.

from unplag import Unplag

un = Unplag('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 unplag import Unplag

un = Unplag('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

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%