Web Scraping with AIOHTTP and Python

Поделиться
HTML-код
  • Опубликовано: 21 сен 2024

Комментарии • 94

  • @Rasstag
    @Rasstag 3 года назад +22

    John,
    Great tutorial... many thanks... now I know how to juggle... ;)
    Wanted to pass on an observation... apparently, Windows, can be cranky with asyncio/aiohttp. Your example program throws a “RuntimeError: Event loop is closed ” error.
    However, adding towards the bottom:
    asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
    … on top of
    pages = asyncio.run(main(urls))
    … solves whatever 'Event loop' issues that were present.

    • @rtxmax8223
      @rtxmax8223 3 года назад +1

      yes i was working on the async request and I got the similar error, the only way it works for me is if my program keeps on running. Since I am doing a constant request response after one ends, i dont get this error. but when I run my program for only one page to scrap then I get this error.

    • @luxeave
      @luxeave 2 года назад +1

      @Rasstag, dude ur a life saver. well done!

    • @Valentin439
      @Valentin439 Год назад

      Thank man!

  • @efferington
    @efferington 2 года назад +2

    Hi John, thank you very much for this. Found this video while trying to figure out how to include an async AIOHTTP loop in some API processing script I'm writing and this was invaluable for figuring out how to structure the code.

  • @andres777video
    @andres777video 2 года назад +1

    No requests from me... just love your videos John! - Thanks for spending the time...
    I need this code to pull data for 188,600 items (each one is a web page...with 3 tables each) -
    UIPath would take about 32 days to complete. - asyncio + aiohttp should be much, much faster!
    Thanks for the tip Rasstag ( had the same issue in Windows)

  • @celerystalk390
    @celerystalk390 3 года назад +3

    Your videos and topics just keep getting better. Great job!

  • @a_private_handle
    @a_private_handle Год назад +1

    Great wallpaper from Firewatch

  • @yacinehechmi6012
    @yacinehechmi6012 Год назад +1

    Thank you sir!!

  • @GelsYT
    @GelsYT 2 года назад +1

    HEEY MAAAN RECENTLY WATCH YOUR VIDS ON SCRAPY!
    YOU'RE SAVING MY LIFE AGAIN! THANKS1

  • @symbolminded5167
    @symbolminded5167 Год назад +1

    Your video helped a lot, thank you

  • @nsnilesh604
    @nsnilesh604 3 года назад +1

    Awesome way to get list of urls 👌😎

  • @rrahll
    @rrahll 3 года назад +2

    thanks for the tutorial!

  • @nahomtsegaye
    @nahomtsegaye 3 года назад +1

    you are a wizard my friend

  • @dobcs3236
    @dobcs3236 Год назад

    Thank you very much 🥰

  • @thekarthik
    @thekarthik 3 года назад +3

    You're the best

  • @fuad471
    @fuad471 3 года назад +1

    Thank you it was really helpful to grasp the asyncio concept

  • @МаксимМельников-ж4у
    @МаксимМельников-ж4у 2 года назад +1

    Really good explanation ! thks a lot !

  • @galichandreyschool
    @galichandreyschool 2 года назад +1

    Very good! :) Thank you!

  • @coala6019
    @coala6019 Год назад

    @John Watson Rooney Good tutorial! Thanks! But the lines 23 to 26 are synchrone no?

  • @serge2033
    @serge2033 2 года назад

    cool. thanks!!

  • @tubelessHuma
    @tubelessHuma 3 года назад +1

    Always trying new ways of scraping. Great 👍🌹

  • @DerekMurawsky
    @DerekMurawsky 5 месяцев назад +1

    Subscribed. What are your thoughts on going about it this way vs something like scrapy?

    • @JohnWatsonRooney
      @JohnWatsonRooney  5 месяцев назад +1

      Honestly I use scrapy almost all the time now, unless it’s more of a throwaway script

  • @АнтонНазарук-щ5с
    @АнтонНазарук-щ5с 2 года назад +1

    Thank you, John! Realy nice tutorial, helped alot.

  • @tnssajivasudevan1601
    @tnssajivasudevan1601 3 года назад +1

    Great tutorial..Sir

  • @phudinhtruong
    @phudinhtruong 2 года назад

    great video

  • @GelsYT
    @GelsYT 2 года назад +2

    So basically what's happening here in the whole program is that when on the event loop -- all of the tasks while the requests is being made, while it's waitiing it passes the resources to the other task functions? so on and so fort up until we got the response? I'm sorry if it's not that clear

    • @JohnWatsonRooney
      @JohnWatsonRooney  2 года назад +1

      Yeah so basically instead of the whole program waiting for a server response it gets on doing other things, ie more requests out. It means there is minimal time spent waiting and maximum time spend doing

    • @GelsYT
      @GelsYT 2 года назад

      @@JohnWatsonRooney THANK YOU!
      To anyone who watches his videos and does not subscribe! PLEASE DO IT NOW! Thank you man! also please smile more! I like your beard! wish I have that as well

  • @DarkPsychologyIQ
    @DarkPsychologyIQ 3 года назад +2

    Hi John, great videos by the way! I was wondering how can I scrape a website for the ASIN's, product title, stock levels and price?

  • @peterpann7778
    @peterpann7778 2 года назад +1

    Hi John, thanks alot for your wonderful vedios, I was wondering which is faster async or multithreading in webscraping?

  • @MEZHGANO
    @MEZHGANO Год назад

    This library is great. But how can we pass rich cookies with "path, expires, secure... etc", not just simple "key:value"?
    I found that documentation is extremely poor in terms of cookies.

  • @JesusTorres-bt2eb
    @JesusTorres-bt2eb 3 года назад +1

    Thank you so much, I had learn a lot from your videos, I have a question, It is possible that there is a similar option for pages in cloudflare, I currently use cloudscraper, but it has bugs, do you recommend something?

  • @bighneswar98
    @bighneswar98 2 года назад

    The webpage that I'm trying to scrape using asyncio and aiohttp throws an error saying
    "return self._body.decode( # type: ignore[no-any-return,union-attr]
    UnicodeDecodeError: 'utf-8' codec can't decode bytes in position 25051-25052: invalid continuation byte"
    Was working fine in requests and html. What's the solution?

  • @nachoeigu
    @nachoeigu 2 года назад

    Wow, it is an amazing content. Thank you. I would like to know more about asyncio in Python. How did you learn it? Do you recommend some lecture or article?

  • @Lorant1984
    @Lorant1984 2 года назад

    Where is the link for the video with "session objects", please?

  • @OprichnikStyle
    @OprichnikStyle 2 года назад

    why did you put the await in return await r.text? I had to take it out in roder for my code to work

  • @jithin.johnson
    @jithin.johnson 2 года назад +1

    Great tutorial! How do we get around with the IP bans? Bombing the sever with async requests often gets me banned.

    • @JohnWatsonRooney
      @JohnWatsonRooney  2 года назад +1

      Thanks! Yes you will need to use some good proxies to avoid the bans. Or I find async is great for getting data from multiple different sites at the same time

  • @rangabharath4253
    @rangabharath4253 3 года назад +1

    Awesome 👍😎

  • @hamidrezarahimi6651
    @hamidrezarahimi6651 3 года назад

    Link to the quickstart page :
    docs.aiohttp.org/en/stable/client_quickstart.html

  • @rotatingmind
    @rotatingmind Год назад

    Cool tutorial. Just one question: what could we do, if we want to add new urls to the task list from the parsed results?

  • @nachoeigu
    @nachoeigu 2 года назад +1

    If you shoud define the best module for web scraping in terms of efficience and robust, what would be? I know selenium, requests, HTMLSessions, aiohttp, AsyncHTMLSession, scrapy, among others. What do you recommend to focus in specifically for its completeness. Thank you for your content.

    • @JohnWatsonRooney
      @JohnWatsonRooney  2 года назад +1

      Hi, requests-html is my go to for most smaller projects. Otherwise scrapy

  • @justindi6061
    @justindi6061 3 года назад +1

    I've learned a lot about scraping through your videos! What is the chances of getting blocked if I host my script on a server and scrape a website multiple times a day? Should I be implementing proxy rotation or can I get away without it?

    • @JohnWatsonRooney
      @JohnWatsonRooney  3 года назад +1

      Thanks Justin! It depends on how often is multiple times and how many requests you are making. I’d say try it first and see if you start to run into issues

  • @KirillBezzubkine
    @KirillBezzubkine 2 года назад

    I wouldbreally appreciate an answer: i have to make about 10000 api requests but the api supports only about 50 calls at a time so i need to split the whole 10k range into chunks. How do i make async requests in batches.?

  • @anto3617
    @anto3617 3 года назад

    Can you explain please how to scrap products price from webstore and send telegram alert when price drop? Thanks for you're video

  • @7488nishant
    @7488nishant 3 года назад +1

    Your videos are very informative...
    Bro....can you make video on web scraping where cookies expires after 30 mins...example website like NSE etc

  • @Антмара
    @Антмара Год назад

    Hi John. Thank you for your video. Just one question: Is it possible to make def Pars to be asynсhronous too? I need two functions: first gets links for product card pages from 30 pages of site, and second function uses that links to get products price and other data from every card page. I have made first function asynсhronous and it works really quickly. I want second function o be asynсhronous too because the number of cards is more than 1000. But I still not know, how to gather these two functions together, how to create tasks for them both. Could you please give me your advise how to make it works

  • @nachoeigu
    @nachoeigu 2 года назад

    How could we use proxy dictionary with aiohttp?

  • @mohfatkurrozi4069
    @mohfatkurrozi4069 3 года назад +1

    Awesome... :-)

  • @sadam32
    @sadam32 2 года назад

    Hi John, great tutorial again. What theme for VS Code is this? Best regards

    • @JohnWatsonRooney
      @JohnWatsonRooney  2 года назад +1

      thanks- i believe that is GruvBox Material. i change a lot!

  • @DM-py7pj
    @DM-py7pj 3 года назад

    Will you do a trio video and cover nurseries please?

  • @spicer41282
    @spicer41282 3 года назад +1

    Nice! More tools in the chest! Thanks John.
    Any chance you can demo using an if-then-else scraping example?
    For example:
    If a set price or a range in price is found.
    Then scrape that object.
    Else, move on to the next page?
    Thanks for considering this request.
    Or, if you've done something similar in your previous Vids? Can you mention which ones? I've might've missed it... Thanks again!

    • @JohnWatsonRooney
      @JohnWatsonRooney  3 года назад

      Sure sounds like a good idea I’ll have a look and see what I can come up with!

  • @kimkelleher6255
    @kimkelleher6255 3 года назад

    Hey John!

    • @kimkelleher6255
      @kimkelleher6255 3 года назад

      Also, my next attempt will be grabbing one image from each of the 120k products. Is there a video for that? :)

  • @powergaming-tu6wj
    @powergaming-tu6wj 2 года назад

    ok so i have a question for you i have over 6000+ links and all i want to do is read the url get a one thing off the page and add it to the corelating link in google sheets any tips

    • @powergaming-tu6wj
      @powergaming-tu6wj 2 года назад

      aka most of the items from the market on a game called runescape

  • @Rani-wm1qq
    @Rani-wm1qq 3 года назад

    Ive been trying to use Selenium to Parse the Name and Price of some coins in a crypto exchange i use very often. But i keep getting this error. driver.find_element_by_xpath("//*[@id="root"]/div/div/div/div[3]/div[2]/div/form/input").click()
    What do i do

  • @terrascape
    @terrascape 2 года назад

    hi john , it would be great if you could reply, how do i go about returning the url for each iteration of the event loop?

  • @Suresh_Solution
    @Suresh_Solution 3 года назад +1

    Bro how to scrape sciencedirect website

  • @mlgen7
    @mlgen7 3 года назад

    Thanks for these videos. I am starting my journey on web scraping because I want to try understanding my spend on Deliveroo. (a food delivery app - like uber eats). Some questions and cheekily a tutorial, if possible, would be to learn how to manage social login (I used to google login for Deliveroo) and then be able to go down a level to a page and gather the order history.

  • @akalamian
    @akalamian 3 года назад +1

    Nice one, the third lesson learned here! Can you show some database lessons like we scraped 2 sites of shopify which have the same products, then do some price matching work to find the lowest price, thanks

    • @JohnWatsonRooney
      @JohnWatsonRooney  3 года назад +1

      Good stuff! Yes I am planning on some more database related things to come

    • @akalamian
      @akalamian 3 года назад +1

      @@JohnWatsonRooney absolutely great guide, just scrape 36000 product using 300s, just like a movie:)

  • @alexsorrow6133
    @alexsorrow6133 3 года назад

    Where I can copy this code 🤷🏻‍♂️

  • @artabra1019
    @artabra1019 3 года назад +1

    thanks .

  • @KhalilYasser
    @KhalilYasser 3 года назад

    Thank you very much. I got this error `Traceback (most recent call last):
    File "aiohttp.py", line 34, in
    results = asyncio.run(main(urls))
    File "C:\Users\Future\AppData\Local\Programs\Python\Python37\lib\asyncio
    unners.py", line 43, in run
    return loop.run_until_complete(main)
    File "C:\Users\Future\AppData\Local\Programs\Python\Python37\lib\asyncio\base_events.py", line 584, in run_until_complete
    return future.result()
    File "aiohttp.py", line 18, in main
    async with aiohttp.ClientSession() as session:
    AttributeError: module 'aiohttp' has no attribute 'ClientSession'`. Any ideas?

    • @KhalilYasser
      @KhalilYasser 3 года назад +1

      The problem occurred because the file name was aiohttp.py (It seems that causes conflict with the aiohttp module). I have put the solution so as to be a reference for others that may this problem happen with.

    • @JohnWatsonRooney
      @JohnWatsonRooney  3 года назад

      Great glad you worked it out!

  • @karthik-ex4dm
    @karthik-ex4dm 3 года назад

    One question...Since this is async, Will it wait for javascript to load fully before fetching the data from a page?
    Ex: If I put a brand filter in a ecommerce site which updates the page without loading it again, Will Aiohttp be able to fetch the updated the data ??

  • @yuvalbra
    @yuvalbra 3 года назад

    can you publish the source code?

  • @mayurahir9340
    @mayurahir9340 3 года назад

    Hello i am doing sum website scraping with one websit but i gating the one problem that website have an button function but when i click it it will give me a one name but wan i cloae the new tabe and reopen the page the name will button givea is hang every time than i can i scrape that
    Advance thanks and please help me 🙏

  • @mohfatkurrozi4069
    @mohfatkurrozi4069 3 года назад +1

    How to fix error 403 Forbidden sir?

    • @JohnWatsonRooney
      @JohnWatsonRooney  3 года назад

      Try different headers - user agents and cookies to see if that works

    • @mohfatkurrozi4069
      @mohfatkurrozi4069 3 года назад

      @@JohnWatsonRooney yes sir, but i very confuse to fix it, can you some day or maybe later in the next videos. Made a easy to solve my problem forbidden 403.. Before for that.. Thank you sir.. Your replay my comment

  • @manikandanmanickam9433
    @manikandanmanickam9433 3 года назад +1

    Can you show how to scrap form the delta airlines delta.com

  • @artabra1019
    @artabra1019 3 года назад

    grequests is not working ??
    i try treturns me none.

  • @artabra1019
    @artabra1019 3 года назад +1

    wers the source code