Web Scraping Instagram with Selenium

Поділитися
Вставка
  • Опубліковано 16 вер 2024

КОМЕНТАРІ • 694

  • @TheJohanHalim
    @TheJohanHalim 3 роки тому +33

    what happened if the post is not an image? IG lets you upload videos.

    • @PythonSimplified
      @PythonSimplified  3 роки тому +23

      Hi Johan 😀
      You'll need to tackle this with a conditional statement, where videos would be saved under the ".mp4" extension and images under the ".png" extension mentioned in the end of the video.
      Let me know if you were able to figure it out! 😊if not - I can film a quick tutorial showing how to do it 😉

    • @TheJohanHalim
      @TheJohanHalim 3 роки тому +4

      @@PythonSimplified please do! Also, how many images should I expect in my folder? I get a TypeError on the last for loop. TypeError: cannot use a string pattern on a bytes-like object
      I'm guessing its because of video format.

    • @paulameneses2306
      @paulameneses2306 3 роки тому +5

      ​@@PythonSimplified Hi!! Congrats for the perfect content!! I've spent my day studying for a master data science project and you've been helping me a lot :)
      I had the same problem today with profiles with some specific photo types, videos and reels.. I couldn't save an image and I got the same error mentioned above..
      Could you help us please?
      Thanks!! ;)

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      @@paulameneses2306 thank you so much dear! 😁 Sure, I'll look into it over the weekend and adjust the code to include a conditional statement for videos 😉 we'll be in touch!

    • @PythonSimplified
      @PythonSimplified  3 роки тому +5

      ​@@TheJohanHalim Yes, you are absolutely correct Johan!😊
      You get this type of error when trying to save a collection of images (video) as a single .png or .jpeg image, it's due to an incorrect format.
      The amount of images you should expect differs from one computer to another, depending on the size/scale of the display. The code in this tutorial would get you the number of images that results in a single scroll event.
      And as Instagram uses a dynamic language - the more you scroll, the more images are loaded to the page. If you'd like to include several scroll events - checkout my community post, where I include additional resources, a detailed article and code examples on how you can expend this bot: ua-cam.com/users/postUgwVQazZhNNqwdghhdh4AaABCQ
      I'll get back to you after the weekend with a solution to your video question 😉

  • @ankurgupta7102
    @ankurgupta7102 3 роки тому +166

    I never imagined that python learning could have this much glamour.

    • @akilthangavel8500
      @akilthangavel8500 3 роки тому +2

      hahaha

    • @AgriculturaDigital
      @AgriculturaDigital 3 роки тому

      Very good comment

    • @johnames6430
      @johnames6430 3 роки тому +10

      it was either fake Gamer Girl, OnlyFans, or this. But there is a lot of competition in those other areas so she went with this.

    • @johnames6430
      @johnames6430 3 роки тому +1

      by the way the whole thing of her in the right side of the screen is planned out, she has her hair there to hide that she's wearing something hoping to appear nude so people will click and it will go viral or something 😂 Wish her the best of luck though! No hate! 😘

    • @timothyo718
      @timothyo718 2 роки тому +11

      @@johnames6430 What a hater.

  • @sarthakpawar2407
    @sarthakpawar2407 3 роки тому +28

    Me saw the thumbnail and click it
    Me (after 10 mins) : ooh! It's a programming tutorial

  • @makeithappen5846
    @makeithappen5846 2 роки тому +10

    I love your style of knowledge sharing. You made it simple enough to understand by someone like me who is just beginning to learn python. Thanks!

  • @juliam9090
    @juliam9090 3 роки тому +5

    Compliment from a fellow girl coder, this video was super informative and entertaining and you are obviously bright and talented!

  • @PAuLXPlain
    @PAuLXPlain 3 роки тому +91

    *Lol , I Almost Forgot I came here to Learn Python! haha Stunning Looks!*

  • @TimMattison
    @TimMattison 3 роки тому +6

    This content is really great. Thank you for sharing it. Years ago I used to do web scraping back when there was a lot less JS and interactivity but haven't done it in a long time. This video got me back into it. Keep it up!

  • @Scal
    @Scal 3 роки тому +1

    Thank you so much for explaining and showing every basic steps in details !
    Lots of beginners like me get stuck in setup steps that can seem obvious to experienced developpers.
    For exemple thank you for explaining and showing all the download and setup Chrome driver steps.
    Even on some big websites pass quickly these basics setup steps.
    I was stuck but thanks to you I made it ! Thanks again !!!

  • @Thepathtoprofits
    @Thepathtoprofits 3 роки тому +3

    Thank you for this tutorial!. I am currently learning python on datacamp and haven't learned or seen any real world applications. I am definitely going to try this out and add what I learned from this video to my skillset.!

  • @PrinceKumar-el7ob
    @PrinceKumar-el7ob 3 роки тому

    i don't know why i am watching it instead of listening to music but the way she teaches is real fun!!

  • @illuminated2438
    @illuminated2438 Рік тому

    Very difficult. She's a world-class beauty, yet providing world class teaching on a very important topic.

  • @KyotonoTori
    @KyotonoTori 3 роки тому +6

    thank you soo much you just saved me! im gonna rock that interview

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      That's awesome to hear Arthur! Good luck on your interview! 😀

  • @xilllllix
    @xilllllix 2 роки тому

    learned some good web scraping practices here like waiting for elements to be clickable, clearing the input boxes, etc. thanks!

  • @d-rey1758
    @d-rey1758 Рік тому +5

    Cool vid Maria! But on the days there isn't a "not now" button, the whole code grinds to a holt. To know how to add a function where if the "not now" button is present then code clicks on it and if it isn't present then the code skips to the step would be awesome!!

    • @tamzin1223
      @tamzin1223 Рік тому +4

      Omg please!!🥹

    • @davidliu7246
      @davidliu7246 Рік тому +1

      add a timeout to when waiting for "not now" to appear, and then put it in a try/catch block.

    • @d-rey1758
      @d-rey1758 Рік тому

      @@davidliu7246 thanks, I found it a while ago using try and except. now i just need help creating a chatbot. At the moment using nlp, spacy, textblob and a ton of for-loops

  • @faizmohammad8079
    @faizmohammad8079 3 роки тому +3

    I was wandering why don't you make full series of Selenium. Your Teaching is like Perfect :) I literally enjoyed a lot. Thankyou so much .

    • @PythonSimplified
      @PythonSimplified  3 роки тому

      Thank you so much Faizmohammad! 😁
      I've just posted a brand new video on Selenium, this time webs craping Facebook:
      ua-cam.com/video/SsXcyoevkV0/v-deo.html
      It's some sort of a series! just with a bunch videos on other subjects in between 😄

  • @techienomadiso8970
    @techienomadiso8970 3 роки тому +1

    This gender is always so organized.!!! A good session it was with so much clarity.

  • @MariosMartiopoulos
    @MariosMartiopoulos 3 роки тому

    I thought I didn't know English but now I think I do. Incredible articulation!!!

  • @thebuttnakedpodcast3006
    @thebuttnakedpodcast3006 3 роки тому +2

    Thanks again, Mariya. Always the right lessons at the right time.

  • @josecastellon9183
    @josecastellon9183 2 роки тому

    You are the most intelligent and beautiful teacher of all.

  • @piriwo
    @piriwo 3 роки тому +6

    Great content! Very clear and useful.
    Btw you don't need to add the local path of the webdriver as long as you have it in your Environment PATH. It looks over there by default.
    Also, by the end of the video you can get rid of the counter variable if you use enumerate.

    • @PythonSimplified
      @PythonSimplified  3 роки тому +2

      Wow, thank you Yaniv!! This is fantastic - we can save it there once and never worry about it again! !!👏👏👏
      I'll just sit down in shame and be impressed with your super-efficient coding skills 😂😂
      אגב!! אני ממש שמחה לראות שחברה׳ ישראלים מצטרפים לחגיגה, ועוד עם כאלה עצות נדירות!! תודה רבה יניב, שיחקת אותה! 😀

    • @piriwo
      @piriwo 3 роки тому +1

      @@PythonSimplified חחח ממש לא ציפיתי תשובה בעברית! אבל באמת תודה על הסרטון זה עזר לי להבין הרבה דברים. הPATH היה סתם משהו קטן. תמשיכי כך!

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      @@piriwo תודה רבה, will do! :)

    • @Minerbush
      @Minerbush 3 роки тому

      חשבתי אני הישראלי היחיד פה😅

  • @FilamEFX
    @FilamEFX 3 роки тому +2

    Love the tut, you're a smart lady, no need to use gimmicks for clicks.

    • @Waso46
      @Waso46 3 роки тому

      I agree but if that's what she likes and It will give her subs I dont see why not.

  • @bryanmurasira9682
    @bryanmurasira9682 Рік тому

    this and arjancodes are by far my favorite channels!

  • @chiranjeebroychowdhury7759
    @chiranjeebroychowdhury7759 3 роки тому +1

    Perfect intro to Selenium! Very nice video! Thanks again Mariya!

  • @J0hn4rt15t
    @J0hn4rt15t 3 роки тому +5

    Very good tutorial. You could use in for loop, the enumerate to avoid the counter assignment.
    for counter, image in enumerate (images):
    save_as = os.[path.join(path, keyword[1:] + str(counter) + ‘.jpg’)
    wget.download(image, save_as)

  • @ishaankapoor933
    @ishaankapoor933 2 роки тому

    This channel is underrated, Change my mind!

  • @HabibKhan-kj8um
    @HabibKhan-kj8um Рік тому

    OMG you're the best ! I was hitting my head on the wall. In reality you showed it in a way simple way. Thank you

  • @mattmovesmountains1443
    @mattmovesmountains1443 3 роки тому +2

    Tutorial was very helpful, but I did run into that same issue you mentioned about having to hit enter more than once in the search bar. Even with multiple instances of the send_keys / ENTER command, that part wouldn't work.
    What I decided to do was call time.sleep(2) a couple of times between hitting ENTER, and it took a total of three instances of hitting ENTER to get by. Even then, the file grab was happening too quickly, and it took the thumbnails of the people in my Instagram stories... so I called for one more time.sleep to give the next page time to load, and it worked!
    Your tutorials are great - I just found them and appreciate the concise, helpful videos!

    • @PythonSimplified
      @PythonSimplified  3 роки тому +2

      Hi Matt, thank you so much for your amazing feedback! 😁
      You totally nailed it with the time.sleep() command! I actually just published a tutorial on Medium that tackles it, as many people were running into the exact same issue with the ENTER command (and would be very irresponsible of me to ignore that hahaha):
      medium.com/analytics-vidhya/web-scraping-instagram-with-selenium-b6b1f27b885
      Or you can skip the detailed explanations and just check out the source code on GitHub (I will update it in the description of the video shortly):
      github.com/MariyaSha/WebscrapingInstagram/blob/main/WebscrapingInstagram_completeNotebook.ipynb
      So my solution was quite similar, however, I've done this through 2 ENTER presses and 3 time.sleep(5) waits, so maybe try to extend the wait for a bit more than 2 seconds and then you can get rid of the third ENTER command :)
      Thank again and have a fantastic week!

    • @mattmovesmountains1443
      @mattmovesmountains1443 3 роки тому

      @@PythonSimplified that's actually really exciting that I came to the same conclusion you did. Even better still that you found a way to cut down on clicks. Thanks again for the tutorials!

  • @adamthedev
    @adamthedev 3 роки тому +5

    Solid tutorial! You're great at teaching!! Thanks

  • @matheus7405
    @matheus7405 3 роки тому +7

    OMG!!! your channel is perfect , thanks for this class !!!!

    • @PythonSimplified
      @PythonSimplified  3 роки тому +2

      Thank you so much Matheus!! Glad you liked it! 😁

    • @thegrowthhackert4248
      @thegrowthhackert4248 3 роки тому

      This channel has super easy tutorials on how to do it: ua-cam.com/channels/YvGiDV1JfJTpphxtKd7r_A.htmlfeatured

  • @romiolover6852
    @romiolover6852 3 роки тому

    i started knowing why i am actually watching your video after the introduction :)

  • @henrylaw87
    @henrylaw87 3 роки тому +10

    The most beautiful women in UA-cam who teaches python.
    Can't concentrate 😂

    • @Arda1982
      @Arda1982 2 роки тому +1

      I thought the same :D

  • @nandkumarpawar7
    @nandkumarpawar7 2 роки тому

    She saved that "Purrrfect" for this moment.

  • @voronow3
    @voronow3 2 роки тому

    When I see and listen this girl I'm fell the happiness...

  • @VikramKumar-yv8uu
    @VikramKumar-yv8uu 3 роки тому +1

    wow thats amazing Mariyasha, i like your way of teaching, its very helpful for me. Both are in same boat upcoming future data scientist

    • @PythonSimplified
      @PythonSimplified  3 роки тому

      Thank you so much Vikram, I'm glad I could help! 😄

  • @amadoucoulibaly2916
    @amadoucoulibaly2916 2 роки тому

    Mariya, I love you. Thanks, you gave me what I was looking for since 3 days

  • @freelancervideoeditor
    @freelancervideoeditor Рік тому

    with yours videos I`ve been deployed my first flask app

  • @Naveedkhan-sz3dd
    @Naveedkhan-sz3dd 3 роки тому

    You are so glamourous and after that the way you teach.

  • @drnotebook
    @drnotebook 3 місяці тому

    Great video. Thank you so much. Mariysha you are a very good teacher.
    I hope that you can learn the correct accent on the specific word ( `at-tri-bute ), emphasis on the first syllable, because it is so often when speaking about Python and objects. You routinely mistakenly swap or mispronounce the verb attribute ( at-`trib-ute ) and the noun attribute ( `at-tri-bute ). I understand that you are not a native English speaker, and please try to take note of this and improve the accent on this word.
    In Python a class or object `at-tri-bute is a noun, aka "method" or bound function.
    Great video. Keep cranking them out.

  • @smalirizvi8026
    @smalirizvi8026 3 роки тому +1

    All boys' fav teacher!

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      99.9% of programmers are boys anyways! 😃

    • @smalirizvi8026
      @smalirizvi8026 3 роки тому +1

      @@PythonSimplified so glad to hear back from you. I have a little query regarding scraping. And its getting horrendous.
      I want to scrape some details from the *info* section of the profiles in a group.
      Is it doable?
      Your response will be like a lifesaver

    • @PythonSimplified
      @PythonSimplified  3 роки тому

      ​@@smalirizvi8026 the rule of thumb is - anything you can target with your mouse and keyboard - you can target with Selenium! 😃
      Some platforms have more blockers than others, I suggest watching my Linkedin Bot tutorial where I show how to handle 3 very annoying blockers such as "click intercept" and hidden elements:
      ua-cam.com/video/XdFUpFUDt88/v-deo.html
      If you run into specific errors let me know, but as long as you're working closely with the Developer Tools and allow enough time for the elements to load with time.sleep() - the sky is the limit! 😁

    • @smalirizvi8026
      @smalirizvi8026 3 роки тому

      @@PythonSimplified I watched your vid. It was far above my knowledge and expertise.
      Actually I am trying to extract every profile's information in some groups on *Facebook* for my Machine Learning work.
      So far, I think that I should watch your video of applying selenium on Facebook. And I will convert python code with java whenever I face some blockers there as well as use time.sleep().
      Do u think that this should be fine?

    • @smalirizvi8026
      @smalirizvi8026 3 роки тому

      You have literally earned my sub!
      💎💎
      Thank you so much for replying and taking notice of my problem.
      Looking forward to you as I am pretty much done with my attempts with it

  • @suiciniv76
    @suiciniv76 3 роки тому +3

    I'd like to say that I loved it you're amazing and please keep on it, I'm happy too because English isn't my mother language and I understood you very well 😊.

    • @PythonSimplified
      @PythonSimplified  3 роки тому +4

      Thank you Vinicius! I'm so happy to hear that! 😁😁😁
      English isn't my first language either, so I'm always trying to use simple words whenever possible (the complicated words are also much harder to pronounce, I sound very Russian when I do this hahahaha)
      Thank again and Merry Christmas!! 😊

    • @suiciniv76
      @suiciniv76 3 роки тому

      @@PythonSimplified no problem, where are you from?
      Could you please make a video explaining how to understand boxplot charts?
      Merry Christmas 🙂

  • @sarangkkl214
    @sarangkkl214 2 роки тому

    studying with you is a excitement

  • @thesouthsidedev1812
    @thesouthsidedev1812 3 роки тому +1

    This is the coolest thing I have learnt today

  • @yavuzkaravelioglu5754
    @yavuzkaravelioglu5754 3 роки тому

    You explain each step very clearly, thanks for your effort

  • @AminulislamSakib
    @AminulislamSakib 3 роки тому

    This tutorial is so sweet like you. Thank you so much Mariya ❤️

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Thank you so much Saqib! 😀
      I have a new Selenium tutorial premiering in 35 minutes:
      ua-cam.com/video/TXdgMkf9gP0/v-deo.html
      We're expanding the Linkedin messaging bot to seem much more human than it should be, I highly recommend to check it out! 😁

  • @simurgh314
    @simurgh314 3 роки тому +1

    Попав на эту страницу, я сперва подумал что ошибся... Умные девушки восхитительны!

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Спасибочки Симург! 😃
      А я просто в восторге, от кудо все знают что я по-русски говору??
      Наверно наши наших везде узнают! 🤣

    • @simurgh314
      @simurgh314 3 роки тому +1

      @@PythonSimplified Да!, это магия xD

  • @emeine8759
    @emeine8759 3 роки тому

    i want to be your student 😆 you are the best teacher i have ever seen

  • @anti-social1590
    @anti-social1590 3 роки тому +3

    She is the reason why i programm in Python

  • @KhalilYasser
    @KhalilYasser 3 роки тому +1

    Thanks a lot for all these gifts from you.

  • @manuelivanurbinamartinez4536
    @manuelivanurbinamartinez4536 2 роки тому

    GENIUS!!!!! I really liked your video, you were able to solve the concerns I had and no one else could solve.
    THE BEST!!!

  • @Dynamite_mohit
    @Dynamite_mohit 3 роки тому

    loved your style of teaching and Accent.

  • @Ihsan_almohsin
    @Ihsan_almohsin 3 роки тому +1

    simply amazing, big thanks. love you

  • @littlehearts7039
    @littlehearts7039 Рік тому

    you are the best Maria Sha .LOL

  • @Webisyen
    @Webisyen 2 роки тому

    You are amazing in every way! Thank you for this useful tutorial.

  • @parthgohil4360
    @parthgohil4360 2 роки тому

    Incredibly great explanations 🔥🔥. loved the video.

  • @noworriesmate_
    @noworriesmate_ 2 роки тому

    Puurrrrfect pun (probably not intended) at 22:40 😆

  • @jacobchang4588
    @jacobchang4588 3 роки тому +2

    I particularly like the background music. Great tutorial!

  • @maebbcow
    @maebbcow 3 роки тому

    gurl this saved my life

  • @nikhilsrivastava9120
    @nikhilsrivastava9120 3 роки тому

    you can make web-scrapping look and sound fun

  • @youssefsaad7919
    @youssefsaad7919 3 роки тому

    u dont need to scrap data u actually scrapped my heart

  • @anglerfish61
    @anglerfish61 3 роки тому

    What I mostly learned is a very good workflow to get info and use it. tnx :D

  • @ru2979
    @ru2979 3 роки тому

    Waao.Very helpful 🙏🙏❤️More videos like these please 😊

  • @juliushamilton3656
    @juliushamilton3656 3 роки тому

    Wish I had known about this tool earlier, sounds very useful

  • @robertn2997
    @robertn2997 Рік тому +2

    You explained Selenium very clear. Can you also explain in a video on how to prevent to be detected as a bot? I read many post on stack overflow but Selenium still got detected as a bot, even on the first page load.

  • @marcosviniciusrocha2660
    @marcosviniciusrocha2660 3 роки тому +1

    Sending an " Amazing" from Brazil here. Amazing.

    • @PythonSimplified
      @PythonSimplified  3 роки тому

      Thank you so much Marcos!! Greetings from Canada! 😁

  • @temkipasse
    @temkipasse 3 роки тому

    Crystal clear and good pedagogy !

  • @puhozavrik
    @puhozavrik 3 роки тому +2

    You are amazing)) really grateful for double enter tip

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Hi Anna, there's actually a better way than double enter! Check out my community post where I included the improved code, it's better to concatenate the url to search for your term 😉
      And thank you so much! 😃

    • @puhozavrik
      @puhozavrik 3 роки тому +1

      @@PythonSimplified woohoo, thank you so much

  • @frantoimil1499
    @frantoimil1499 2 роки тому

    Great tutorial, I always learn something new, thanks for sharing

  • @MrAlb3rtazzo
    @MrAlb3rtazzo 3 роки тому +1

    you are amazing, best python tutor ever :)

  • @pranshubansal355
    @pranshubansal355 3 роки тому +5

    Thanks for this info. I am able to download only 58 images at one go, is it possible to download all images around 2000 with this at one go ? Can you please advise.

    • @PythonSimplified
      @PythonSimplified  3 роки тому +5

      Hi Pranshu! yes, you are able to download as many images as you need! 😀Just implement the scroll event inside a loop, just like this (scrolling 10 times to the bottom of the batch):
      for j in range(0,10):
      driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
      time.sleep(5) //wait 5 seconds
      The more you loop, the more images you scrape!
      I have a video premiering soon where I explain it in detail, check out "scroll to the bottom of the page" in the timestamps if you miss it 😉

  • @brunobarros6239
    @brunobarros6239 3 роки тому +1

    Thank you girl for this excellent content! U get more one subscriber👋

  • @EyosiB
    @EyosiB 3 роки тому +2

    Cool very cool, You earned My Subscribe. Keep up the good work!

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Thank you so much Eyosiyas, welcome aboard! 😁

  • @ComedyTonic205
    @ComedyTonic205 2 роки тому

    Great explanation mariya👍🏻

  • @errodringer
    @errodringer 3 роки тому +1

    Great channel, great tutorial. New sub.

  • @yosdany
    @yosdany 3 роки тому +1

    You are Awesome!! Greetings from Cuba

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Wow, thank you so much Yosdany!! Greetings from Canada! 😀😀😀

  • @miguelangelv
    @miguelangelv 3 роки тому

    Great tutorial! as always. Entertaining, useful, and a pretty teacher, as well .-) Keep up the good work...

  • @omarsenoussaoui6666
    @omarsenoussaoui6666 3 роки тому +1

    thank you for this great video
    i need scraping for e-commerce websites with selenium
    LoL

  • @mohammadjavadhaji6396
    @mohammadjavadhaji6396 3 роки тому +3

    Best video seen about web scraping and automation. But i really couldn't figure out this jupiter thing. What is jupiter?????

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Jupyter Notebook is a very handy interface, where we can process our code cell by cell. It is very similar to Google Colab, and we can access it directly from our Anaconda terminal with a very basic command - "jupyter notebook".
      If you wanna find out more about this interface, please check out one of my first tutorials, where I explain all about it in detail:
      ua-cam.com/video/jp_3NOKHn9c/v-deo.html
      So generally, when you're using a traditional IDE, it runs all your code at once, while notebooks like Jupyter allow you to separate your program into sections and run each of these sections independently. I find it to be very handy when teaching/learning, and I highly recommend to give it a try 😉

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      And thank you!! 😁😁😁
      (sorry, I should have started from this but I got carried away with the explanation hahahaha)

  • @chris_burrows
    @chris_burrows 3 роки тому +1

    Great video. It'd be cool to see one on Insta scraping using GET requests instead of Selenium, it's much faster. There's a good article on Diggernaut about it. Anyway, thanks, keep em coming!

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Challenge accepted!! 😎
      Get requests would be the next module I'll cover in the scraping lessons!
      Thank you Chris! :)

    • @chris_burrows
      @chris_burrows 3 роки тому

      @@PythonSimplified Love to see how you go with it! I've been stuck on it for the last 12 hours :'( I'm getting different static HTML returned from requests.get() than shown in the Chrome Dev Tools. Great channel btw, looking forward to more content!

    • @chris_burrows
      @chris_burrows 3 роки тому +1

      also, you should make a Discord, it's a great way to consolidate a community and seems like you're building one quickly.

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      @@chris_burrows Thank you for suggesting! I'll check it out :)
      I'll start advertising properly sometime in the near future. For now I take it easy, trying to focus on improving my filming/editing abilities before I go down that road :D

  • @andrespineiroc
    @andrespineiroc 3 роки тому +2

    This video is great thanks but i haven't been able to do the first step of opening chrome and Instagram. Maria, can you please do a video explaining what you do before, with Selenium. The parts of importing etc.... I downloaded selenium but still get a traceback.

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Hi Andres! :)
      I find that "pip install" doesn't always work, so I install everything with "conda install" when possible. If you are also using Anaconda, try:
      "conda install -c conda-forge selenium"
      If you are using another command line software let me know what it is and what kind of traceback are you getting and we can go from there 😉

    • @andrespineiroc
      @andrespineiroc 3 роки тому

      @@PythonSimplified Thanks for your help! I am still struggling. I am using Selenium and here I detailed everything and still no solution www.reddit.com/r/learnpython/comments/kfn0wm/a_unique_no_module_named_selenium_problem_its_not/

  • @syedmuhammadbilalarshad1247
    @syedmuhammadbilalarshad1247 2 роки тому

    Thank you very much, this tutorial was very helpful and very very easy to understand, Cheers!! 🚀

  • @davidaraujotutoriais
    @davidaraujotutoriais 3 роки тому +1

    Very good. Congratulations!

  • @gaddamshanthsri125
    @gaddamshanthsri125 3 роки тому +1

    Nice webscraping methods
    Great work

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Thank you! 😁
      It's also available on Medium with a few improvements:
      medium.com/analytics-vidhya/web-scraping-instagram-with-selenium-b6b1f27b885
      I'm also currently working on a website, where I'll post even a more updated version of the Medium article, where we'll be able to scrape the full-size images rather than thumbnails, and tackle more issues with the ENTER button 😀
      Stay tuned!

    • @gaddamshanthsri125
      @gaddamshanthsri125 3 роки тому

      😀ok

  • @J3rs3yM1k3
    @J3rs3yM1k3 2 роки тому

    You should check if the "Not Now" prompts are even presented before assuming you will need to click that... twice.

  • @guillermo._._
    @guillermo._._ 3 роки тому +4

    Thank you for the video. Very clear and straight forward. Im having trouble with the searchbox.send_keys(Keys.ENTER) command. I tried ENTERing twice but still doesnt work. Any sugestions?

    • @PythonSimplified
      @PythonSimplified  3 роки тому +3

      Thank you so much Luisgui 😁
      Try the code I've just posted on my Github, you can solve it with time.sleep(seconds), it's in the "search keywords" section:
      github.com/MariyaSha/WebscrapingInstagram/blob/main/WebscrapingInstagram_completeNotebook.ipynb
      I actually just finished working on a Medium article about this where I explain everything in detail, I'm just waiting for my publication to approve it and then I'll send you a link 😉

  • @michael_mnz
    @michael_mnz 2 роки тому

    Great tutorial!
    You are amazing!!

  • @harsha4074
    @harsha4074 3 роки тому +4

    madam how to click on specific users indox box by his text - username in instagram

    • @PythonSimplified
      @PythonSimplified  3 роки тому +2

      Try targeting the anchor element with the href of "/direct/inbox/":
      inbox_button = WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "a[href='/direct/inbox/']"))).click()
      This would press the the "inbox" button on your individual account, let me know if I got you right :)

    • @harsha4074
      @harsha4074 3 роки тому +1

      @@PythonSimplified thank you so much mam your really so friendly replying stranger with out expecting anything I am amazed mam even my teachers won't repsond like you

    • @harsha4074
      @harsha4074 3 роки тому

      @@PythonSimplified
      import time
      from selenium import webdriver
      from selenium.webdriver.common.keys import Keys
      from selenium.webdriver.support import expected_conditions as EC
      from selenium.webdriver.common.by import By
      from selenium.webdriver.support.wait import WebDriverWait
      driver = webdriver.Chrome('C:/Users/91728/Desktop/python files/chromedriver')
      driver.get("www.instagram.com")
      username = WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "input[name='username']")))
      password = WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "input[name='password']")))
      username.send_keys("#username")
      password.send_keys("#password")
      button = WebDriverWait(driver, 2).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "button[type='submit']"))).click()
      not_now = WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.XPATH, '//button[contains(text(), "Not Now")]'))).click()
      not_now_again = WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.XPATH, '//button[contains(text(), "Not Now")]'))).click()
      inbox_open = WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "a[class='xWeGp']"))).click()
      recent_message_open = WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "a[class='-qQT3 rOtsg']"))).click()
      message_box = WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.XPATH, "//textarea[@placeholder='Message...']")))
      message_box.clear()
      time.sleep(5)
      message_box.send_keys("hi")
      message_box.send_keys(Keys.ENTER)
      #instead of recent_message_open I want to select the element using Username by adding an input field at first .mam please Kindly contact me on +917285906544 mam this is my whatsapp or I messaged you on instagram mam Please rey me I'll show you the image.

    • @PythonSimplified
      @PythonSimplified  3 роки тому

      ​@@harsha4074 You cannot select a CSS class by class='-qQT3 rOtsg' it is a temporary class, you need something a bit more constant to rely on.
      Try the 'href' attribute of the anchor instead.
      So everywhere where you've targeted the 'class' property you'll need to change it to a different property that doesn't have any weird letters in it.
      If it still doesn't fix it - try sending me the error code you got.

  • @spicein_life
    @spicein_life 3 роки тому +1

    Thanks, Ma'am for this... Helps too much

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Too much is my favourite quantity! 😊 Thank you, V!

  • @rinadevi110
    @rinadevi110 2 роки тому +1

    Hottest 🔥🔥 teacher 🔥🔥🔥🔥ever born in this planet🌍

  • @marcingoryca
    @marcingoryca 3 роки тому +1

    Why I didn't have such teacher in my university for c++, I wouldn't skip any lab :)

  • @zakariachender9428
    @zakariachender9428 3 роки тому

    funny smart cute and canada , to be honest i forget python ,selenium ,linux ,problems , networking , lol you are talented good luck

  • @Johnbrown-op5xt
    @Johnbrown-op5xt 2 роки тому

    Really great explanation. 👏

  • @roshanshetty5661
    @roshanshetty5661 3 роки тому +1

    This is such a great video!

    • @PythonSimplified
      @PythonSimplified  3 роки тому +1

      Thank you so much Roshan, glad you liked it! :D

    • @roshanshetty5661
      @roshanshetty5661 3 роки тому +1

      @@PythonSimplified Would it possible for you to make a video on image processing using the images that we scrapped in this video?

    • @PythonSimplified
      @PythonSimplified  3 роки тому

      @@roshanshetty5661 Did you check out my video on image processing with Pillow?
      ua-cam.com/video/NSHsaG2a4WU/v-deo.html
      You can use the same principles and apply them to the scraped images if you're looking for general processing and simple transformations.
      If you're looking to classify images with Artificial Intelligence, the video I've sent you above is not gonna help 🤣
      I'm working on some more Machine Learning projects, where image classification will be a very important part (that's why we need this cats/dogs database in the first place)...
      In the meanwhile, you can check out my Flower Image Classifier on Github:
      github.com/MariyaSha/FlowerImageClassifier
      This might give you a good example of the pre-processing we do to get the data ready for training.
      Either way, I hope it helps! 😁

  • @yaghiyahbrenner8902
    @yaghiyahbrenner8902 3 роки тому

    Cypress rocks, you should try it.

  • @marcelogrsp
    @marcelogrsp 3 роки тому +25

    Ok thanks for u... I can’t learn anything near my girlfriend ahhaha

    • @PythonSimplified
      @PythonSimplified  3 роки тому +4

      Hahaha try the other videos, where T-shirts are in play! 😆😆😆
      She won't have a problem with them! (at least I hope 😅)

  • @osa102
    @osa102 2 роки тому

    Отличная подача материала, так держать!

  • @yasthirdhewnarian6531
    @yasthirdhewnarian6531 3 роки тому

    Amazing video!!

  • @Onlinefreelancingacademy
    @Onlinefreelancingacademy 2 роки тому +1

    AttributeError: 'WebDriver' object has no attribute 'find_elements_by_tag_name' am getting this error whats the solution

    • @siddhantjohal9379
      @siddhantjohal9379 Рік тому

      Selenium removed the methods in the newer versions, you can try using an older version

  • @krypton1142
    @krypton1142 2 роки тому

    this truly shows the power of python

  • @namangupta1602
    @namangupta1602 3 роки тому +1

    I don't know my Keys.ENTER command is not working. I have wrote it 2 times too but still it didn't work

    • @PythonSimplified
      @PythonSimplified  3 роки тому +2

      Hi Naman! 😀
      Did you have a chance to see my recent community post on the updated code + article?
      You can find it here:
      ua-cam.com/channels/KQdc0-Targ4nDIAUrlfKiA.htmlcommunity?lb=UgwVQazZhNNqwdghhdh4AaABCQ
      There are a few ways to solve this, as double ENTER doesn't work anymore even on my end.
      Checkout the resources above and see what works best for you.
      Good luck, and let me know if it worked! 😁

    • @namangupta1602
      @namangupta1602 3 роки тому

      @@PythonSimplified It did work!! you saved me I literally stuck in this for so long. Thank you so much! :)

  • @dironin2363
    @dironin2363 3 роки тому

    Thanks, señorita! Very helpful.