chris-greening / instascrape

Powerful and flexible Instagram scraping library for Python, providing easy-to-use and expressive tools for accessing data programmatically
https://chris-greening.github.io/instascrape/
MIT License
630 stars 107 forks source link

Add proxy options #83

Open dtrillo opened 3 years ago

dtrillo commented 3 years ago

I am trying InstaScrape but I need to set a proxy (otherwise I have an error). How do I have to proceed?

chris-greening commented 3 years ago

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.

dtrillo commented 3 years ago

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

MattPChoy commented 3 years ago

@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?

nickhendo commented 3 years ago

@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)
nickhendo commented 3 years ago

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

chaim6888 commented 2 years ago

@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?