Skip to content

singles/python_livedocx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

python_livedocx is wrapper for LiveDocx service. It simplifies usage of theirs API.
It's distributed on MIT license.
Requirements: Python > 2.6.1, SUDS

USAGE (download sample template from here http://www.phplivedocx.org/articles/brief-introduction-to-phplivedocx/ ):

from livedocx import LiveDocx

ld = LiveDocx()
ld.login('username', 'password')
ld.set_local_template('path/to/template.doc')

ld.assign_value('software', 'python_livedocx')
ld.assign_value('license', 'MIT')

ld.create_document()

data = ld.retrieve_document('PDF')

file = open('software info.pdf', 'wb')
file.write(data)
file.close()

About

Wrapper for LiveDocx (http://www.livedocx.com/) SOAP API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages