I don't know if it's possible or practical yet, but if it is: How can one print to a printer using Google Cloud Print from a python application running on Google App Engine?
For the purposes of an example, let's presume the user is logged into a Google or Google Apps account when accessing the App Engine application, and that account is attached to a cloud-aware printer (e.g. registered printers in Google Chrome with cloud print).
I'd like to print, for example, a PDF file that's stored in a blob on GAE. Let's call this blob pdf_contents. I'd like a function:
def print_pdf(pdf_contents, printer, print_settings):
"""Prints `pdf_contents` (a blob conforming to the PDF standard) to `printer`
(a Google Cloud Printer) with the given `print_settings`"""
# what goes here?
I'd like to know how to go about doing this, and whether anyone else has made any efforts in this respect. Of course, I don't want to limit the printing to PDF files, but wanted to narrow down the example.
Thank you for reading.