[FREE] I will code any simple scraper or bot in this thread

Status
Not open for further replies.
OMFG you're a saint ! Please do this one for me. I want a bot that scrape IMDI for movies titles, description, genre , year.... everything about the movie and then automatically make blog post for each corresponding movie.
IMDB scraper would be easy, but creating a content? I mean, if you have an API with a spinner that would also be easy. But where do you want to post? Wordpress? How you want to post? do you have an API?

Can you create a bot that can post on Facebook groups and pages?
So you specify a list or you want to scrape the groups that you belong to? And pages, just comment on each page?

Free youtube views using proxy. Can you do that?
Nah.

Can you create me a scraper for google maps that can target specfic keywords? Thank you even if you cant :)
Sure mate, that sounds cool.

Just free instagram Follow and unfollow. Cuz all are paid now. :(
API follower and unfollower, that sounds cool. Let me digg in if I can do something in NodeJS, Python or PHP.

How about a bot that simply lets you input a list or URLs and then scrapes all on-screen text into a separate file each, with the URL of the page as the file's title.

-ThopHayt
Ok, I have a crawler that I coded in a thread I put in a wrong place, is a domain crawler for emails. It works cool and let you explore the whole domain. I will share in a post with you.

scrape porn please everyone loves it. lol
Ive never coded a porn bot, havent found a business there yet.

Can you code a bot that scrapes
1. Facebook users that likes a particular facebook page/group post
2. Fb users that comments on a particular facebook page/group post
3. Auto PM all scraped users.
Thank you.
You can scrape the IDs, yes, but limited. Then if you open http://fb.com/id will open profile and if Message button exist you will be able to click and type message.
Is that what you want?
 
Are you capable of creating a bot for streaming platforms such as Tidal or Spotify? If so, I will pay good money for these. Let me know if you have the ability. Thanks!
 
Reddit poster from csv file would be great. Something to post a link to subreddit and give it a title.
Or facebook / disqus commenter.

+1 for this. This would be great for reddit if it's possible to do on time interval.
 
Please could you make a bot that can search 4 letter instagram or Twitter names and PlayStation if so thanks so much
 
Can you scrape LinkedIn posts, like this one: linkedin.com/pulse/moment-forever-changed-our-lives-satya-nadella
What language do you use?
(sorry for the link)
 
is it possible to read messages from a whatsapp account and then forward the messages to different numbers?

ps: interested in learning scraping too.
 
Are you capable of creating a bot for streaming platforms such as Tidal or Spotify? If so, I will pay good money for these. Let me know if you have the ability. Thanks!
Yes its possible for Spotify since it has a web player. PM for this cause its experimental and I have no control of the time, so its not that simple.

Reddit upvote bot?
Twitch viewer?
Yeah sure, let me code for the rep users then I come with this bots. I will record also courses and I might launch a BST with them so I can teach BHW how to code bots ;).



Please could you make a bot that can search 4 letter instagram or Twitter names and PlayStation if so thanks so much
4 letter instagram accounts or twitter names that are free to use? I didnt get what you are requesting. Elaborate.

back to ytbviews, that is what i need is it simple ?
Is not that simple, you might need a really nice proxy rotating service for that. And also many proxy IPs are flagged as proxy by youtube, so youll end have a video banned. If you need that you need residential rotating proxys. Which I cannot vouche anyone.

Not easy if you want it to actually work right
Multithreaded is somehow easy, I just have to take care doing local variables on each thread.

Can you scrape LinkedIn posts, like this one: linkedin.com/pulse/moment-forever-changed-our-lives-satya-nadella
What language do you use?
(sorry for the link)

Yes sure, I can do that with C#, Ubot, Nodejs, PHP or Python. Somehow people dont know how to use command lines applications, so they prefer clicking a program with a GUI that allow to do things fast. In this case Ubot its nice with proper plugins :)
 
Hello guys..
Im back on my coding spree. So I will code any simple bots or scrapers that you tell me.
Along with it, I will create some courses + source codes but those are apart.

High reputable members have priority on this dynamic. I will upload the program, or update with source code and explanation here.

So lets get this started ;)

sounds pretty interesting, lemme know if it still available!
 
Here is a brief domain crawler + email extractor I did with Node.JS using roboto library which is cool and easy. So here I go, step by step:
Requirements: Nodejs installed in your computer, NPM.

1.- Create a dir.
2.- Go inside of it.
3.- You need to install roboto and htmlstrip-native with npm.
4.- Create a crawl.js file inside that folder you created.
5.- Paste the source code on it:

Code:
var roboto = require('roboto');
var fs = require('fs')
var domain = process.argv[2];

var html_strip = require('htmlstrip-native').html_strip;
var stripOptions = {
  include_script : false,
  include_style : false,
  compact_whitespace : true
};

var domainCrawler = new roboto.Crawler({
  startUrls: [
    'http://' + domain,
  ],
  allowedDomains: [
    domain
  ],
  blacklist: []
});

function extractEmails (text)
{
    return text.match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi);
}

domainCrawler.parseField('url', function(response, $) {
  return response.url;
});

domainCrawler.parseField('emails_found', function(response, $) {
  var html = $('body').html();
  var striped =  html_strip(html, stripOptions);
  var emails = extractEmails(striped);
  if(emails) {
      fs.appendFile(domain + '.txt', emails + '\r\n', function (err) {
        if (err) throw err;
        console.log('Emails saved to file!');
      });
  }
  return emails;
});

domainCrawler.parseField('title', function(response, $) {
  return $('head title').text();
});

domainCrawler.parseField('server', function(response, $) {
  return response.headers['server'] || '';
});

domainCrawler.crawl();

Then just run the command using node like:
node crawler.js domain.com

Thats it, it will create a domain.com.txt with all the emails.
Obviously change domain.com by any domain you want to crawl and get emails.

kZet78O


Here is how the emails.txt looks, it wont eliminate repeated emails or sort them. That takes more time ;)
gzD4V2b
 
Yes its possible for Spotify since it has a web player. PM for this cause its experimental and I have no control of the time, so its not that simple.


Yeah sure, let me code for the rep users then I come with this bots. I will record also courses and I might launch a BST with them so I can teach BHW how to code bots ;).




4 letter instagram accounts or twitter names that are free to use? I didnt get what you are requesting. Elaborate.


Is not that simple, you might need a really nice proxy rotating service for that. And also many proxy IPs are flagged as proxy by youtube, so youll end have a video banned. If you need that you need residential rotating proxys. Which I cannot vouche anyone.


Multithreaded is somehow easy, I just have to take care doing local variables on each thread.



Yes sure, I can do that with C#, Ubot, Nodejs, PHP or Python. Somehow people dont know how to use command lines applications, so they prefer clicking a program with a GUI that allow to do things fast. In this case Ubot its nice with proper plugins :)

That's awesome. Ubot seems like a premium software. Do you mind to write it in Python (in case you agree to take it)? I've been struggling with the way LinkedIn hide their content for some time.
 
Yeah sure, let me code for the rep users then I come with this bots. I will record also courses and I might launch a BST with them so I can teach BHW how to code bots ;).

What's a rep user?
I can rhyme pretty fast if that's a stipulation.
 
1. Maybe a scraper that downloads Instagram image (of a certain user) along with the post in the form of image caption.

2. Scrape the usernames that like on a certain instagram post.

These ideas are based on something that i find really hard while doing manually.
 
Status
Not open for further replies.
Back
Top