File tree 5 files changed +245
-139
lines changed
5 files changed +245
-139
lines changed Original file line number Diff line number Diff line change 2
2
__pycache__ /
3
3
* .py [cod ]
4
4
5
+ .idea
6
+
5
7
# C extensions
6
8
* .so
7
9
Original file line number Diff line number Diff line change @@ -81,6 +81,14 @@ tap search --consumer-key CONSUMERKEY --consumer-secret CONSUMERSECRET -q "miley
81
81
tap search --consumer-key CONSUMERKEY --consumer-secret CONSUMERSECRET -ql " miley_fans" -v DEBUG
82
82
```
83
83
84
+ Global options:
85
+
86
+ | Option | Description |
87
+ | ------------------------| ------------------------------------------------|
88
+ | --output | Output tweets to files. |
89
+ | --interval | Interval in minutes when to create a new file. |
90
+
91
+
84
92
Search options:
85
93
86
94
| Option | Description |
@@ -240,6 +248,10 @@ supervisorctl shutdown
240
248
241
249
# Changes #
242
250
251
+ v2.1.0:
252
+
253
+ - Allow saving tweets to files.
254
+
243
255
v2.0.6:
244
256
245
257
- Restart the stream if it closes.
Original file line number Diff line number Diff line change @@ -2,5 +2,6 @@ pymongo==3.3.1
2
2
oauthlib == 2.0.0
3
3
requests == 2.11.0
4
4
requests-oauthlib == 0.7.0
5
- supervisor == 3.3.1
6
- twython == 3.4.0
5
+ #supervisor==3.3.1
6
+ twython == 3.6.0
7
+ six == 1.14.0
Original file line number Diff line number Diff line change 18
18
19
19
dist = setup (
20
20
name = 'twitter-tap' ,
21
- version = '2.0.6 ' ,
21
+ version = '2.1.0 ' ,
22
22
author = 'Janez Kranjc' ,
23
23
description = 'Collect tweets to a mongoDB using either the Twitter search API or the streaming API.' ,
24
24
long_description = long_description ,
You can’t perform that action at this time.
0 commit comments