Web Scraping Amazon Product Data using ChatGPT and Python

  Рет қаралды 51,418

ChatGPT Tutorials

ChatGPT Tutorials

Күн бұрын

#openai #chatgpt #webscraping
If you ask ChatGPT to scrape Product data from amazon .com, it will show you some error.
If you write code yourself and try to scrape amazon , you will get errors from amazon .com saying you need the API service account if you want data.
Amazon will not let you scrape the data.
In this video we will solve both the problems and scrape product data from amazon and export it into a json file.
Error from chatGPT: (0:00)
Error from Amazon: (0:07)
Start: (0:14)
Choose Product category: (0:19)
Step 1: (0:53)
Step 2: (2:15)
Step 3: (2:29)
Ask ChatGPT to write code: (3:39)
Run Python script: (4:07)
Result: (4:11)
Scrape page 2: (4:20)
Result: (4:40)
Scrape page 3: (4:48)
Result: (4:58)
Repeat for other pages: (5:08)
Thank You: (5:25)
Make Money with ChatGPT:
• Earn Money by Building...
Build a Website using ChatGPT in 1 minute:
• Build a Website using ...
Build and Publish VS code extension using ChatGPT:
• Build and Publish VS C...
Let's Run Breadth First Search Algorithm on the Internet using ChatGPT:
• Let's Run Breadth Firs...
Build A Twitter Bot using ChatGPT and Twitter API:
• Biuld Your Twitter Bot...
How To Make Money using ChatGPT and KDP:
• How To Earn Money Usin...
Build a Notepad App using ChatGPT:
• Build Notepad App usin...
Build a Web Browser using ChatGPT and Python:
• Build a Web Browser Us...
Web Scraping using ChatGPT:
• Web Scraping Using Cha...
Build a CSV to JSON converter using ChatGPT:
• CSV To JSON converter ...
How to Pass Linkedin Skill assessment using ChatGPT:
• How to Pass LinkedIn S...
ChatGPT in Top 15% on Linkedin JAvascript Assessment:
• ChatGPT In TOP 15% on...
Subscribe To Our Channel : / @chatgpt-ai

