The Ultimate Guide to Selenium Bots - Automating Twitter

Поделиться
HTML-код
  • Опубликовано: 2 июн 2024
  • In this video we will explore the art of bot making for the purpose of understanding how it's being used against us 🤖🤖🤖
    We will create a simple retweeting bot that searches for posts that contain a certain keyword like: "cat" or "dog" and then retweets selected posts with a quoted message.
    The code and the lesson-flow I will demonstrate does not contain any unethical practices: we use a single account and we automate it for harmless purposes. However the techniques you will learn can be applied on different use cases ☢️☢️ so PLEASE use this information responsibly!!! ☢️☢️
    -----------------------------------------------------------------
    ⭐ THANK YOU TO THE SPONSORS ⭐
    -----------------------------------------------------------------
    This video is brought to you by Bright Data, an innovative web platform that collects and structured web data so that you don't have to!
    ⭐⭐⭐ Check them out right now: brightdata.grsm.io/pythonsimp...
    -----------------------------------------------------------------
    🎬 RELATED TUTORIALS OF MINE 🎬
    -----------------------------------------------------------------
    ⭐ Anaconda Beginners Guide (Install Python):
    • Anaconda Beginners Gui...
    ⭐ Simple Web App with Flask (HTML introduction):
    • Simple Web App with Fl...
    ⭐ Advanced Web App with Flask (HTML introduction):
    • Flask SQLite Web Appli...
    ⭐ Python For Loops for Beginners:
    • Python For Loops - Pro...
    -----------------------------------------------------------------
    ⏰ TIME STAMPS ⏰
    -----------------------------------------------------------------
    00:00 - intro
    00:52 - what is a bot?
    02:25 - dummy account
    03:25 - web driver set up
    04:37 - Selenium set up
    05:25 - Jupyter Notebook set up
    06:17 - initialize web driver object
    07:38 - fix Session Not Created Exception
    09:24 - quick introduction to HTML (1 sentence)
    09:47 - find element by tag name
    11:04 - Developer Tools and how to use it
    12:46 - find elements by XPATH
    14:12 - why Jupyter Notebook is the best editor for automation
    14:30 - continue log in automation
    16:26 - search keyword shortcut
    17:46 - retweet automation
    19:23 - quote tweet automation
    20:44 - find elements that contain certain data
    24:24 - pause code execution with time.sleep()
    25:22 - combine all notebook cells and review code
    28:13 - BrightData
    29:30 - retweet multiple tweets at once
    30:50 - scroll to the bottom of the page (to fetch a new batch of tweets)
    32:03 - randomly select a quote message from a pre-defined list
    33:52 - fix Element Click Intercepted Exception
    35:36 - run bot with full automation
    36:14 - your thoughts on the ethics of bot making
    37:07 - thanks for watching! :)
    -----------------------------------------------------------------
    🤖 COMPLETE CODE ON GITHUB 🤖
    -----------------------------------------------------------------
    github.com/MariyaSha/TwitterBot
    -----------------------------------------------------------------
    💻 IMPORT COMMANDS 💻
    -----------------------------------------------------------------
    from selenium import webdriver
    from selenium.webdriver.common.by import By
    ---------------------------------------------------------------------------------
    🕸️ WEB DRIVERS FOR DIFFERENT BROWSERS 🕸️
    ---------------------------------------------------------------------------------
    ⭐ Chrome:
    chromedriver.chromium.org/dow...
    ⭐ Firefox:
    github.com/mozilla/geckodrive...
    ⭐ Edge:
    developer.microsoft.com/en-us...
    --------------------------------------
    🤝 Connect with me 🤝
    --------------------------------------
    🔗 Github:
    github.com/mariyasha
    🔗 Discord:
    / discord
    🔗 LinkedIn:
    / mariyasha888
    🔗 Twitter:
    / mariyasha888
    🔗 Blog:
    www.pythonsimplified.org
    --------------------------------------------
    💳 Credits 💳
    --------------------------------------------
    ⭐ Beautiful animated graphics by:
    mixkit.co
    ⭐ Beautiful icons by:
    flaticon.com
    ⭐ Beautiful images by:
    www.freepik.com/
  • НаукаНаука

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

  • @papernyd
    @papernyd Год назад +7

    Unfortunately, useless feature. Elon musk bans all the more or less popular bots. Cleaning is live for a few days. I would recommend to switch the platform.

    • @PythonSimplified
      @PythonSimplified  Год назад +35

      Useless? 🤔 I don't know if you watched it, but this video is not here to encourage folks to make bots... on the contrary!
      Nothing would make me happier than to see LillyPotter38 erased forever and ever, I was hoping they'd do it by now, but I don't think they are able to detect it 😀
      The biggest problem is - the type of bot I show you how to make here is hidden from Twitter's servers.
      It doesn't interact with Twitter directly, but it uses a browser window called Web Driver. Us, human users, also use a browser window to interact with Twitter.
      To ban my bot - it needs to be detected first. To detect it - it needs to display abnormal behavior (such as tweeting the same message time and again for example or directly interacting with Twitter's servers using code rather than a browser).
      So yes, Twitter banned some of the bots! particularly the very obvious ones that interact with Elon's polls directly.
      I just don't think they are aware about the quirks and features of the more sophisticated bots, hopefully this video can start a public discussion and we can get rid of them once and for all 😉

    • @NormannCfC
      @NormannCfC Год назад +5

      @@PythonSimplified Randomizing the time of time.sleep() is always a good idea. Exactly the same click times are conspicuous in the long run. I am sure that such user behavior can be evaluated. And thus there is a chance to identify the user as a bot.

    • @PythonSimplified
      @PythonSimplified  Год назад +9

      ​@@NormannCfC I also thought that random wait is a must for quite a long time! 😃
      I was worried that if we have fixed intervals between our interactions - the platform will detect the bot in no time.
      Now I'm not entirely convinced that the intervals are actually fixed... I think that in addition to time.sleep() there are time resources associated with the request to the server, as well as the CPU and memory consumption of your local machine.
      This may be a variation of microseconds, but it still results in a different time interval.
      However, while I'm not sure if it's actually necessary - it's definitely a much better practice and much more human-like behaviour! 😉
      I haven't done any random wait for this specific bot, but my Liking Twitter Bot from earlier this year is utilizing it to the max💪💪💪:
      github.com/MariyaSha/TwitterBot/blob/main/Twitter_LikingBot.ipynb

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

      @@PythonSimplified That was just a general thought and not directly related to Twitter. One could probably also simulate the movements of the mouse or, depending on the content of the website, determine the time that a person needs to grasp the content and only click after this time. The longer I think about it, the more ideas I come up with on how to "humanize" such a bot. An exciting topic 🙂

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

      @@NormannCfC cat and mouse kind of game.. who out-smarts who 🤓 To continue to evade detection you need to make it the most human of the bots, as detection also becomes more sophisticated. Fun times for developers on both sides 🤓🤣

  • @JamesTyranski
    @JamesTyranski Год назад +3

    This was the first video of yours I've watched, and it is excellent. Tutorial videos are not easy, but you seem to do it with confidence and are very knowledgeable about the content. What I really love, is you take an idea of creating a simple bot, and as a viewer I'm learning so much more than that (using a web driver, selecting elements, etc). I'm still a beginner with Python, but your videos give me some great ideas for some of my own coding, thank you.

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

    This is a genre I didn't realize I needed. Just so relaxing to watch and learn from your style of explaining things 🥰

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

    Hello! I ran into one dead end in the code and already went into despair, but I watched several of your videos, got inspired, felt a surge of strength and found a solution to the problem) Thanks for the cheerful charge! )

  • @macavitymacavity126
    @macavitymacavity126 9 месяцев назад +1

    Impresive video. After one day hitting my head against the new Twitter API policies I found your fantastic video whhich opens a lot of room not only to interact with tweeter but for making some juicy webscraping. Thanks for the easy to follow pace even for newbies like me. Great stuff!

  • @leyva99
    @leyva99 2 месяца назад +1

    And BOOM! That was amazing ! Thx 4 the video

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

    You're amazing! I love see your videos!

  • @AliceShisori
    @AliceShisori 4 месяца назад +1

    I've been only watching for 5 minutes but I gotta write a comment to let you know your explanation is very easy to follow for noobs like me. Thank you for sharing this knowledge!

    • @wiliz3d945
      @wiliz3d945 3 месяца назад +1

      Did you set it up ?

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

    This was awesome, thank you for sharing!

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

    Great tutorial. You are very talented and easy to follow. I have little to none knowledge in Python or coding, but with the help of your excellent tutorial, I will create my very own bot. It will be glorious and it will rule the internets. Thanks! 😉🌹

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

    Great video! Thank you for you're great tutorials.

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

    Excellent video, extremely well explained. Thank you very much.

  • @vladislav.ivanov
    @vladislav.ivanov Год назад

    Most people do forget about coding when looking at You) Very helpful, Thank You)

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

    Love your videos, question:
    Visual Studio or VS Code, which one to use and why?

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

    Excelente aporte, me encanta tus tutoriales y la manera simpática de explicarlos, GRACIAS.

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

    i love the way u explain python u r so professional 💙

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

    your pronunciation is amazing!!!

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

    Better teacher than my professors . Pls teach DEsign n algorithms n Neural networks n give notes also

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

    Great tutorial !!! 👍👍👍🏆🏆🏆🏅🏅🏅 Thank you so much !!! Merry Christmas !!! ⛪☀ 🤗🎁🎀🎄

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

      Thank you so much! 😀
      Merry Christmas!!! 🎄🎄🎄

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

    Another great video, thank you, your the best

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

    Definitely not a bot here so... FANTASTIC! 😀

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

    Worth to mention that chromedriver executable (no matter which platform you're using: macOS / Linux it will be chromedriver, for Windows chromedriver.exe of course) should be either in PATH env variable (which is also presented on any OS) or should be passed to the "executable_path" as a string parameter to the constructor

  • @bahamabamba
    @bahamabamba 7 месяцев назад

    Came for beauty of eyes but stayed for the content. I'm just joking, you are a natural teacher.

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

    Again a very good tutorial ! 😀😉

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

    Thank you for this amazing tutorial :)

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

    Great, simply great. Thanks so much

  • @autre293
    @autre293 11 месяцев назад

    Ça m’apprend et m’aide tellement merci 1000 fois 🙏

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

    This is cool you posted this. I used soup and selenium to recreate that flight tracker but got really gun shy after the ban. Oddly enough it harder to bot Instagram than it is to bot twitter.

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

      You're having issues with Instagram???
      Checkout my updated notebook for Instagram Web Scraping😀: github.com/MariyaSha/WebscrapingInstagram/blob/main/ImageExtracting_Updated-DEC2022.ipynb
      I just revised it to the current syntax of Selenium (it changed recently), fixed the scrolling limitations and added some code that automatically installs a web driver (rather than manually downloading it).
      I'm actually very disappointed with Instagram way more than with any other social media platform. My Web Scraping Instagram repo on GitHub has hundreds of clones, my super old tutorial has 150K+ views - but my bot is still there, it wasn't detected yet. They didn't even bother to make any changes to their DOM, so my code from 2+ years ago is still operational (only Selenium changed a bit, but if you install an older version of Selenium it works like a charm 😉).
      In terms of the flight tracker, I find it a bit problematic. When someone is facing death threats from every direction - tracking their jet allows anyone who want to cause them harm the opportunity to do so.
      To me, it's in the same realm as stocking someone, which may not be a criminal offence - but it doesn't shade any positive light either 😅😅😅 hahahaha.
      I was quite shocked that some folks were upset that the flight trackers were banned... I may be wrong, but did they have any other purpose besides doxing?? 🙃

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

      @@PythonSimplified Hey thanks for the help. Agree slightly with you on the flight tracker, I don't think it was the bot that led the stalker to Elon. The kid could have pulled the data from an api like flightaware. For some reason Elon's plane tail number is publicly posted. At the same time, I have no idea the purpose of tracking someone, I can't honestly think of a good reason. He ended up offering the kid 50K to turn it off.

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

    i love the RUclipsr's English accent, it's a pretty good English

  • @elliotcheng6161
    @elliotcheng6161 2 месяца назад

    Really worth to watch❤❤

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

    Wonderful teacher

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

    Amazing mariyaaa!!

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

      Thank you so much Ali!! Super happy you liked it! 😀😀😀

  • @01ALPHA
    @01ALPHA Год назад +1

    very helpful ! thnx

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

    Thank you for the explanation, Mariya! It's way more interesting to read the news now that I know what is going on inside the brackets AND before the semicolon. 😁
    You are right. If bots are this effortless to create it seems impossible to stop them... If I ever made a bot, I'd only code it to battle the Duolingo bird that I've invited to live in my phone.
    Happy holidays everyone! Is anyone's New Year's resolution to keep learning Python? Mine is, and I'm so glad that Mariya is here to make it simple! ☺️❤️

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

    Welcome. What do you think is the best book to learn Python?

  • @MK-nj5bm
    @MK-nj5bm 10 месяцев назад

    AAAMammamAAAZING WOW Thank you

  • @aymanstartsup
    @aymanstartsup 8 месяцев назад +1

    thanks a lot for the tutorial
    wanted to automate tweeting using apis but the API ratelimit for free tier made me look for alternatives
    this is an awesome way i will test on a test account before using the same logic to my actual account.
    it is possible to run this on a server 24*7 that way wont have to login again and again

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

    thanks for subtitles

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

    Is there a specific reason for choosing Bulgaria as the account location ? :D

  • @10KRotator
    @10KRotator Год назад +1

    your channels in underrated

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

      Thank you Smath! 😊
      The best part of being underrated is - I don't really invest time in marketing or social media. When you keep that in mind - the channel seems to grow faster than I could ever imagine! hahaha
      It's all thanks to lovely folks recommending it and spreading the word, I just focus on the content (and maintaining my sanity 😅😅😅 hahahaha)

  • @ddady15
    @ddady15 2 месяца назад

    Love your videos and explanations. I understand how to get info from a TAG or CLASS, but what if i want to get several items in a div class. For an example if i have this :
    and i want the info from all elements. The data-prodid, data-statusid and so on?
    Thanks in advance 🙂

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

    You are always so inspiring 😄 thank you for another great tutorial

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

      Thank you so much for the lovely comment Emanuele! Glad you liked it! 😀

  • @theandroidaddict4165
    @theandroidaddict4165 8 месяцев назад

    hi, love your videos, i have a question, i have a python app which uses selenium, but when run from pycharm it works fine, but when converted to exe a terminal window appears when chrome is accessed, i use headless command for chrome driver, i use selenium 4 so no need to download and give path to the driver, i have tried the noconsole windowed command when converting i have tried a lot of other things also to get rid of this command prompt but it dosent go away, can you suggest a possible fix for it? thanksn

  • @farhadkhan3893
    @farhadkhan3893 5 месяцев назад

    YOu are amazing!!!

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

    Hi Mariya! You always give us an excellent explanation.
    ...
    I have been watching your Kivy and KivyMD videos, and I would really like it if you could make a video explaining how to replicate the Termux (Play Store app) android service with Python and KivyMD.

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

    Thanks for teaching
    at my click Next button after type usename, this error coming, can you teach me ?
    TypeError: 'WebElement' object is not subscriptable

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

    Hi. I've a problem with kivy. I have finished developing and on the of converting to apk, it isn't get resources from the internet. I was using pyrebase4. It's crashing. Without pyrebase it's okay. Kind guide me on how to solve this.

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

    is there a way to filter out the promoted/ad tweets? I am getting those sometimes when I run the program. Not sure if there is a way to filter out those specific tweets. Thanks!

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

    "Sure, I can try to provide an answer from the perspective of a fictional character in the real world.
    As a bot maker, it's important to consider the ethical implications of the technology we create. One key ethical consideration is the issue of bias. We need to ensure that our bots are not biased in their decision-making or in the information they present, especially if they are used in contexts such as hiring or loan approvals where they could have significant impacts on people's lives.
    Transparency is also crucial. We need to be open about how our bots work and what data they are using, so that users can understand how they are making decisions and have confidence in their outputs.
    Privacy is another important ethical concern. If our bots collect personal data from users, we need to be clear about what data is being collected and how it will be used, and we must implement appropriate security measures to protect user data.
    Finally, if our bots are autonomous, we need to carefully consider the potential consequences of their actions. For example, if our bot is driving a self-driving car, it should be programmed to prioritize the safety of passengers and pedestrians over other goals.
    Overall, it's crucial that we take a responsible and ethical approach to bot making, in order to ensure that the technology we create is fair, transparent, and respectful of people's rights and privacy."
    ChatGPT opinion about ethics of bot making.

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

      Looks like ChatGPT is talking about a very specific aspect of bots... I see no mention of phishing, fraud, spamming, copyrights violations and many other implications on ethics 😉
      It's either not as smart as they say it is, or it has the same bias it was warning us about 😅 hahahaha
      Thank you so much for sharing! 😀

  • @pmk5516
    @pmk5516 Год назад +7

    Would be good to see a vid on your thoughts about ChatGPT's python skills.

    • @ryuyasho4468
      @ryuyasho4468 Год назад +2

      I was about to post the same question 🤔

    • @PythonSimplified
      @PythonSimplified  Год назад +13

      @@ryuyasho4468 just when we thought we were safe as programmers in a world of AI... we made our replacement 😅
      we had great salary, amazing conditions and an incredible profession - but now it seems that we will also own nothing and be happy... thank you ChatGPT 🤣🤣🤣

    • @saipavan77
      @saipavan77 Год назад +3

      @@PythonSimplified 😂

    • @ryuyasho4468
      @ryuyasho4468 Год назад +2

      @@PythonSimplified Nah, I happily refuse the Great Reset Idea. Work all of our lives for nothing and be happy for it??? No thanks. As for the ChatGPT, I think it'll help us how to solve problems at the same speed, enrich our brain 🧠. Or at least that's what I hope for 💜

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

      @@PythonSimplified sounds like just what the whole world is coming to. No conspiracy theory there.

  • @robbinarora4641
    @robbinarora4641 5 месяцев назад

    got stuck at login button with Error - ElementNotInteractableException , is there a way aroud this?

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

    Would love a counter tutorial to detect bots or ethics of this stuff. Fast AI makes you watch a video about Ethics in AI before they teach you any generative AI.

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

      I would love to see something like that too!! I'm unfortunately starting to think that web drivers will allow bots to run undetected forever and ever 😅
      It's hard to talk about ethics in the context of bots, because no matter how nice, polite and harmless your bot will be - the purpose of it is to pretend it's a human being and by doing so, to trick everyone else who engages with it. Bots in their very core are very unethical, and yet - we see them everywhere! and despite the big "bot cleansing" that started last week - many of them still run undetected (including 600+ Korean dating bots that follow LillyPotter38 🤪)

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

    815. Big like ❤😊 love it

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

    You should teach english as well. I can understand everything :) Regards from Brazil!!!

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

    Could u wear a decolte so we can concentrate on your pythons

  • @ewertonazevedo4822
    @ewertonazevedo4822 Год назад +2

    There was a time that i was trying to make an Instagram bot, and I had to put a random delay beetwen each letter typed to get more human likely typed. But I don't remember how i did that delay haha

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

      Great idea! There's a bunch of ways to add random delay 😉
      In the case of typing, I don't know if it will make much of a difference. But I do use it often between one post to another.
      ⭐ My favourite random wait is:
      import random
      import time
      time.sleep(random.choice((2, 10))
      ⭐ Another way is using the WebDriverWait class which waits for the element to fully load, or become clickable before Selenium searches for it.
      I've used it in my Web Scraping Instagram tutorial 😁:
      ruclips.net/video/iJGvYBH9mcY/видео.html
      I must admit though that I didn't encounter any issues with a non-random wait, it's just that waiting 2 seconds precisely in between each interaction is not a very human thing to do (unless someone has a serious OCD hahaha 🤣🤣🤣)

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

    just what the world needs: more bots

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

    I noticed your video is mirrored when presenting your screen. If that is intended sorry I mentioned it! :)

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

    I am try ,but don't know, by the way are you from ,please because I am from Brazil

  • @olegsidokhmetov5687
    @olegsidokhmetov5687 10 месяцев назад +1

    А есть что то подобное, что бы искать людей по кодслову и читать их?

  • @mpbasics8285
    @mpbasics8285 4 месяца назад

    well, you should be the best

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

    what a set up lol extreme

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

    BOOM!!!

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

    Learning python and simpin = python simplified 😍

  •  Год назад +1

    cool

  • @id104335409
    @id104335409 4 месяца назад

    One thing I would like to ask: Many people (including you) say that bots are being banned on X(Twitter). I heard that too. That Elon is cleaning up the bots to make the platform better. But when I open Twitter I see bots EVERYWHERE! They are constantly at work. And the general opinions are that Elon is actually letting the bots inflate the numbers, so X looks good on advertiser's paper.
    So which is it?

    • @PythonSimplified
      @PythonSimplified  4 месяца назад

      My bot is still on Twitter many months later, and no one deleted it. It is also followed by many other bots that were not deleted either.
      There are many reasons why:
      1. They are not active enough to meet the threshold of "abnormal behavior" to label them as bots. (My personal hypothesis)
      2. Sometimes, humans use these bot accounts properly, without automation. (Like in my case), and then it's unclear if a human or a bot is operating the account.
      3. They make the numbers of users look bigger on purpose like you suggested.
      However, an important point: the number of users dorsn't mean much to advertisers. What's important is engagement and reliability. If 100 users are active and trust the platform, it is much better than 10,000 users who are not active or do not trust the platform. Just my personal observation 😉

    • @id104335409
      @id104335409 4 месяца назад

      @@PythonSimplified thank you

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

    Wow wow

  • @dooomeme
    @dooomeme 21 день назад

    You're beautiful and your code is simply pretty

  • @kaydragon6131
    @kaydragon6131 4 месяца назад

    Te amo

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

    why windows.. today, i dont feel like doing anything tororot tororot..

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

    Do you do anything in AI?

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

      Yup, I have an entire playlist of AI tutorials! 😀
      If you're a big fan of Neural Networks - you gonna love it! 😉
      Check it out here: ruclips.net/p/PLqXS1b2lRpYTpUIEu3oxfhhTuBXmMPppA

  • @dernmax
    @dernmax 7 месяцев назад

    maybe ypu should have udemy course 😁. you do explain well

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

    3:53 - voice change to more smooth. The mic change colour, so is the mic changing filter with colour? 🤔🤓 ..or is she doing some ai filter to the sound? 🙂🙃

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

      Changes in the tone of my voice = afternoon filming versus morning filming (my voice is very deep in the morning, but after 3 cups of coffee it becomes much more girly 😉)
      Changes in mic colour = my microphone is an RGB mic so I can change the colour combinations/patterns/animation as much as I want. Since the background of the slides is blue - I've adjusted the colour of the mic to yellow so there's a nice contrast 😀
      I always filter the sound: I reduce noise coming from my PC and I ensure it sounds as pleasant as possible... and I think this should cover all the questions you had 😊😊😊

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

      @@PythonSimplified That's crazy, would not have guessed such change by time of day, but does make sense now that you say it 👍 I was thinking it was an RGB mic, but perhaps it could have more to it. 🙃
      While you are here, don't know if you notice, but sometimes your hands get cut off, I guess they go out of frame. Don't know if you have space to avoid that. 🤓
      Great content regardless - keep it up! 💪👍👌

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

    With ai progressing the way it is, you’ll soon be able to upload selfies of fake people, making your account appear even more real.

    • @PythonSimplified
      @PythonSimplified  Год назад +2

      You can already do that! 😉 There are plenty of companies offering you hundreds of thousands of photos of non-existing humans. This is the first site the popped up in the search: generated.photos/faces
      But there are soooooo many of them, and we might actually do something similar in future Ai/ML Simplified videos 😀

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

    I posted a comment with the bot OMG!! SO FUNNY!!.... a content where someone's dog died

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

    Video Title - "How to make Elon Musk angry"

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

      Hopefully more "impressed" than angry 😉 hahaha
      But angry is good too, it would mean that someone in Twitter is aware of WebDriver bots which was the main purpose behind this tutorial 🤪

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

    I would like to see the tutorials she records on the plane......
    around other pasengers yelling, "BOOOOM!!"

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

      @@Python_Simplified selected for what, im sorry i must've missed that, but im down.

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

    i love you.
    (for what you do. of course. 😅😳)

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

    Eeeeeee.... Elon don't like bots. But if you would have some time and make a video about telegram bots i would appreciate it.

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

    I'll keep my same profile pic and make a giant list of gaffes by creepy Joe Sniffer and spam them in the comments section of all the corporate media outlets!

  • @BatMan-mk8tf
    @BatMan-mk8tf Год назад +2

    Hi sister i love you ❤❤❤

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

      Thank you Bat Man, I love you too! you're my favourite super hero! 😁😁😁

  • @ForTheForsaken
    @ForTheForsaken 8 месяцев назад

    Wait, so I wasn't supposed to give those pretty ladies on the dating apps my credit card information? Well, shite.

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

    How can you be so beautiful?

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

    🙏🙏🤗🤗

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

    I would like to spend my life with girl like this 💖

  • @user-nw3un6eo4u
    @user-nw3un6eo4u Год назад

    U sooo 🤭 cutie ☺️❤️💜💙

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

    hey angel .... why u r so cute

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

    Very suspicious subject and bots also resemble a huge menace in todays online community. Not something that would ever need explaining or taught to be created.

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

    mem Are you marriage

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

      sorry mam '
      i was just kidding but i like your answer
      but are you angry with me

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

    Let you Instagram here.

  • @MK-ye9gl
    @MK-ye9gl Год назад

    Странно, но ваш английский становится хуже, пора на родину 😅

  • @andreagiammattei8574
    @andreagiammattei8574 Год назад +2

    i have this problem
    selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"tag name","selector":"input"}

  • @MD-jz7xx
    @MD-jz7xx Год назад

    I'm basically your Twitter Bot.

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

    I love this trap =*

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

    so, are you telling me that all the hot asian girls that follow me on twitter and offer me amazing crypto deals are not real?? xD amazing tutorial, thanks!

  • @S.aliakbar.h7
    @S.aliakbar.h7 Год назад +1

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