質問編集履歴
1
コード追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,10 +1,52 @@
|
|
1
|
-
以下のコード
|
1
|
+
以下の流れでコードを実行していて、以下のところでラーが出てしまいました。
|
2
2
|
|
3
|
-
|
3
|
+
どのように解決すればよろしいでしょうか。ご教授お願い致します。
|
4
|
-
|
5
|
-
ご指摘ご教授お願い致します。
|
6
4
|
|
7
5
|
|
6
|
+
|
7
|
+
```python
|
8
|
+
|
9
|
+
import requests
|
10
|
+
|
11
|
+
from bs4 import BeautifulSoup
|
12
|
+
|
13
|
+
↓
|
14
|
+
|
15
|
+
url = 'https://scraping-for-beginner.herokuapp.com/udemy'
|
16
|
+
|
17
|
+
res = requests.get(url)
|
18
|
+
|
19
|
+
↓
|
20
|
+
|
21
|
+
res
|
22
|
+
|
23
|
+
↓
|
24
|
+
|
25
|
+
soup =BeautifulSoup(res.text, 'html.parser')
|
26
|
+
|
27
|
+
soup
|
28
|
+
|
29
|
+
↓
|
30
|
+
|
31
|
+
subscribers = soup.find_all('p', attrs={'class': 'subscribers'})[0]
|
32
|
+
|
33
|
+
subscribers
|
34
|
+
|
35
|
+
↓
|
36
|
+
|
37
|
+
subscribers.text.split(':')
|
38
|
+
|
39
|
+
↓
|
40
|
+
|
41
|
+
n_subscribers = int(n_subscribers.text.split(':'))
|
42
|
+
|
43
|
+
n_subscribers
|
44
|
+
|
45
|
+
```
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
エラーコード
|
8
50
|
|
9
51
|
```python
|
10
52
|
|
@@ -13,8 +55,6 @@
|
|
13
55
|
n_subscribers
|
14
56
|
|
15
57
|
↓
|
16
|
-
|
17
|
-
--------------------------------------------------------------------------
|
18
58
|
|
19
59
|
NameError Traceback (most recent call last)
|
20
60
|
|
@@ -28,6 +68,4 @@
|
|
28
68
|
|
29
69
|
NameError: name 'n_subscribers' is not defined
|
30
70
|
|
31
|
-
|
32
|
-
|
33
71
|
```
|