> I guess I would have to install my files into the docker instance, just not clear on how that part works.
Splash is a service you need to run somewhere, either your host or any other host. You can install docker on windows https://docs.docker.com/engine/installation/windows/ Once you have `docker`, you just need to run: docker run -p 8050:8050 scrapinghub/splash The tricky part will be knowing the IP for your container so you can set the `SPLASH_URL` setting. The scrapy-splash guide is pretty straightforward: https://github.com/scrapy-plugins/scrapy-splash#installation So, yes, the general idea is to pass through splash (which acts like a proxy for our purposes) the requests you want to have JS executed. Best, Rolando On Sun, May 29, 2016 at 11:39 PM, David Fishburn <[email protected]> wrote: > > > On Saturday, May 28, 2016 at 12:37:49 AM UTC-4, Rolando Espinoza La fuente > wrote: >> >> You can scrape that with a little help of splash: >> https://github.com/scrapy-plugins/scrapy-splash >> >> > Thank you Roland. > > So, if I am reading this correctly, you get rid of the PhantomJS library > (which does my JS rendering) and we are replacing it with Splash, which > also does JS rendering. > > Ah, I think I looked into this originally and don't believe it runs on > Windows. > > Seems it does, but they are Linux images. > I guess I would have to install my files into the docker instance, just > not clear on how that part works. > > David > > > -- > You received this message because you are subscribed to the Google Groups > "scrapy-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/scrapy-users. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "scrapy-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/scrapy-users. For more options, visit https://groups.google.com/d/optout.
