質問編集履歴

4

内容の更新

2020/05/22 04:28

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -271,3 +271,73 @@
271
271
  wb.update_cells(cell_list1)
272
272
 
273
273
  ```
274
+
275
+
276
+
277
+ ##worksheet.updateでやってみた
278
+
279
+ ```python
280
+
281
+ anime1 = []
282
+
283
+ for i in anime_titles[2]:
284
+
285
+ animeTitle_ = i.string
286
+
287
+ animeTitle_ = animeTitle_.split('【一挙配信】')[1]
288
+
289
+ anime1.append(animeTitle_)
290
+
291
+
292
+
293
+ anime2 = []
294
+
295
+ for i in anime_titles[3]:
296
+
297
+ title = i.string
298
+
299
+ anime2.append(title)
300
+
301
+
302
+
303
+ anime3 = []
304
+
305
+ for i in anime_titles[4]:
306
+
307
+ title = i.string
308
+
309
+ anime3.append(title)
310
+
311
+
312
+
313
+ anime4 = []
314
+
315
+ for i in anime_titles[5]:
316
+
317
+ title = i.string
318
+
319
+ anime4.append(title)
320
+
321
+
322
+
323
+
324
+
325
+ rows = []
326
+
327
+ for i in range(2, 20):
328
+
329
+ rows.append(i)
330
+
331
+
332
+
333
+ for row, a1,a2,a3,a4 in zip(rows, anime1, anime2, anime3, anime4):
334
+
335
+ wb.update('A:G'+str(row), [[a1,'' , a2, '', a3, '', a4]])
336
+
337
+ ```
338
+
339
+
340
+
341
+ 一括で表示できましたが、列の長さが1番短い列に合わせて表示されてしまいます。
342
+
343
+ ![イメージ説明](a99db50c67e564712e25acf901809b7f.png)

3

内容の更新

2020/05/22 04:28

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -8,9 +8,7 @@
8
8
 
9
9
 
10
10
 
11
- 現状は、各カテゴリー(一挙配信中のアニメ,現在テレビ放送中の春アニメ
12
-
13
- など)のアニメのタイトルとURLを1つずつ取得し、Googel spread sheetsに書き込んでいます。
11
+ 現状は、各カテゴリー(一挙配信中のアニメ,現在テレビ放送中の春アニメなど)のアニメのタイトルとURLを1つずつ取得し、Googel spread sheetsに書き込んでいます。
14
12
 
15
13
  情報の取得、一括で書き込みのどちらかでも構いません。
16
14
 

2

内容の更新

2020/05/21 23:43

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -18,6 +18,10 @@
18
18
 
19
19
 
20
20
 
21
+ [Gyao](https://gyao.yahoo.co.jp/ct/anime/)
22
+
23
+ ![イメージ説明](fbe5def680141d98b40b5cba5090c356.png)
24
+
21
25
 
22
26
 
23
27
 

1

内容の更新

2020/05/21 23:42

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -48,7 +48,7 @@
48
48
 
49
49
  scope = ['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/drive']
50
50
 
51
- credentials = ServiceAccountCredentials.from_json_keyfile_name('tidal-digit-276902-efcc36a80aec.json', scope)
51
+ credentials = ServiceAccountCredentials.from_json_keyfile_name('伏せておきます', scope)
52
52
 
53
53
  gc = gspread.authorize(credentials)
54
54