(user_rest_id, username, cursor=None)
| 135 | |
| 136 | |
| 137 | def requestTW(user_rest_id, username, cursor=None): |
| 138 | get_guess_url = twg.get_url(userId=user_rest_id, cursor=cursor) |
| 139 | get_guess_headers = twg.get_headers(username=username) |
| 140 | guess_response = requests.get(url=get_guess_url, headers=get_guess_headers, verify=False, proxies=proxies).json() |
| 141 | cursor = parse_response(guess_response) |
| 142 | return cursor |
| 143 | |
| 144 | |
| 145 | def parse_response(twitter_content): |
no test coverage detected