Very cool John, tackled this one today and found it pretty interesting! Next level would be alerting whenever there is a drop. Appreciate the video as always.
@dzeykop3 жыл бұрын
Thank you for your work and time. I really like your way how you explain code stuff! (and you voice is really pleasant) 👍 Best regards, Joe
@JohnWatsonRooney3 жыл бұрын
Thanks Joe 👍
@emrekyak39013 жыл бұрын
Thank you for the very helpful videos, John. May I ask whether you have had any content that you focused on web scraping on such products which have different variants such as size, colour and accordingly changes the Html link too?
@bencole83013 жыл бұрын
Hi John, trying to follow along with this video but getting a 'NoneType' message saying object is not subscriptable on the following line; price = soup.find('span', {'itemprop':"price"})['content'] I've double checked the code so am I using an old library or something else making it difficult to follow along? Thanks for the video sorry for the hassle.
@JohnWatsonRooney3 жыл бұрын
Hi Ben - the concepts are still good but unforuantely this particular website has updated and changed making this approach no longer work. This is why you are gettingt the NoneType - the script isnt finding any data available to extract
@teluguvibhagam50193 жыл бұрын
@@JohnWatsonRooney is there any other way? :_(
@teluguvibhagam50193 жыл бұрын
I was rechecking my code multiple times until I saw this message :)
@KelvinKagwima2 ай бұрын
hello sir....if i may ask are you using any proxy?
@SunDevilThor3 жыл бұрын
I can’t even start this one since the website has a captcha to just even access it. Getting response code 403, even with the custom headers.
@JohnWatsonRooney3 жыл бұрын
Yes it has changed since I uploaded this video. Pick another one and apply the same principles
@dmackle38492 жыл бұрын
@@JohnWatsonRooney any advice on handling cookies etc to ensure the script is accessing the correct geographic store branch?
@OceanWingsSeafarersEducation2 жыл бұрын
Hi John i tried this code however it gives me an error code : price = soup.find('span', {'itemprop': 'price'})['content'] Error: price = soup.find('span', {'itemprop': 'price'})['content'] TypeError: 'NoneType' object is not subscriptable