-
Notifications
You must be signed in to change notification settings - Fork 716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Manually resolve t.co Card URL if guesswork fails #981
base: master
Are you sure you want to change the base?
Conversation
In some cases translating the t.co URL is not possible and prints a warning. We can try to follow the link ourselves.
u = self._head(card.url) | ||
assert u.status_code >= 300 and u.status_code < 400 | ||
card.url = u.headers["location"] | ||
except: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bare except
s aren't a great idea (they catch everything, including Ctrl-C), do you just want to catch AssertionError? If so, why not just use an if statement?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you just want to catch AssertionError?
AssertionError or any exception thrown from requests (I think it's better to continue with the t.co URL and log the warning than to crash)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In that case I'd either specify the exceptions or catch Exception (rather than the default BaseException, which catches EVERYTHING, including Ctrl-C):
except (AssertionError, WhateverElseYouWantToHandle, ...):
...
or:
except Exception:
...
I'd recommend the former so you don't stifle valid errors.
Might also be good to logging.debug
the actual exception, too.
@@ -1081,7 +1081,12 @@ def _make_tweet(self, tweet, user, retweetedTweet = None, quotedTweet = None, ca | |||
card.url = u.url | |||
break | |||
else: | |||
_logger.warning(f'Could not translate t.co card URL on tweet {tweetId}') | |||
try: | |||
u = self._head(card.url) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Won't this slow down the scraper significantly?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Won't this slow down the scraper significantly?
It would but I don't think it'd matter much. HEAD requests are very fast. Would it be better if this were opt-in?
Most tweets I scraped could have the t.co URL translated fine, I didn't hit the warning often.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is probably the big thing to figure out here first. (I'll have other remarks later.)
It should definitely be configurable. I'm not sure whether it should be on or off by default, though I'm leaning towards off (i.e. opt-in).
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
In some cases translating the t.co URL is not possible and prints a warning. We can try to follow the link ourselves.