This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgslides.py
135 lines (121 loc) · 3.99 KB
/
gslides.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
from apiclient.discovery import build
from httplib2 import Http
from oauth2client import file, client, tools
import sys
import datetime
SCOPES = "https://www.googleapis.com/auth/presentations"
store = file.Storage('credentials.json')
creds = store.get()
if not creds or creds.invalid:
flow = client.flow_from_clientsecrets('client_secret.json', SCOPES)
creds = tools.run_flow(flow, store)
print('Fetched credentials.')
else:
print('Got credentials')
service = build('slides', 'v1', http=creds.authorize(Http()))
def init():
return service.presentations().create(body={
'title': str(datetime.datetime.today())[:len('YYYY-MM-DD')]
}).execute()
def execute(ppt, qs):
return service.presentations().batchUpdate(presentationId=ppt.get(
'presentationId'), body={'requests': qs}).execute()
def new_image_slide(ppt, img_url, i=0):
q = [
{
'createSlide': {
'objectId': f'pageBoi_{i}',
'slideLayoutReference': {
'predefinedLayout': 'BLANK'
}
}
}, {
'createImage': {
'objectId': f'imageBoi_{i}',
'url': img_url,
'elementProperties': {
'pageObjectId': f'pageBoi_{i}'
}
}
}
]
i += 1
return q, i
def new_slide(ppt, tweet, i=0):
q = [
{
'createSlide': {
'objectId': f'pageBoi_{i}',
'slideLayoutReference': {
'predefinedLayout': 'SECTION_TITLE_AND_DESCRIPTION'
},
'placeholderIdMappings': [{
'layoutPlaceholder': {'type': 'TITLE', 'index': 0},
'objectId': f'titleBoi_{i}'
}, {
'layoutPlaceholder': {'type': 'SUBTITLE', 'index': 0},
'objectId': f'engagementBoi_{i}'
}, {
'layoutPlaceholder': {'type': 'BODY', 'index': 0},
'objectId': f'tweetBoi_{i}'
}]
}
}, {
'insertText': {
'objectId': f'titleBoi_{i}',
'text': tweet['time'].strftime('%A, %I:%M %p')
}
}, {
'insertText': {
'objectId': f'tweetBoi_{i}',
'text': tweet['text']
}
}, {
'insertText': {
'objectId': f'engagementBoi_{i}',
'text': f'{tweet["retweets"]} retweets, {tweet["favorites"]} favorites'
}
}
]
i += 1
return q, i
def new_slide_plus(ppt, tweet, i=0):
q = [
{
'createSlide': {
'objectId': f'pageBoi_{i}',
'slideLayoutReference': {
'predefinedLayout': 'SECTION_TITLE_AND_DESCRIPTION'
},
'placeholderIdMappings': [{
'layoutPlaceholder': {'type': 'TITLE', 'index': 0},
'objectId': f'titleBoi_{i}'
}, {
'layoutPlaceholder': {'type': 'SUBTITLE', 'index': 0},
'objectId': f'engagementBoi_{i}'
}, {
'layoutPlaceholder': {'type': 'BODY', 'index': 0},
'objectId': f'tweetBoi_{i}'
}]
}
}, {
'insertText': {
'objectId': f'titleBoi_{i}',
'text': tweet['time'].strftime('%A, %I:%M %p')
}
}, {
'insertText': {
'objectId': f'tweetBoi_{i}',
'text': tweet['text']
}
}, {
'insertText': {
'objectId': f'engagementBoi_{i}',
'text': f'''{tweet["retweets"]} retweets, {tweet["favorites"]} favorites
{tweet["replies"]} replies, {tweet["engagements"]} engagements
{tweet["impressions"]} total impressions'''
}
}
]
i += 1
return q, i