Git Product home page Git Product logo

Comments (6)

chris-greening avatar chris-greening commented on May 30, 2024

Hello! What is the error that requires the use of a proxy?

Unfortunately using proxies isn't a feature that is supported out of the box but you can probably brew up your own solution using requests builtin proxy support. instascrape can scrape data from HTML so you can use requests (with your needed proxies) to request data and then pass the response's HTML into an instascrape scraper to scrape the data.

from instascrape.

dtrillo avatar dtrillo commented on May 30, 2024

Yes, the point is to prepare "something" that you can add to request . I did it in other projects but the problem within instascrape is that I don't know how to acccess request to set my proxy credentials.

from instascrape.

MattPChoy avatar MattPChoy commented on May 30, 2024

@chris-greening Got some code working to scrape and validate proxies, but am not really sure how your library works. Willing to collaborate on this?

from instascrape.

nickhendo avatar nickhendo commented on May 30, 2024

@dtrillo We had to solve this problem as well. What I ended up doing was subclassing the Session object to pass in to Profile.scrape:

class Session(requests.Session):
    """Custom session subclass that allows passing through a timeout to requests.get"""
    def __init__(self, timeout=None, proxies=None):
        super().__init__()
        self.timeout = timeout
        self.proxies = proxies

    def get(self, url, **kwargs):
        kwargs.setdefault('allow_redirects', True)
        return self.request('GET', url, **kwargs, timeout=self.timeout, proxies=self.proxies)

and then using it this way:

with Session(timeout=20, proxies=self.proxies) as s:
    profile.scrape(session=s)

from instascrape.

nickhendo avatar nickhendo commented on May 30, 2024

The above is only necessary for us for authenticated proxies if you want to keep trust_env = True for the Session. Otherwise you can just create a session and add proxies to that without the need for the subclassing

from instascrape.

chaim6888 avatar chaim6888 commented on May 30, 2024

@chris-greening . I am trying to use proxies with InstaScrape to avoid blocking. I tried the solution of @nickhendo but can't get it to work. Any ideas?

from instascrape.

Related Issues (20)

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.