taspinar / twitterscraper

Scrape Twitter for Tweets
MIT License
2.4k stars 581 forks source link

[Suggestion] Add verified status to users #195

Closed ghost closed 5 years ago

ghost commented 5 years ago

Here a sample to add "verified status" to your scraping

tag_verified = tag_prof_header.find('span', {'class': "ProfileHeaderCard-badges"})
if tag_verified is not None:
     user.verified = True
taspinar commented 5 years ago

Thank you for this suggestion @noJ0y Since this feature has been implemented I will close this thread.