質問編集履歴
2
コードの修正、タグ追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -29,6 +29,32 @@
|
|
29
29
|
|
30
30
|
|
31
31
|
```python
|
32
|
+
|
33
|
+
from selenium import webdriver
|
34
|
+
|
35
|
+
import time
|
36
|
+
|
37
|
+
import pandas as pd
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
from bs4 import BeautifulSoup
|
42
|
+
|
43
|
+
import urllib.request as req
|
44
|
+
|
45
|
+
import requests
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
import gspread
|
50
|
+
|
51
|
+
from oauth2client.service_account import ServiceAccountCredentials
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
from gspread_dataframe import set_with_dataframe
|
56
|
+
|
57
|
+
|
32
58
|
|
33
59
|
browser = webdriver.Chrome()
|
34
60
|
|
1
質問のコード等見にくい箇所修正しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,10 +1,14 @@
|
|
1
|
+
```
|
2
|
+
|
3
|
+
コード
|
4
|
+
|
1
|
-
### 前提・実現したいこと
|
5
|
+
```### 前提・実現したいこと
|
2
6
|
|
3
7
|
|
4
8
|
|
5
9
|
下記サイト
|
6
10
|
|
7
|
-
https://store-tsutaya.tsite.jp/storelocator/detail/recycle.html?storeId=0908#visual02
|
11
|
+
[リンク内容](https://store-tsutaya.tsite.jp/storelocator/detail/recycle.html?storeId=0908#visual02)
|
8
12
|
|
9
13
|
から「タイトル」と「価格」を取り出してスプレットシートに書き出そうとしています。
|
10
14
|
|
@@ -24,7 +28,7 @@
|
|
24
28
|
|
25
29
|
|
26
30
|
|
27
|
-
|
31
|
+
```python
|
28
32
|
|
29
33
|
browser = webdriver.Chrome()
|
30
34
|
|
@@ -48,6 +52,12 @@
|
|
48
52
|
|
49
53
|
|
50
54
|
|
55
|
+
```
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
|
51
61
|
### 試したこと
|
52
62
|
|
53
63
|
|