Scrape Emails from Twitter Posts on a certain Profile

1frage

Newbie
Joined
Jul 5, 2021
Messages
24
Reaction score
1
Hi, i just have this one question:

Theres a twitter profile that retweets other peoples tweets (in a certain niche) within which they post their emails for people to send them stuff. So it functions as an email collection list.
How can i scrape all those emails (preferably automatically)? Ive tried a couple chrome extensions and even bought expensive scraping software (like LetsExtract) but it all didnt work.
The extensions do either nothing at all or collect emails that are not part of what im seeing on this profile.

Its the profile called "SendBeatsBot". I want to collect all those emails to send all these people beats.

Does somebody in here know an effective way or a good tool to achieve this?

oh btw: one thing i think might be a good way but doesnt quite work as i want is a certain website where you can paste a websites text that you copied and then it scrapes the emails from that text.
but when i scroll through the entire sendbeatsbot section and highlight EVERYTHING with crtl+a and then paste it into that website, it still only collects about 20 emails. so im guessing that i cant copy
the entire sites text because when i scroll past something, that something doesnt get copied to the clipboard anymore...
 
Last edited:
Automatically obtaining a list of emails from a rigid and helpful Twitter bot's profile feed looks like an easy task that can be done in less than a day with a Python script. Assuming there are no extra requirements or project specifications.

I could help you by making a computer programming Python script program that can, at the least, automatically collect eighty to ninety percent of 3,200 (Twitter API tweet retrieval limit and bypassing this would increase the project complexity and price) of the email addresses that the Twitter bot has freely given us through its tweets. It wouldn't be one hundred percent of all the emails in the list because there is a variety of different email formats used in the list and not all the ways that an email address is represented in the list can be obtained without checking the solution for each email address yourself.

While asking you if you aren't planning on using them for obtrusive spam per the federal CAN-SPAM Act (even though in your post you said that you simply want to send solicited beats) then I could sell you the email addresses obtained with the custom made computer program.

Or for a higher price than that of the price of the email list I can sell you the custom computer program. That was your original query and you probably want to "learn how to fish rather than be given a fish". Though I don't think you would be able to effectively use it on your own since you apparently fumbled with previous software.
 
Automatically obtaining a list of emails from a rigid and helpful Twitter bot's profile feed looks like an easy task that can be done in less than a day with a Python script. Assuming there are no extra requirements or project specifications.

I could help you by making a computer programming Python script program that can, at the least, automatically collect eighty to ninety percent of 3,200 (Twitter API tweet retrieval limit and bypassing this would increase the project complexity and price) of the email addresses that the Twitter bot has freely given us through its tweets. It wouldn't be one hundred percent of all the emails in the list because there is a variety of different email formats used in the list and not all the ways that an email address is represented in the list can be obtained without checking the solution for each email address yourself.

While asking you if you aren't planning on using them for obtrusive spam per the federal CAN-SPAM Act (even though in your post you said that you simply want to send solicited beats) then I could sell you the email addresses obtained with the custom made computer program.

Or for a higher price than that of the price of the email list I can sell you the custom computer program. That was your original query and you probably want to "learn how to fish rather than be given a fish". Though I don't think you would be able to effectively use it on your own since you apparently fumbled with previous software.
not sure how we can safely do this with no risk of getting scammed

what i do wanna know tho is, why cant i copy the whole text? like i said once i scroll past a tweet, it doesnt get copied to the clipboard anymore, only the stuff that is visible in that exact moment gets copied with ctrl+A. and ctrl+C..
if i could just copy the entire profiles content and paste it into this extractor website it would do the job (probably)
 
i dont know i dont trust this software tbh i have bad experience with these trials not letting me cancel it
 
wow so now it works but it scrapes al kinds of other stuff that i didnt ask for... stuff thats not even on the timeline and it hasnt scraped a single email....
 
wow so now it works but it scrapes al kinds of other stuff that i didnt ask for... stuff thats not even on the timeline and it hasnt scraped a single email....
worked for you?
 
Its easy, you just need a simple script for it, hire a coder.
 
i dont have the money :(

If you are looking for a free solution, you may be struggling. As you'll need to
a) scrap the twitter posts
b) scrape emails from the results

and the free public twitter bot world is very poor. Pay bots can do it, but I am not aware of anything free.


At a guess I would say your best bet is an extension that is constantly scanning the page and extracting emails, maybe something like that exists. If so, you can just scroll through the posts and have it work.
 
If you are looking for a free solution, you may be struggling. As you'll need to
a) scrap the twitter posts
b) scrape emails from the results

and the free public twitter bot world is very poor. Pay bots can do it, but I am not aware of anything free.


At a guess I would say your best bet is an extension that is constantly scanning the page and extracting emails, maybe something like that exists. If so, you can just scroll through the posts and have it work.
yes ive been looking for something like this, but i only found 1 video where a guy showed it and i downloaded that same extension but it didnt work anymore since the video was 2 years old and the extension didnt do anything
 
Back
Top