Skip to content

Commit b69ec70

Browse files
Updated for Exercises
1 parent 49e1ea3 commit b69ec70

File tree

425 files changed

+15306
-1053
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

425 files changed

+15306
-1053
lines changed

1_start/.ipynb_checkpoints/TweetRead-checkpoint.ipynb

+19-60
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 8,
5+
"execution_count": null,
66
"metadata": {},
77
"outputs": [],
88
"source": [
@@ -11,70 +11,34 @@
1111
},
1212
{
1313
"cell_type": "code",
14-
"execution_count": 9,
14+
"execution_count": null,
1515
"metadata": {},
16-
"outputs": [
17-
{
18-
"ename": "ImportError",
19-
"evalue": "cannot import name 'OAuthHandler'",
20-
"output_type": "error",
21-
"traceback": [
22-
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
23-
"\u001b[0;31mImportError\u001b[0m Traceback (most recent call last)",
24-
"\u001b[0;32m<ipython-input-9-2443eb26c1bd>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0mtweepy\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mauth\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mOAuthHandler\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
25-
"\u001b[0;31mImportError\u001b[0m: cannot import name 'OAuthHandler'"
26-
]
27-
}
28-
],
16+
"outputs": [],
2917
"source": [
3018
"from tweepy.auth import OAuthHandler"
3119
]
3220
},
3321
{
3422
"cell_type": "code",
35-
"execution_count": 10,
23+
"execution_count": null,
3624
"metadata": {},
37-
"outputs": [
38-
{
39-
"ename": "ImportError",
40-
"evalue": "cannot import name 'Stream'",
41-
"output_type": "error",
42-
"traceback": [
43-
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
44-
"\u001b[0;31mImportError\u001b[0m Traceback (most recent call last)",
45-
"\u001b[0;32m<ipython-input-10-ff3591371680>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0mtweepy\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mStream\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
46-
"\u001b[0;31mImportError\u001b[0m: cannot import name 'Stream'"
47-
]
48-
}
49-
],
25+
"outputs": [],
5026
"source": [
5127
"from tweepy import Stream"
5228
]
5329
},
5430
{
5531
"cell_type": "code",
56-
"execution_count": 11,
32+
"execution_count": null,
5733
"metadata": {},
58-
"outputs": [
59-
{
60-
"ename": "ImportError",
61-
"evalue": "cannot import name 'StreamListener'",
62-
"output_type": "error",
63-
"traceback": [
64-
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
65-
"\u001b[0;31mImportError\u001b[0m Traceback (most recent call last)",
66-
"\u001b[0;32m<ipython-input-11-9b0f5bcc7110>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0mtweepy\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstreaming\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mStreamListener\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
67-
"\u001b[0;31mImportError\u001b[0m: cannot import name 'StreamListener'"
68-
]
69-
}
70-
],
34+
"outputs": [],
7135
"source": [
7236
"from tweepy.streaming import StreamListener"
7337
]
7438
},
7539
{
7640
"cell_type": "code",
77-
"execution_count": 12,
41+
"execution_count": null,
7842
"metadata": {},
7943
"outputs": [],
8044
"source": [
@@ -83,7 +47,7 @@
8347
},
8448
{
8549
"cell_type": "code",
86-
"execution_count": 13,
50+
"execution_count": null,
8751
"metadata": {},
8852
"outputs": [],
8953
"source": [
@@ -92,7 +56,7 @@
9256
},
9357
{
9458
"cell_type": "code",
95-
"execution_count": 6,
59+
"execution_count": null,
9660
"metadata": {},
9761
"outputs": [],
9862
"source": [
@@ -105,21 +69,9 @@
10569
},
10670
{
10771
"cell_type": "code",
108-
"execution_count": 7,
72+
"execution_count": null,
10973
"metadata": {},
110-
"outputs": [
111-
{
112-
"ename": "NameError",
113-
"evalue": "name 'StreamListener' is not defined",
114-
"output_type": "error",
115-
"traceback": [
116-
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
117-
"\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
118-
"\u001b[0;32m<ipython-input-7-c9f9c1e2544f>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mclass\u001b[0m \u001b[0mTweetsListener\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mStreamListener\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m__init__\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcsocket\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mclient_socket\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcsocket\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
119-
"\u001b[0;31mNameError\u001b[0m: name 'StreamListener' is not defined"
120-
]
121-
}
122-
],
74+
"outputs": [],
12375
"source": [
12476
"class TweetsListener(StreamListener):\n",
12577
"\n",
@@ -176,6 +128,13 @@
176128
"\n",
177129
" sendData(c)"
178130
]
131+
},
132+
{
133+
"cell_type": "code",
134+
"execution_count": null,
135+
"metadata": {},
136+
"outputs": [],
137+
"source": []
179138
}
180139
],
181140
"metadata": {

0 commit comments

Comments
 (0)