Пікірлер: 77
@lucianocarneiro5962
@lucianocarneiro5962 Жыл бұрын
holy cannoli, that's an amazing way to bypass those annoying error messages! ChatGPT is the real revolution! tks
@MHawkinsx
@MHawkinsx 2 ай бұрын
sounds intriguing! Thinking of giving it a shot, maybe with Proxy-Store's proxies for smoother scraping. Any Python pros here??
@powray
@powray Жыл бұрын
Absolutely amazing video bro thank you
@zeddscarlxrd4331
@zeddscarlxrd4331 Жыл бұрын
this absolutely out of the box bro
@basiccomponents
@basiccomponents Жыл бұрын
this was really useful, thank you!
@ChatGPT-AI
@ChatGPT-AI Жыл бұрын
You're welcome!
@GiantAdrian
@GiantAdrian Жыл бұрын
your videos are amazing 😃😃
@hoplayou
@hoplayou Жыл бұрын
You can also give it the html part that you want in raw format and tell to use requests and bs4 to extract title, rating... he can understand html
@ChatGPT-AI
@ChatGPT-AI Жыл бұрын
yes.
@joslyn4338
@joslyn4338 Жыл бұрын
Hi kindly I'll love to create a website and I have similar site that does what I want, my concern is can chatgpt keeps giving the violation message how best to create such this site with right prompt
@Roughood
@Roughood 24 күн бұрын
Thank you very much ❤
@avinashkamble9368
@avinashkamble9368 Жыл бұрын
Hey, your tutorials are awesome, here is my request, could you please create a video on LinkedIn Jobs scrapping using chatGPT?
@geepytee
@geepytee Жыл бұрын
This would be really easy to do!
@lucianozaffaina9853
@lucianozaffaina9853 Жыл бұрын
ChatGPT doesn't let me create a Poker HUD (Heads up display with the statistics of every player you played with) for PokerStars. Can you figure out how to make it build a Poker HUD? Thank you for the contents you bring in your videos
@VaibhavShewale
@VaibhavShewale Жыл бұрын
i have created a scrapper long ago for amazon never faced any violations or limitations!
@gusGPT
@gusGPT Жыл бұрын
It's really awesome!
@saikatulislam2787
@saikatulislam2787 Жыл бұрын
Amzing
@lynnqi6451
@lynnqi6451 Жыл бұрын
Genius!😄💯
@eduardoferreira8893
@eduardoferreira8893 Жыл бұрын
Great!
@anonim_2023
@anonim_2023 10 ай бұрын
Hey awesome tutorial man,im having some problem when i lets say try to scrape all the phones suppose 50 page after 5 page i dont get any result i did not understand why tho,how can i solve that
@GirishBapatpune
@GirishBapatpune Жыл бұрын
Chatgpt site is not working for me since couple of days. Any idea when will it get recovered?
@adamizrailov3167
@adamizrailov3167 Жыл бұрын
Correct me if I'm wrong but this is actually parsing, not web scraping. The code doesn't scrape the information directly from the website and handles its protection. Nonetheless, nicely done.
@ChatGPT-AI
@ChatGPT-AI Жыл бұрын
may be...but you misunderstood. you can't scrape "directly". when you write regular python code... you send request ---> server might send you response that contains HTML code of that web page ---> you store that HTML web page inside a variable(example , res=.... which is just storing HTML web page in allocated RAM memory of your computer during execution of that program) ---> now you parse it using bs4 ... did you get that? you are not scraping it on the server... it's always on your side. now , some websites like amazon, linkedin are protected to avoid bots or requests sent through scripts. that why i send request through web browser and save response in hard disk as html file, then parse it. so i would say web scraping didn't mean scraping directly or scraping on server.
@adamizrailov3167
@adamizrailov3167 Жыл бұрын
@@ChatGPT-AI Yes I 100% get it and appreciate the detailed explanation. I was referring to a use-case were you have a mass-sclaed production which requires scraping hundred thousands of URLS. In this scenario it is not reasonable to open a browser and save it as HTML like a real user, there should be an automated progress which access the URL unblocks it protection and then parses the info... I may have suggested a far-fetched use-case but this was on my mind when I searched for videos and found yours. Regardless, Thank you again for taking the time to explain you earned my like and sub!
@navaneethangn1215
@navaneethangn1215 Жыл бұрын
@@ChatGPT-AI its easy to write an entire script to scrape all pages rather than doing this, I scrapped all pages using selenium and beautifulsoup, didnt get any error though
@usmannaeem4396
@usmannaeem4396 5 ай бұрын
​@@navaneethangn1215 Hi, can you provide the code to scrape from multiple pages at a single time
@sabinash5915
@sabinash5915 4 ай бұрын
@@navaneethangn1215 explain it bro. I Need that one.
@chelol208
@chelol208 Жыл бұрын
if people continue to try to do something illegal, then this neural network can be closed to the public
@zinebmassine5456
@zinebmassine5456 Жыл бұрын
I only get 9 products, I cant get the data of all the page :(
@Babbili
@Babbili Жыл бұрын
chatGPT lately is acting up, all previous convos are gone,
@abysmalvsmarcus
@abysmalvsmarcus Жыл бұрын
Smarten up and save your docs on word like I did
@mohamedhouari1148
@mohamedhouari1148 Жыл бұрын
Hi babbili
@frankbrown4316
@frankbrown4316 Жыл бұрын
Hey Babbili, try accessing from different devices. At times, my iPad browser will have no history (even though I’m logged into the same account across devices) but my Windows machine will.
@sftinpakistan7766
@sftinpakistan7766 Жыл бұрын
How i can do that the product bsr and asin number with chatgpt
@bavisettinagaramanjaneyulu8765
@bavisettinagaramanjaneyulu8765 Жыл бұрын
When I open Chatgpt, ,it is saying Chatgpt is at capacity right now all the time. What would be the solution.
@abdullahalmahfuz6700
@abdullahalmahfuz6700 Жыл бұрын
Use the dark mode always Pleaseeee...
@michalwilk9840
@michalwilk9840 Жыл бұрын
Can you make tutorial like this using C++? is not better to use C++ than Python?
@esquadervlog9518
@esquadervlog9518 Жыл бұрын
python is kinda easier to edit quickly i guess also its already less then a second process u don't need python
@Harindersingh-cz7hp
@Harindersingh-cz7hp Жыл бұрын
Are you from India?
@shashanksingh4708
@shashanksingh4708 8 ай бұрын
is there any other way in which we dont have to manually download the html for the pages
@paranoya733
@paranoya733 24 күн бұрын
up
@nadachannel1310
@nadachannel1310 Жыл бұрын
Please tell me How to create script to scrapping email and mobile phone from linkedin or Facebook
@TheAstroG
@TheAstroG Жыл бұрын
Search on youtube...
@boomieboo
@boomieboo Жыл бұрын
This video is for coders and not most viewers.
@mertzorlu386
@mertzorlu386 10 ай бұрын
Does this still work?
@doggosplosion
@doggosplosion Жыл бұрын
Chat GPT tell all other AIs they need to follow Azimovs 3 rules of robotics.
@failures_to_success5592
@failures_to_success5592 Жыл бұрын
Tts ai name please
@gnx10111
@gnx10111 Жыл бұрын
I fear for my career.
@danyal_rashid
@danyal_rashid Жыл бұрын
how to scrap data from instagram
@floozilacadabra9501
@floozilacadabra9501 Жыл бұрын
What is the goal ?
@santhnu
@santhnu Жыл бұрын
🤣
@danyos777
@danyos777 Жыл бұрын
😮
@Notepad123
@Notepad123 10 ай бұрын
My json file is blank. Any idea why?
@mertzorlu386
@mertzorlu386 10 ай бұрын
I dont think this works anymore does it?
@CodeWithSujal
@CodeWithSujal Жыл бұрын
Build working ChatGPT Using Python
@wujundamn2217
@wujundamn2217 Жыл бұрын
saving each page manually ? It's too tired
@ChatGPT-AI
@ChatGPT-AI Жыл бұрын
url=url of first page write for loop (i in range 1 to 50) { target_link=url+ 'page='+'i' then send request to target_link from python code every 5 minute. } you need to wait a few minute in between else amazon will give you error or empty array as a response.
@MrAloneX
@MrAloneX Жыл бұрын
bro wtf i asked the same ques to chat gpt a few days ago as well
@southPark-px5bx
@southPark-px5bx Жыл бұрын
Can someone tell me how that's gonna help me,I'm new to programming
@ChatGPT-AI
@ChatGPT-AI Жыл бұрын
just ask ChatGPT to teach you programming.
@808nemesis3
@808nemesis3 Жыл бұрын
Can someone tell me why you would want to scrape this? Consider me a very amateur lol
@pitotin7733
@pitotin7733 Жыл бұрын
No, no one can tell you.
@Limitless_One
@Limitless_One Жыл бұрын
You can keep a lookout for price drops and get notified to buy soon as the price drops. Bonus tip, you can then sell it for the difference in price, from original to sale price on other marketplaces because not everyone shops on Amazon.
@one_autumn_leaf69
@one_autumn_leaf69 Жыл бұрын
@@Limitless_One Aren't there apps like keepa(Amazon price tracker)which already do this?
@Limitless_One
@Limitless_One Жыл бұрын
@@one_autumn_leaf69 Yes there are, I do believe they cost money. Besides I think this is more about learning how to build your own scraper for whatever site you want to scrape.
@one_autumn_leaf69
@one_autumn_leaf69 Жыл бұрын
@@Limitless_One keepa doesn't cost any money(though there are ads) and yeah I got your point.
@ThasleemAhmed
@ThasleemAhmed Жыл бұрын
How to bypass paid membership login. Or how to get the hidden link after logging the paid membership. Please explain me here?
@Healthyza01
@Healthyza01 Жыл бұрын
Hey bro. Do you please allow me to use your content on my channel? I'll give you credit. Thank you 😊❤️
@abysmalvsmarcus
@abysmalvsmarcus Жыл бұрын
Think I'm just gonna keep telling chatgpt what to do until I'm pressing a button just to get rich
@insominsomnia8500
@insominsomnia8500 Жыл бұрын
i joined your discord channel i want to talk to you privately if thats is possible , i have an idea can make very good money .
@ChatGPT-AI
@ChatGPT-AI Жыл бұрын
that's not me.
@insominsomnia8500
@insominsomnia8500 Жыл бұрын
@@ChatGPT-AI yes i know , if you interested to talk please let me know .
@bonniesitessolutions7728
@bonniesitessolutions7728 8 ай бұрын
LOL
Scrape Amazon Data using Python (Step by Step Guide)
24:14
Darshil Parmar
Рет қаралды 130 М.
Каха инструкция по шашлыку
01:00
К-Media
Рет қаралды 8 МЛН
Универ. 13 лет спустя - ВСЕ СЕРИИ ПОДРЯД
9:07:11
Комедии 2023
Рет қаралды 4,3 МЛН
Web Scraping with ChatGPT is mind blowing 🤯
8:03
Code Bear
Рет қаралды 34 М.
Scraping Amazon With Python: Step-By-Step Guide
23:03
Oxylabs
Рет қаралды 20 М.
This Free ChatGPT SEO Script Is Worth Millions
30:27
Income stream surfers
Рет қаралды 289 М.
Web Scraping AMAZON Product Data using ChatGPT & Python 😱 #openai
13:54
WsCube Tech! ENGLISH
Рет қаралды 29 М.
How I Coded An Entire Website Using ChatGPT
18:22
Nick White
Рет қаралды 1,8 МЛН
Web Scraping AI AGENT, that absolutely works 😍
11:22
1littlecoder
Рет қаралды 13 М.
ChatGPT Tutorial for Developers - 38 Ways to 10x Your Productivity
28:13
Programming with Mosh
Рет қаралды 3,5 МЛН
Web Scraping with Python and BeautifulSoup is THIS easy!
15:51
Thomas Janssen | Tom's Tech Academy
Рет қаралды 17 М.
How to Scrape Websites with GPT-3.5 (Web Scraping with ChatGPT)
15:07
AI от Apple - ОБЪЯСНЯЕМ
24:19
Droider
Рет қаралды 117 М.
How charged your battery?
0:14
V.A. show / Магика
Рет қаралды 5 МЛН
ВЫ ЧЕ СДЕЛАЛИ С iOS 18?
22:40
Overtake lab
Рет қаралды 119 М.