python-zohodocs

Python library for interfacing with the Zoho Docs API
Download

python-zohodocs Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • Matt Robenolt
  • Publisher web site:
  • https://github.com/mattrobenolt/

python-zohodocs Tags


python-zohodocs Description

python-zohodocs is a simple Python library for interacting with Zoho Docs (Writer, Sheet, and Show).Installation pip install zohodocsGetting Startedfrom zohodocs import ZohoDocsCreating a new Documentz = ZohoDocs(API_KEY)print z.new_file('document1.doc')Opening a DocumentAll methods return a URL which links to the editor. Optional arguments match with Zoho's documented API: https://apihelp.wiki.zoho.com/Open-Document.htmlz = ZohoDocs(API_KEY)# Local documentprint z.open('/var/www/document.doc')# File pointerfp = open('/var/www/document.doc', 'r')print z.open(fp)# URLprint z.open_url('http://example.com/document.doc')# Optional argumentsprint z.open('/var/www/document.doc', id='myid', saveurl='http://example.com/save.php')Product's homepage


python-zohodocs Related Software