Skip to content
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

Check for .tweet-text children before using them #33

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion twitter_scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ def gen_tweets(pages):
dot = "."
tweets = []
for tweet in html.find('.stream-item'):
text = tweet.find('.tweet-text')[0].full_text
tweet_text_elements = tweet.find('.tweet-text')
if not tweet_text_elements:
continue
text = tweet_text_elements[0].full_text
tweetId = tweet.find(
'.js-permalink')[0].attrs['data-conversation-id']
time = datetime.fromtimestamp(
Expand Down