-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusers.py
188 lines (157 loc) · 7.15 KB
/
users.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# Twitter Toolbox for Python
# Copyright 2016 Hugo Hromic
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Twitter User-objects module."""
import logging
from tweepy import TweepError
from .helpers import init_logger, read_config, get_app_auth_api, get_oauth_api
from .helpers import ensure_at_least_one, ensure_only_one, gen_chunks, bulk_process
from .helpers import write_ids, write_objs, log_tweep_error
# module constants
LOOKUP_USERS_PER_REQUEST = 100
FOLLOWERS_IDS_COUNT = 5000
FRIENDS_IDS_COUNT = 5000
SEARCH_COUNT = 20
# module logging
LOGGER = logging.getLogger(__name__)
init_logger(LOGGER)
def get_hydrated(writer, user_ids=None, screen_names=None):
"""Get hydrated Twitter User-objects from a list of user ids and/or screen names."""
LOGGER.info("get_hydrated() starting")
ensure_at_least_one(user_ids=user_ids, screen_names=screen_names)
user_ids = user_ids if user_ids else []
screen_names = screen_names if screen_names else []
# initialize config and Twitter API
config = read_config()
api = get_oauth_api(config) # OAuth gives more capacity for the users/lookup API
# process user ids and/or screen names, storing returned users in JSON format
num_users = 0
for chunk in gen_chunks(user_ids, screen_names, size=LOOKUP_USERS_PER_REQUEST):
try:
num_users += write_objs(writer, api.lookup_users,
{"user_ids": chunk[0], "screen_names": chunk[1]})
except TweepError as err:
log_tweep_error(LOGGER, err)
LOGGER.info("downloaded %d user(s)", num_users)
# finished
LOGGER.info("get_hydrated() finished")
def get_followers(writer, user_id=None, screen_name=None):
"""Get the ids of the followers for a Twitter user id or screen name."""
LOGGER.info("get_followers() starting")
ensure_only_one(user_id=user_id, screen_name=screen_name)
# initialize config and Twitter API
config = read_config()
api = get_app_auth_api(config)
# process user id or screen name, storing returned ids in plain text
args = {"count": FOLLOWERS_IDS_COUNT}
if user_id is not None:
args.update({"user_id": user_id})
if screen_name is not None:
args.update({"screen_name": screen_name})
limit = config.getint("followers", "limit")
try:
num_ids = write_ids(writer, api.followers_ids, args, cursored=True, limit=limit)
LOGGER.info("downloaded %d follower id(s)", num_ids)
except TweepError as err:
log_tweep_error(LOGGER, err)
# finished
LOGGER.info("get_followers() finished")
def bulk_get_followers(output_dir, user_ids=None, screen_names=None):
"""Get the ids of the followers for a bulk of Twitter user ids and/or screen names."""
LOGGER.info("bulk_get_followers() starting")
ensure_at_least_one(user_ids=user_ids, screen_names=screen_names)
user_ids = user_ids if user_ids else []
screen_names = screen_names if screen_names else []
# bulk process user ids
num_processed = bulk_process(LOGGER, output_dir, "%d.txt", get_followers,
[(el, el) for el in user_ids], "user_id")
if num_processed > 0:
LOGGER.info("processed %d user ids", num_processed)
# bulk process screen names
num_processed = bulk_process(LOGGER, output_dir, "%s.txt", get_followers,
[(el.lower(), el) for el in screen_names], "screen_name")
if num_processed > 0:
LOGGER.info("processed %d screen names", num_processed)
# finished
LOGGER.info("bulk_get_followers() finished")
def get_friends(writer, user_id=None, screen_name=None):
"""Get the ids of the friends for a Twitter user id or screen name."""
LOGGER.info("get_friends() starting")
ensure_only_one(user_id=user_id, screen_name=screen_name)
# initialize config and Twitter API
config = read_config()
api = get_app_auth_api(config)
# process user id or screen name, storing returned ids in plain text
args = {"count": FRIENDS_IDS_COUNT}
if user_id is not None:
args.update({"user_id": user_id})
if screen_name is not None:
args.update({"screen_name": screen_name})
limit = config.getint("friends", "limit")
try:
num_ids = write_ids(writer, api.friends_ids, args, cursored=True, limit=limit)
LOGGER.info("downloaded %d friend id(s)", num_ids)
except TweepError as err:
log_tweep_error(LOGGER, err)
# finished
LOGGER.info("get_friends() finished")
def bulk_get_friends(output_dir, user_ids=None, screen_names=None):
"""Get the ids of the friends for a bulk of Twitter user ids and/or screen names."""
LOGGER.info("bulk_get_friends() starting")
ensure_at_least_one(user_ids=user_ids, screen_names=screen_names)
user_ids = user_ids if user_ids else []
screen_names = screen_names if screen_names else []
# bulk process user ids
num_processed = bulk_process(LOGGER, output_dir, "%d.txt", get_friends,
[(el, el) for el in user_ids], "user_id")
if num_processed > 0:
LOGGER.info("processed %d user ids", num_processed)
# bulk process screen names
num_processed = bulk_process(LOGGER, output_dir, "%s.txt", get_friends,
[(el.lower(), el) for el in screen_names], "screen_name")
if num_processed > 0:
LOGGER.info("processed %d screen names", num_processed)
# finished
LOGGER.info("bulk_get_friends() finished")
def search(writer, query):
"""Get hydrated Twitter User-objects using the People Search API."""
LOGGER.info("search() starting")
# initialize config and Twitter API
config = read_config()
api = get_oauth_api(config) # only OAuth supported for the users/search API
# process the query, storing returned users in JSON format
num_users = 0
search_params = {
"q": query,
"count": SEARCH_COUNT,
}
limit = config.getint("search_users", "limit")
try:
num_users = write_objs(writer, api.search_users, search_params,
cursored=True, limit=limit)
LOGGER.info("downloaded %d user(s)", num_users)
except TweepError as err:
log_tweep_error(LOGGER, err)
# finished
LOGGER.info("search() finished")
def bulk_search(output_dir, queries):
"""Get hydrated Twitter User-objects using a bulk of People Search API queries."""
LOGGER.info("bulk_search() starting")
# bulk process queries
num_processed = bulk_process(LOGGER, output_dir, "%d.json", search,
enumerate(queries), "query")
if num_processed > 0:
LOGGER.info("processed %d queries", num_processed)
# finished
LOGGER.info("bulk_search() finished")