BeautifulSoup + Requests | Web Scraping in Python

  Рет қаралды 138,841

Alex The Analyst

Alex The Analyst

Күн бұрын

Пікірлер: 60
@codingcontraptions6202
@codingcontraptions6202 Жыл бұрын
This is simply amazing! I have spent hours trying to figure out how to do a basic scrape and finally this video did it. I truly appreciate you sir!
@sj1795
@sj1795 9 ай бұрын
Like I said in my last comment, I'm really enjoying this mini series on webscraping. You're a PHENOMENAL instructor. As always, THANK YOU ALEX!!
@devanshagarwal97
@devanshagarwal97 Жыл бұрын
I just remebered my first data scrapping project using BeautifulSoup looking at this video. Thank you very much Alex for sharing this video. It's a great start for anybody looking to scrape data from various sources and easy to grasp when compared to tools like Selenium.
@AlexTheAnalyst
@AlexTheAnalyst Жыл бұрын
We all remember our first time :D
@ozonehephzibah6949
@ozonehephzibah6949 Жыл бұрын
@@AlexTheAnalyst That's what she said
@eupablostefanes
@eupablostefanes 6 ай бұрын
@@ozonehephzibah6949 I got it haha
@0x007A
@0x007A Жыл бұрын
A caveat worth mentioning is to read the terms of use for any website or data source to ensure web scraping or other automated non-API retrieval method is allowed.
@robbylebotha
@robbylebotha Жыл бұрын
Lol if you are going through the effort of scraping, you probably don't care. My government is too incompetent to have ANY API to give access to vital public information, they instead have it on outdated websites that aren't even mobile friendly. Sooooooo..... Actually one of the most highly used apps in my country scrapes data, it's been years and the government still hasn't built an API, they print out a basic excel like table of the data. They infact tell us to download that very app.
@Kicsa
@Kicsa Жыл бұрын
I went over the documentation for BeautifulSoup but watching your video is reinforcing everything I read. I will be watching the rest of your videos on this, thanks!
@AwanievaStudios
@AwanievaStudios Жыл бұрын
I have been waiting for the next video since you started the Web scraping series. Thank you Alex 😊
@AlexTheAnalyst
@AlexTheAnalyst Жыл бұрын
Hope you enjoyed it!
@AwanievaStudios
@AwanievaStudios Жыл бұрын
@@AlexTheAnalyst 101% I enjoyed every minute. Anticipating the next! Thank you!
@kachekijaanlega
@kachekijaanlega 3 ай бұрын
it should be "html.parser" not just "html".
@TheSystemsConsulting
@TheSystemsConsulting Жыл бұрын
Thanks Alex for this second video on the web scrapping series!
@da_ta
@da_ta Жыл бұрын
Alex thanks for making beautifulsoup as simple as possible
@jmc1849
@jmc1849 6 ай бұрын
This should be the 2nd video of the playlist
@D.v._22
@D.v._22 5 ай бұрын
Thank youu for your videoss , you're a life saver
@Aipoweredchronicle
@Aipoweredchronicle 10 ай бұрын
its really simplified. Thanks
@KrazyKeith4
@KrazyKeith4 19 күн бұрын
Would've been helpful if the first video was part of the playlist, or if it's even still up.
@yosoydonger6325
@yosoydonger6325 6 ай бұрын
When I use this method, it doesnt give me all the site data. I'm guessing its because its a subscriber only webpage. Is there a way to bypass this?
@mohdsiddiq5752
@mohdsiddiq5752 Жыл бұрын
crystal clear explanation 😎
@MarthaKaraya
@MarthaKaraya 10 ай бұрын
Thankyou Alex!
@gokong-dc6xi
@gokong-dc6xi 4 ай бұрын
Hello you mentioned in your video that beautiful soup is a "snapshot" of the web page. Can we use beautiful soup to automatically update the value of something in real time? For example stock prices or currency exchange rate or price of bitcoin...etc.
@phatomphreak5965
@phatomphreak5965 2 ай бұрын
BeautifulSoup(r.text, 'html.parser') add .parser else a warning will appear
@venegas7303
@venegas7303 5 ай бұрын
Thank you
@AwalSharif-ix5yk
@AwalSharif-ix5yk 3 ай бұрын
I'm getting errors When I do requests.get(url)
@nikyisme
@nikyisme 12 күн бұрын
hey alex, how do i get that page thing so i can code there?
@moabdullwahab6313
@moabdullwahab6313 6 ай бұрын
Anyone help me ImportError: cannot import name 'BeautifulSoup' from 'bs4' (unknown location)
@harisshi
@harisshi 5 ай бұрын
in jupyter type BeautifulSoup (b and s in caps)
@victorjonesofficial
@victorjonesofficial 9 ай бұрын
Please Alex can you do a video on how to install beautifulsoup using Anaconda prompt
@lilyrosestracke4591
@lilyrosestracke4591 8 ай бұрын
Thanks.
@Unknown_mallu278
@Unknown_mallu278 9 ай бұрын
Hello. I have installed requests module but then also error occurs as no module named requests.why this happens?
@mohammadsoleman8708
@mohammadsoleman8708 5 ай бұрын
Hello I am new here , I actually first found the last video in this list then I heard the word previously so I searched and found the list but also you are referring to previous videos so I now am following alright but I was wondering is this part of another bigger playlist ?
@tang0kat318
@tang0kat318 Жыл бұрын
I have an issue I get an error at 4:13
@KatzeMelli
@KatzeMelli 5 ай бұрын
i assigned a variable to it like that: ' soup = BeautifulSoup(website.text, 'html')' which you then have to return in the end as well. Seemed to solve the error for me
@robydivincenzo821
@robydivincenzo821 3 ай бұрын
Merci Alex pour tes supers vidéos ! Voici un post à venir qui pourraient intéresser plusieurs abonnés et autres, c'est le fait de pouvoir trouver comment cliquer sur les choix de demandes de consentements comme sur le site Mappy, qui contient une masse d'infos de Pros et surtout leur email..., ais il y a des fenêtres qui sont bloquantes et difficiles à contourner ("Accepter & Fermer" + "Continuer sans accepter" + "Connexion" ...), merci pour ton écoute? Roby
@pavithrap769
@pavithrap769 3 ай бұрын
I'm getting fail to fetch data. could please anyone tell me what to do?
@japhethmutuku8508
@japhethmutuku8508 2 ай бұрын
did you find a solution for this.....if not i can help you with it
@uplifthabesha754
@uplifthabesha754 Жыл бұрын
can you interact using beautiful soup like clicking or entering data in an input tab
@TheKingjake03
@TheKingjake03 Жыл бұрын
No but you can use selenium for that
@ChrisTDBCODE
@ChrisTDBCODE 9 ай бұрын
For some reason when I run requests.get(url) it doesnt give me any status code whatsoever, I have also tried using the .status_code and nothing gets returned to me. I also checked and both Beautifulsoup and requests are installed. Is there anything I can try to fix this?
@mxy4625
@mxy4625 9 ай бұрын
same here, let me know if you find a fix
@p.creation01
@p.creation01 3 ай бұрын
i might sound a complete noob , but can i do this on vs code?
@Alien-by3gb
@Alien-by3gb 2 ай бұрын
Yes, ofc you can 😅
@p.creation01
@p.creation01 2 ай бұрын
@@Alien-by3gb hehhe am not a noob anymore bro ask me anything
@kaliportis
@kaliportis Жыл бұрын
Hello I am an aspiring data analyst I have been watching your "how to build a resume videos"; in one of them, about three years ago, your were reviewing resumes and I wanted to know if you would be willing to review mine (not video or anything), thank you for your hard work ^_^
@fontage-enterprise
@fontage-enterprise Жыл бұрын
What series is this video part of?
@AlexTheAnalyst
@AlexTheAnalyst Жыл бұрын
It's the Web Scraping Series - it'll be a mini series in the Python series :)
@ppbp_242_muhammadsyahrulmu5
@ppbp_242_muhammadsyahrulmu5 Ай бұрын
i get probelm. i don't know about my text. this text is wrong "no module named ' request" i hope so can help me. thank you
@tareqzeyad2237
@tareqzeyad2237 Ай бұрын
make sure you type it 'requests' . *followed by 's'
@robbylebotha
@robbylebotha Жыл бұрын
Very important, DO NOT forget to use a timer otherwise you will find yourself causing DOS on the website you're scraping from or your IP being blocked by the site. Load the page in a browser and copy the page source when building your scraper.
@satheeshp2384
@satheeshp2384 Жыл бұрын
how to change every request ip address
@theHarbingerOfDoom
@theHarbingerOfDoom 10 ай бұрын
Hey man, I don't quite understand what you are referring to in the second paragraph, wouldn't that be the same as: url = '...' page = requests.get(url) ?
@slowking9058
@slowking9058 Жыл бұрын
can someone hire me?! I know sql, tableau and excel
@tusharpal5293
@tusharpal5293 Жыл бұрын
i am getting this error ImportError: cannot import name 'beautifulSoup' from 'bs4' (C:\Users\ASUS\anaconda3\lib\site-packages\bs4\__init__.py) can you tell how to measure it.
@uartim
@uartim Жыл бұрын
Capital letter B
@harisshi
@harisshi 5 ай бұрын
in jupyter type BeautifulSoup (b and s in caps)
@hafsaabdullahi1250
@hafsaabdullahi1250 7 күн бұрын
were you able to solve it am facing the same problem even after the caps B and S
@gloriabukachi1
@gloriabukachi1 Жыл бұрын
So easy to understand. Thank you teacher
Find and Find_All | Web Scraping in Python
12:10
Alex The Analyst
Рет қаралды 62 М.
Web Scraping for Beginners with Python and Selenium 4
21:22
The PyCoach
Рет қаралды 10 М.
SHAPALAQ 6 серия / 3 часть #aminkavitaminka #aminak #aminokka #расулшоу
00:59
Аминка Витаминка
Рет қаралды 1,6 МЛН
when you have plan B 😂
00:11
Andrey Grechka
Рет қаралды 66 МЛН
If Else Statements in Python | Python for Beginners
6:40
Alex The Analyst
Рет қаралды 49 М.
Scraping Data from a Real Website | Web Scraping in Python
25:23
Alex The Analyst
Рет қаралды 456 М.
Web Scraping with Python and BeautifulSoup is THIS easy!
15:51
Thomas Janssen | Tom's Tech Academy
Рет қаралды 34 М.
Scraping Dynamic JavaScript Websites - Beautiful Soup Python
11:38
Beautiful Soup 4 Tutorial #1 - Web Scraping With Python
17:01
Tech With Tim
Рет қаралды 477 М.
Inspecting Web Pages with HTML | Web Scraping in Python
5:55
Alex The Analyst
Рет қаралды 63 М.
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,2 МЛН
Web Scraping with Python - Start HERE
20:58
John Watson Rooney
Рет қаралды 35 М.
Advanced Web Scraping Tutorial! (w/ Python Beautiful Soup Library)
42:43