Coder Social home page Coder Social logo

download-instagram-photos's Introduction

download-instagram-photos

Grab instagram photos from any profile url (For entertainment / demo purpose only)

Screenshot

alt Screenshot

How to run

Run the following command to download images from https://www.instagram.com/sajithamma

npm install
node index.js

Technologies Used

  • puppeteer
  • axios
  • node-html-parser

Coding Basics

 browser = await puppeteer.launch(
            {
                headless: true,
                args: ["--disable-setuid-sandbox"],
                'ignoreHTTPSErrors': true,
            });

Use auto scroll to load more images

async function autoScroll(page) {
    await page.evaluate(async () => {
        await new Promise((resolve, reject) => {
            var totalHeight = 0;
            var distance = 300;
            var timer = setInterval(() => {
                var scrollHeight = document.body.scrollHeight;
                window.scrollBy(0, distance);
                totalHeight += distance;

                if (totalHeight >= scrollHeight) {
                    clearInterval(timer);
                    resolve();
                }
            }, 100);
        });
    });
}

Write the scrppable object logic

const InstaScraperLogicObject = {

    url: 'https://www.instagram.com/sajithamma',

    callback: (result) => { console.log(result) },

    async scraper(browser) {

        let page = await browser.newPage();
        console.log(`Navigating to ${this.url}...`);
        // Navigate to the selected page
        await page.goto(this.url);
        // Wait for the required DOM to be rendered
        await page.waitForSelector('article');
        // Get the link to all the required books


        const getImgSrc = await page.$$eval('article img', imgs => imgs.map(img => img.src));
        this.callback(getImgSrc);


    }
}

finally call the function

startScrapping(browserInstance, InstaScraperLogicObject);

download-instagram-photos's People

Contributors

sajithamma avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.