How to scrape emails from Twitter(2018)?

UniQuE7

BANNED
Joined
Oct 26, 2014
Messages
767
Reaction score
73
Hi,
I was wondering if anyone knows how to Scrape Emails off a twitter feed..
For example, let's say i wanted to scrape every email off of this twitter page @ https://twitter.com/SendBeatsBot
How would i go about this? I'm currently looking for ways to do this but no luck at the moment.
If anyone can help me i'd really appreciate it!
Reply to this message so i can get an Alert notification if anyone is willing to help.
Thank you!
 
What do you mean by every email of that @?

- Do you want to scan all the tweets and extract every email posted?
- Do you want to get their followers emails?
 
The tweets aren't really structured data.

You can easily extract all tweets from that feed. And from here on, split each tweet's content into a list of strings (each individual word) and keep only those that have the @ in it.

You can easily do it, you need just some coding skills in python.
 
What do you mean by every email of that @?

- Do you want to scan all the tweets and extract every email posted?
- Do you want to get their followers emails?
Well technically there are around 25k tweets with emails on that page based on the retweets. To be fair i just want at least 1,000 Emails to be realistic, unless there IS a way to get all of them, i wouldn't mind also. So to answer your question, Yes i want to scan all or most of the tweets and extract the emails posted.
To answer your second question, no i honestly just want the emails posted on that page.
Thank You.

The tweets aren't really structured data.

You can easily extract all tweets from that feed. And from here on, split each tweet's content into a list of strings (each individual word) and keep only those that have the @ in it.

You can easily do it, you need just some coding skills in python.
Oh ok, well i just want to extract all of the emails mostly as that is my main objective.
I got Python also but i'm not too familiar with it myself and don't really use it in fear of potentially messing up my laptop if i put a wrong code i don't know about so in a sense i'm trying to avoid that situation.

I looked at this video:

img404.jpg


And the technique does work mostly but i'm having problem with the Atomic Scrapper in which it only extracts a few emails from the twitter feed then it goes haywire and starts getting emails off of the site i intended to get emails from in the first place. Maybe there's a wrong option on input but im not getting the results i'm looking for at the moment.
The help is appreciate tho, Thank You.
 
Last edited by a moderator:
i dicovered a video, "how to scrape emails from a facebook group via chrome extension"

→ https://chrome.google.com/webstore/detail/email-extractor/jdianbbpnakhcmfkcckaboohfgnngfcc?utm_source=chrome-ntp-icon

﴾͡๏̯͡๏﴿
I just tested it out, it is not working not even the Automation from where i put the website at.
It is not detecting the emails even though i'm scrolling threw the page.
Regardless, Thank you for your help!
 
UPDATE!!
It seems like it's working now all of a sudden! I just refreshed the page and now it seems to get the emails! Thank you!
Now i'm gonna need to find a way on how to send emails to these contacts.
If anyone knows, i'd gladly appreciate the help.
Bless You!!
 
From a linux / OSX / (possibly)Cygwin terminal:
Code:
curl https://twitter.com/SendBeatsBot | grep -E -o "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}\b"

Save to a text file:
Code:
curl https://twitter.com/SendBeatsBot | grep -E -o "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}\b" > scraped.txt
 
From a linux / OSX / (possibly)Cygwin terminal:
Code:
curl https://twitter.com/SendBeatsBot | grep -E -o "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}\b"

Save to a text file:
Code:
curl https://twitter.com/SendBeatsBot | grep -E -o "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}\b" > scraped.txt
I'm sorry but i don't know what these codes mean but i think you where trying to help me with getting the emails off the twitter feed?

Well..

I just got 759 emails with what https://www.blackhatworld.com/members/oo-tk.141244/ showed me. Now i'm trying to find a way to send these emails a message.
Would really appreciate it if you or anyone for that matter could help me out then.
Thank you.
 
Back
Top