This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[a4paper,10pt]{article} | |
%A Few Useful Packages | |
\usepackage{marvosym} | |
\usepackage{fontspec} %for loading fonts | |
\usepackage{xunicode,xltxtra,url,parskip} %other packages for formatting | |
\RequirePackage{color,graphicx} | |
\usepackage[usenames,dvipsnames]{xcolor} | |
\usepackage[big]{layaureo} %better formatting of the A4 page | |
% an alternative to Layaureo can be ** \usepackage{fullpage} ** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from apiclient.discovery import build | |
from oauth2client.service_account import ServiceAccountCredentials | |
class Report(): | |
def __init__(self, documentId): | |
self.scopes = { | |
'docs': ['https://www.googleapis.com/auth/documents', 'https://www.googleapis.com/auth/documents.readonly'] | |
} | |
self.documentId = documentId |