Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 441 Bytes

README.md

File metadata and controls

28 lines (15 loc) · 441 Bytes

CloudPrint.py

Simple wrapper of Google Cloudprint API for python

Install

pip install git+https://github.com/suzakulab/cloudprintpy

Usage

see examples or below.

from google.oauth2 import service_account
import cloudprint

credentials = service_account.Credentials.from_service_account_file("account-xxxxxxx.json")

client = cloudprint.Client(credentials)

# do something with client

Author

theoldmoon0602