Build a Web Scraper (super simple!)

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ก.พ. 2025

ความคิดเห็น • 872

  • @josenardulli
    @josenardulli 3 ปีที่แล้ว +104

    thanks Ania its working perfectly, may i ask why we cant use an arrow function inside the each on line 15 of the code when you call the cheerio ($) function i try it and i got all undefine but i cannot wrap my head around the why....

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว +59

      I *think* it’s because cheerio is not configured to use arrow functions - but I can’t be sure - I haven’t looked into it enough :) I will have to when I’m back from holiday. I will pin this so others can see your great question 😄

    • @aliabdelrhim
      @aliabdelrhim 3 ปีที่แล้ว +8

      @@austinps4026 This work for me:
      try {
      $('.fc-item__title').each(function () {
      const title = $(this).text
      const link = $(this).find('a').attr('href')
      articles.push({
      title,
      link
      })
      console.log(articles)
      })
      }catch(err){
      console.log(err)
      }

    • @papajohnsuk5965
      @papajohnsuk5965 3 ปีที่แล้ว +5

      because the arrow function scopes the function outside of 'this'

    • @marcod.643
      @marcod.643 3 ปีที่แล้ว +20

      You ca use an arrow function with the each method, but you must pass 2 parameters, an index and the element:
      $(".wathever", html).each((i, el) => {
      const title = $(el).attr("title")
      const image = $(el).find("img").attr("src")
      article.push({
      titolo,
      image
      })

    • @toddfisher8248
      @toddfisher8248 3 ปีที่แล้ว +3

      Arrow functions use this from the calling context. Before arrow functions to do this you had to use the bind method when calling your function to switch the this context of your function. You could implement bind before it existed with apply when calling to have the function run with a different this… arrow functions just make what you usually want easier which is to carry the this context forward.. however many libraries exist that take advantage of the fact that the function you pass into another function can be called in away that changes the this…

  • @revillsimon
    @revillsimon 3 ปีที่แล้ว +196

    For anyone wondering… you’ll need to make sure the nodemon package is installed. You can run ‘npm i nodemon -g’ to use it globally on your machine. Or alternatively, you can run ‘npm i nodemon -D’ inside the project directory to use it as a development dependency while the project is running. Great video Ania, keep it up 👍

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว +41

      Thanks for sharing this!!!! You are totally right I missed explaining this part- I will make sure to cover it in my next videos :)

    • @alucard1532
      @alucard1532 3 ปีที่แล้ว +7

      As a total newbie it saved me thanks.

    • @SandraWantsCoke
      @SandraWantsCoke 3 ปีที่แล้ว +5

      thx, but I like my demons

    • @frogboy831
      @frogboy831 3 ปีที่แล้ว +2

      thank u!! love when u have an issue that's way over your head and it's solved in the first comment u read

    • @flexaeterna
      @flexaeterna 2 ปีที่แล้ว +1

      Ohhh that will do it. Thanks for this

  • @adnanmadhoun8045
    @adnanmadhoun8045 3 ปีที่แล้ว +32

    This comment doesn't belong to this video, >> You saved me in my senior project last 6 months while I watched tutorial about web development ❤️❤️❤️❤️❤️

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว +5

      Thanks so much for coding with me 💚

  • @markharrisllb
    @markharrisllb 3 ปีที่แล้ว +4

    I am a boomer coding virgin except for a minute amount of C++ for my Arduino. No one has made sense to me before as there’s usually an assumption of a greater knowledge than I have. You are the first person who was coherent to me, every step explained and details of what is happening behind the scenes. Your beautiful diction helps a lot as well, thank you.

  • @fourlokouva
    @fourlokouva 2 ปีที่แล้ว +25

    Love how you just get into it without any sitcomish-intros, just straight to the point. Your videos have given me the confidence to finally start applying to dev jobs. Thank you so much, Ania!

  • @artopaivinen3233
    @artopaivinen3233 3 ปีที่แล้ว +5

    Thanks Ania! Tried already two small projects of yours, and I must say, that you're a teacher, that speaks to novices as well. The samples you made are easy to follow, and simple enough to figure it out, how the packages work with each others. Of course that also shows a great understanding, how to produce working program, but having success with working sample encourages to do more. Thank you with appreciations!

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว

      This is so lovely for you to say and has made my day :) 🥰 thank you so much Arto!

    • @artopaivinen3233
      @artopaivinen3233 3 ปีที่แล้ว

      @@aniakubow ... Sorry - forgot to wish Merry Xmas! ... and now I do. Happy New Year goes with the same package ;-)

  • @metatronicx
    @metatronicx 2 ปีที่แล้ว +1

    Clear and precise english. This woman explains well all topic she talks about. Thank you for being a content creator. It fits you so well

  • @lilianamilano3707
    @lilianamilano3707 ปีที่แล้ว +1

    Thank you, Ania! It worked perfectly. I had no idea how to complete this task. You saved my day and gave me a lot of knowledge and fun too. I send you love from Venezuela, you are a genius! ♥

  • @KingstonFortune
    @KingstonFortune 3 ปีที่แล้ว +3

    This was a very good intro video to web scraping, thanks!
    As a quick tip, when running the `npm init` command you can just append `-y` at the end so it becomes `npm init -y`, and then it will proceed to skip the checks and create the package.json file without you having to press enter several times.

  • @noahmichael89
    @noahmichael89 3 ปีที่แล้ว +16

    Very cool simple project! One thing I noticed is that you must have nodemon installed globally (unless it's packaged with a version of Node I don't have?). For anyone that doesn't, the "npm start" script won't work. Of course you can just install it locally into this project with "npm i nodemon" in the terminal.

    • @TheJosephTodd
      @TheJosephTodd 3 ปีที่แล้ว +1

      My man, thank you! Had this exact problem and you solved it. :)

    • @authoritycamper
      @authoritycamper 3 ปีที่แล้ว +1

      Thanks man! This is the command for a Mac: sudo npm install -g nodemon

    • @kenfoli330
      @kenfoli330 2 ปีที่แล้ว

      thanks alot man

    • @maurov6861
      @maurov6861 2 ปีที่แล้ว

      well done bro! installed on the project ;)

  • @katykarry2495
    @katykarry2495 2 ปีที่แล้ว +10

    Works purrfectly and super simple code to use and follow. Can you do a part 2 where you learn us to crawl() with this scraping code? I mean the entire site for an example

    • @emmabecker6460
      @emmabecker6460 2 ปีที่แล้ว

      Yes please Khaleesi of codes do this!

  • @jalapenogaming9740
    @jalapenogaming9740 3 ปีที่แล้ว +16

    hey just here to say "thank you" !!
    you put a lot of effort into these videos i hope your channel grows fast and get to the top 🙌

  • @rinn1944
    @rinn1944 2 ปีที่แล้ว +4

    Wow! You explained this so well and left nothing vague. A lot of other tutorials leave out so many parts, assuming everyone knows what they're telling.
    It's the first time I've come across your channel, and you just gained a subscriber. Thanks a lot!

  • @glowiever
    @glowiever 3 ปีที่แล้ว

    I am assigned as data engineer and really need to scrape some data from a marketplace. this is a blessing!

  • @koenslootweg5882
    @koenslootweg5882 3 ปีที่แล้ว +2

    Just had a web scraper project on work last week so used your idea. Thanx Ania. had some problems with nademon... But just installed nodemon wit npm i nodemon

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว +1

      Amazing!!! I’m glad this video helped and you managed to get nodemon installed :) thanks for leaving your advice for others too!

  • @theshazman
    @theshazman 3 ปีที่แล้ว +13

    Would love a follow up to this with more advanced scraping such as a page that is behind a login wall, or something that requires a query to be filled before getting the final web content. Thanks heaps!

  • @syntaxed4365
    @syntaxed4365 3 ปีที่แล้ว +22

    This was a fantastic tutorial, and as someone that is a lover of JS, it's nice to see this approach.
    I just have to say, I know that they are no longer required, but my brain just gets a completely unnecessary comfort out of using semicolons 😅 even though I can definitely agree that it looks cleaner without. I still have the desire to go through and add them everywhere! haha

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว +6

      Thank you so much!! I really appreciate your comment 💚. Haha yes , I’m team no semi colons for my projects on here haha. I used to use them at work, but even then an extension added them in for me 😛

    • @Ibloop
      @Ibloop ปีที่แล้ว +1

      hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahah >=[

  • @Lucas_Gamaleri
    @Lucas_Gamaleri 3 ปีที่แล้ว +1

    The mere fact that you have a couple longboards behind you convinced me to subscribe and like this video. You're a cool coder 🌝

  • @lifelessalarm
    @lifelessalarm 3 ปีที่แล้ว +19

    Thanks for the tutorial =) As a few others have said, an alternative option might be to use puppeteer. It has a nice syntax and is very flexible. You can simulate natural browsing using simulated click events and run additional commands such as taking screenshots of html content based on css classes.

    • @LetsScrapeData
      @LetsScrapeData ปีที่แล้ว +1

      yes, I design a template in 4 minutes to scrape title and url using a tool based on puppeteer: th-cam.com/video/rB5BHg0XyKs/w-d-xo.html

  • @galactic_4k
    @galactic_4k 3 ปีที่แล้ว +15

    Crazy, I just happened to need do something similar for a project and here you are uploading a video that helps a ton! Thanks!

  • @jeevanjotsinghnarula2453
    @jeevanjotsinghnarula2453 ปีที่แล้ว

    Seeing couple of software out there that helps people scrape data from the website. It's great to watch this video so I can be able to do the same by just learning programming from best people over on youtube.

  • @vinitmanerikar5444
    @vinitmanerikar5444 3 ปีที่แล้ว

    I have subscribed to many programming channels, however you are one of those who really add value..keep it up

  • @emilyreese9551
    @emilyreese9551 2 ปีที่แล้ว

    This is a wonderful explanation of every line of code. I've learned code through online resources, mentors and college. Some of this stuff I knew I had to do but I did not know why. Thank you!

  • @Shafty17
    @Shafty17 2 ปีที่แล้ว

    Big thanks, Ania!
    With your help i managed to write a webscrapper to parse through all private repositories in my organization (had to add authorization as well), "read" it's package.json file, save it to a file, then run another conversion script that forms array of strings in certain way & then save it to .csv file, to be able to create a pivot table & analyze tech stack of our product :)

  • @suavebob
    @suavebob 2 ปีที่แล้ว

    Not sure why this channel/video showed up in my feed but most definitely this lady is a damn reasonable POA

  • @Cyapow
    @Cyapow 3 ปีที่แล้ว +2

    Damn. Wish there were videos to follow like this 20+ years ago when I was starting out lol. You make it very easy to understand

  • @jacksonaguilar1998
    @jacksonaguilar1998 2 ปีที่แล้ว

    I can listen to you all day. I hope you were my web dev lecturer.

  • @k-c
    @k-c 3 ปีที่แล้ว +1

    Thanks!

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว +1

      Thank you so so much Kaushik!!! It means the world!

  • @kamertonaudiophileplayer847
    @kamertonaudiophileplayer847 3 ปีที่แล้ว +9

    You provide an amazing technique for web scrapping. It would be good if you explain also how to manage sites using an anti scrapping technique, for example instead of just populate a text directly, they wrap every character in a different tag or even replace some digits with a similar text characters and so on.

  • @imagineaddis9050
    @imagineaddis9050 3 ปีที่แล้ว

    That is why learning docker was important for me. We can package our program to work on any machine without worrying about breaking changes from node or express. Thank you for the nvm tip!

    • @havocblast
      @havocblast 3 ปีที่แล้ว +1

      yes docker is a life saver especially when you work on both mac and windows

  • @JoseHernandez-bg6zm
    @JoseHernandez-bg6zm 3 ปีที่แล้ว +8

    Loving the bit more "fullstack-oriented" content! Actually have a project in mind where I could apply this perfectly. Thanks for the inspiration! ;)

  • @RealElites
    @RealElites 2 ปีที่แล้ว

    Learning from Ania's style of teaching is easy and relieving. Gonna binge this stuff

  • @federicomontesdeoca8977
    @federicomontesdeoca8977 3 ปีที่แล้ว +20

    Hello Ania, thank you for the quality of your videos !
    I have almost 4 years of experience as a js dev, but still learning with your content.
    Just one question, why you install express and turn the app into a server, since you only need the http client (axios) in order to scrap the page?

  • @networkserpent5155
    @networkserpent5155 ปีที่แล้ว

    I wanted to learn the power of web scraping. This video shows just that! Thank you Ania

  • @lifeoffreelance9131
    @lifeoffreelance9131 3 ปีที่แล้ว +4

    Hi, this is my first time here, and i really love the way you teach. thank you for your very informative tutorial.

  • @fiveminutesvideo
    @fiveminutesvideo 2 ปีที่แล้ว +3

    Hi Ania, love the videos! Would love one on setting-up a web scraper to scrape every minute or so in a Litespeed server. Keep up the great work.

  • @saudahmed2436
    @saudahmed2436 2 ปีที่แล้ว

    Thanks Ania, had a little bit issues but after i got nodemon package installed and realized i was missing a . for calling the class it worked like a charm :). One thing to note i think is that windows doesnt have a NVM, so i had to als install one of those just so i could make sure i am using same version as you

  • @edwarddejong8025
    @edwarddejong8025 2 ปีที่แล้ว

    Wonderfully clear exposition. A very effective teacher.

  • @AlcantaraMC
    @AlcantaraMC ปีที่แล้ว

    sister used 70% of the vid to set up everything huhu.
    anyways, it works at the end, and its what we came here for. Thanks!

  • @mrCetus
    @mrCetus 3 ปีที่แล้ว

    Amazing tutorial !
    Keep up the great work !
    The web scraper would now enable us to develop alternatives for all applications using APIs and this gives us great confidence.

  • @DKSorg
    @DKSorg ปีที่แล้ว

    Awesome Video.
    Clear Precise and great Audio, easy to follow and listen to.

  • @vancouverrrr
    @vancouverrrr 2 ปีที่แล้ว

    You have helped changed the lives of many, thank you for sharing your priceless knowledge

  • @CH3RRYxB0MBx
    @CH3RRYxB0MBx 3 ปีที่แล้ว +5

    I've been waiting for a tutorial like this! Thanks Ania!

  • @benimoza9746
    @benimoza9746 3 ปีที่แล้ว

    Omg, idk what words to say, i love you, this is so easy to follow

  • @RealJustinEstrada
    @RealJustinEstrada 3 ปีที่แล้ว +2

    Your tutorials are very consice and to the point. Its greatly appreciated.

  • @KacperSieradziński
    @KacperSieradziński 3 ปีที่แล้ว +4

    This is great that you are going through the doc during video :-) It is great because you teach people how to read the doc... I do the same on my Python videos :-) Pozdrawiam! :)

  • @zaliblk_media
    @zaliblk_media ปีที่แล้ว

    Great tutorial. Very well spoken. Very well communicated. Great Job Ania.

  • @MartinJaszczuk
    @MartinJaszczuk 3 ปีที่แล้ว +2

    Great video. I love the longboard on the wall. Thanks for posting!!!

  • @aminagha3206
    @aminagha3206 3 ปีที่แล้ว +5

    I am really proud that you are my teacher, I learned a lot from you, what is really interesting is that you are beautiful in appearance and also you have a beautiful mind you can explain the information in the simplest ways. Eagerly waiting for your new one🌹

  • @whalebird
    @whalebird 7 หลายเดือนก่อน

    great video and nice accent! It was pleasant listening to this tutorial, I've subscribed : )

  • @JordiVicensFarrus
    @JordiVicensFarrus 3 ปีที่แล้ว +4

    This is great Ania, thanks for your video! BTW just as an idea, would be great to have a second and a more advanced part, that shows how to do it in a site like Linkedin that requires Login or a site that has dynamic ids and classes.
    Cheerios!

  • @hestJaevel
    @hestJaevel 3 ปีที่แล้ว +2

    Great video! Only feedback is: Use chapters so we can skip the steps to install node if we already have it for example :)

  • @xmachina47x
    @xmachina47x 3 ปีที่แล้ว

    I think some of us, senior developers, will follow because we would like to see a surfing tutorial. .:D ..featuring the Lara Croft voice. Great coding! ;)

  • @lloyd27z
    @lloyd27z 3 ปีที่แล้ว +3

    Everything you explained is quite clear and simple .So very helpful to learn.Thank you 😘

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว +1

      Thanks so much Sue!!! It’s great to hear this feedback as I’m always trying to improve 😄💚

    • @lloyd27z
      @lloyd27z 3 ปีที่แล้ว

      @@aniakubow looking forward to your new tutorial!

  • @Sloth740
    @Sloth740 2 ปีที่แล้ว

    Thanks for the video! I had some issues with the "start" script on Windows but found that "node index.js" not "nodemon index.js" worked for me.

  • @chrisjordan5849
    @chrisjordan5849 4 หลายเดือนก่อน

    Thanks because of you i learned the basics of web scrapping 👍

  • @JakeAndDaddy
    @JakeAndDaddy 3 ปีที่แล้ว

    Did you need to use express? You didn’t serve anything.
    Clear and concise. Loved that you zoomed in on the code. I’ve told numerous others I can’t see their code on an iPad.

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว +1

      Express is for part 2 :) (coming soon)

  • @thecoderabbi
    @thecoderabbi 2 ปีที่แล้ว +1

    Subscribed! cause your contents are really great!

  • @brussells
    @brussells 3 ปีที่แล้ว +3

    Really clear and concise tutorial. Have a couple questions please: 1. How can you then use that data? Would you export to a csv, or database, to then use either on your own custom webpage or app? 2. Does this method run risk of being blocked by the webserver? Or would that not be an issue, as long as you're not scraping the data consistently?

  • @maxmaksum4673
    @maxmaksum4673 3 ปีที่แล้ว

    Ania....it is just awesome...someday if you have holiday to Bali I will treat you and show you aound

  • @discreetninja
    @discreetninja 2 ปีที่แล้ว

    Thanks Ania, you're a wonderful teacher. As a newbie, your lesson is as simple as it can be for me to understand. I even worked around it to try some other projects too that I can think off 🤠💕

  • @KDevGaming1921
    @KDevGaming1921 2 ปีที่แล้ว

    Thank you this is a great help, It was working. I just had an issue with nodemon and installed it in my machine. I am just encountering the PORT not showing up on my terminal. I have an older version of node js though. Haven't tried using nvm yet. Going to try and practice that tip you gave. This was really helpful.

  • @marianneazzopardi974
    @marianneazzopardi974 3 ปีที่แล้ว

    Love your content Ania! I'm currently doing a bootcamp and your videos are helping me through!! :D

  • @brookestephen
    @brookestephen 2 ปีที่แล้ว

    I built a hierarchical object model to hold the parsed HTML, made of nodes and parms, and a Trie to hold the key words for the parser. I wrote it in every language I've learned... Python, Java, C#, VB... You can create HTML with it too, and output to a string, so it's in every web server I build. There's several different search methods, so adding to the object model is fast and easy... no more counting

  • @aislinnsaunders-wallace9772
    @aislinnsaunders-wallace9772 3 ปีที่แล้ว

    Just created a stock data web scraping app thanks to this video!!! Thank you so much! I feel like a real pro lol :)

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว

      That’s amazing! Thank you so much for sharing this with me 😍

  • @ksivasuriyaprakash9976
    @ksivasuriyaprakash9976 3 ปีที่แล้ว +1

    Thanks for update my knowledge on npm. video was short and sweet.

  • @honeyverma2755
    @honeyverma2755 2 ปีที่แล้ว

    I usually not prefer to watch foreigner channel videos bcz your accent sometimes bit difficult 😅to comprehend but for you I must say you have given a good explanation of web scraping with this simple example 👍🔥

  • @gabyph2013
    @gabyph2013 2 ปีที่แล้ว

    Excellent video Ania! your explication is very simple and easy to understand, thank you

  • @kar0ee0m
    @kar0ee0m 2 ปีที่แล้ว

    I subscribed today because of my friend Hesham recommended you, so don't disappoint me

  • @shahedtheboss
    @shahedtheboss 3 ปีที่แล้ว +2

    Thank you so much i needed to learn how to build a web scrapper
    You are the best❤️

  • @crisolivares7847
    @crisolivares7847 3 ปีที่แล้ว +1

    its 6 am and I was waiting for this I love your channel

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว

      Thanks for joining Cris!!

  • @tancodes
    @tancodes 3 ปีที่แล้ว +2

    I have already creating a project with use of web scra and django. But this will be very helpful to learn from you 🔥

    • @alexf1082
      @alexf1082 2 ปีที่แล้ว

      Which Python package are you using? I don't like Selenium and I'm with requests-html but is no longer developed. The base requests package don't execute JavaScript.

  • @hazemelbatawy1242
    @hazemelbatawy1242 ปีที่แล้ว +1

    thanks, Ania it is very good and working perfectly.

  • @freedoom4090
    @freedoom4090 2 ปีที่แล้ว

    really nice! I did some of it in python, but it's kind of tricky sometimes, once many websites uses mechanisms to block selenium, scrapy and bsoup... I'll definitly try this one. Thanks for sharing!
    Always great content❤

  • @andrasbradacs6016
    @andrasbradacs6016 2 ปีที่แล้ว

    I was looking for a completely different thing, but you gave a good idea with this video! 🤗 Thanx! 😁

  • @matthewknobel6954
    @matthewknobel6954 2 ปีที่แล้ว

    Back in the day I had to build a scrapper by hand with only perl in a unix environment. It would start at a root, parse all the html, and then traverse to the sub pages. All as an intern at Xerox back in 94.

  • @tarek_maza
    @tarek_maza 3 ปีที่แล้ว

    Congrats on the 200k subscribers

    • @aniakubow
      @aniakubow  3 ปีที่แล้ว

      Thank you Tarek!

  • @vskiy26
    @vskiy26 2 ปีที่แล้ว +2

    Thank you for such awesome tutorial. Dziękuję Ci.

  • @sadique_x_
    @sadique_x_ 10 หลายเดือนก่อน

    Ania makes programming very interesting!

  • @aashishsinghal7331
    @aashishsinghal7331 3 ปีที่แล้ว +2

    Awesome Video. Please Do a Docker Begginer friendly project with react or MERN, I have been trying to learn that, With your videos it will be so much helpful.

  • @odeddugma9748
    @odeddugma9748 3 ปีที่แล้ว +1

    Thanks Ania. You are a great teacher ☺️
    You make it looks so easy.

  • @rukkychew
    @rukkychew ปีที่แล้ว

    Thanks for the intro. After that I was able to move around and play around to build a scraper for blogspot

  • @luisamilcartavares26
    @luisamilcartavares26 ปีที่แล้ว

    Interesting, whenever I think of scraper I always think of Python (beautifulsoup).
    This is really a very good perspective.
    thanks for sharing.

  • @nam-sdrawkcab
    @nam-sdrawkcab 10 หลายเดือนก่อน

    YEAHH!!!! ILL BE SCRAPING ALL OF YOUR VIDEOS 😍

  • @christianh.1160
    @christianh.1160 3 ปีที่แล้ว

    Thanks Ania for the video. You did a perfect job. All the best , stay healthy and have a wonderful week
    Cheers Christian

  • @mariuszzawierucha1310
    @mariuszzawierucha1310 3 ปีที่แล้ว

    Dzięki Ania! Zabierałem się do napisania czegoś podobnego w zupełnie innej technologii , ale te parę linii kodu to chyba najlepsze uproszczenie jakie może być!

  • @FranciscoBourquin
    @FranciscoBourquin 2 ปีที่แล้ว

    Pretty helpful and easy to follow step by step explanation. I'm fairly new to programming so thank you 💕

  • @zippytyro
    @zippytyro 3 ปีที่แล้ว

    Love it, so simple and unique way of teaching. Love from India >3000

  • @PeterCooperUK
    @PeterCooperUK 2 ปีที่แล้ว

    There's an extension called "Selector Gadget" which lets you pick elements on a page and it'll work out the best CSS selector to reach those elements which is great for scraping like this.

  • @sveinnarnarstefansson2720
    @sveinnarnarstefansson2720 3 ปีที่แล้ว

    Well done, wonderful video, really makes it easy to start with scraping. Thanks Kubow!

  • @okidokiyowyow356
    @okidokiyowyow356 2 ปีที่แล้ว

    Thank you so much. I always wanted to learn how to scrape the web I didn't know it's this easy.

    • @FeedScrn
      @FeedScrn 2 ปีที่แล้ว

      Scrape it for what?.. if you don't mind me asking.

  • @legisam1754
    @legisam1754 3 ปีที่แล้ว

    I like 😂😂😂. Just found your channel and I'm loving it. Excellent content. Keep it up and keep em coming 👍👍👍

  • @marcoantonioaguileratorres3754
    @marcoantonioaguileratorres3754 3 ปีที่แล้ว

    Really easy and helpful, I love the way you teaching ♥ ❤
    I love your videos!!

  • @vladimirchemir3737
    @vladimirchemir3737 2 ปีที่แล้ว

    Amazing simple steps for extracting data! Maybe you ask about surfing web site structure with using some buttons or links clicks? Thanks!

  • @romimaximus
    @romimaximus 2 ปีที่แล้ว

    at 17:15 mins, i'm surprised, that you didnt get a "Cors" Error !!.... but great tutorial !!... thank you very much for sharing it !! 😃👍

  • @Workshop385
    @Workshop385 2 ปีที่แล้ว

    I don't know anything about programming, but I watched the clip to the end.

  • @964tractorboy
    @964tractorboy 3 ปีที่แล้ว +2

    Always a pleasure to watch. Well explained in an accessible demo. Useful too. Thanks so much.

  • @johnwayne8059
    @johnwayne8059 3 ปีที่แล้ว +1

    Hi Ania, thanks for all the amazing content!👍👍👍 Your channel is truly helpful!
    You're simply great! 😉😇

  • @trafalgarlaw4778
    @trafalgarlaw4778 3 ปีที่แล้ว

    learning my first line of code because my teacher Ania is stop eating beautiful

  • @kuoyulu6714
    @kuoyulu6714 11 หลายเดือนก่อน

    Thanks, this is really clear and simple to follow!