I Built Your Strange Python Automation Ideas

    17
    37



    I Scripted Your Funny Python Ideas!
    Go to https://brilliant.org/KalleHallden to sign up for free. And also get 20% off an annual premium membership!

    Get access to my programming courses: https://patreon.com/hallden

    Follow me on instagram: https://www.instagram.com/kallehallden/

    LiveCoder channel: https://www.youtube.com/channel/UCxv8jMd-ABJboKo1a_LtuNA

    “Clean Code Friday”
    If you want to receive one short email from me every week, where I go through a few of the most useful things I have explored and discovered this week. Things like; favourite apps, articles, podcasts, books, coding tips and tricks. Then feel free to join https://kalletech.com/cleancode/

    CONTACT: [email protected]

    Follow me on:

    TWITCH: https://www.twitch.tv/kallehallden
    INSTAGRAM: https://www.instagram.com/kallehallden/
    TWITTER: https://twitter.com/kallehallden
    GITHUB: https://github.com/kallehallden
    DISCORD: https://discord.gg/BvXYMdVdCz
    PATREON: https://patreon.com/hallden

    VIDEO EDITOR: https://editingmachine.com (use coupon code KALLE to get 50% off your first month)

    ——————————————————————————————————–
    GEAR:

    Tech



    source

    Previous articleHow to Install the Python Boto3 Module & Create an AWS Session
    Next articleCara Install Hadoop di Windows 10

    37 COMMENTS

    1. About the .25% speed. I added that for the small portion of my audience that wants to see the code explained. Normally I leave this out since I don’t do tutorials. But I thought this could be a way to potentially satisfy everyone without getting really bad watchtime on the video (which I would get if I showed the explanation in real time because most of you guys would fast forward through that part (And I don’t blame you since I would do that too)) and bad watchtime equals less views and if I do that in every video it equals no more of me being able to make these videos
      But this was just an experiment šŸ˜‰

    2. How easy is it to automate this process? Search a word (or part of a word) that I input in a pdf document and output the paragraphs surrounding the word into a Word doc. Also, how easy is it to data scrape any pdf invoices (other videos usually show a pdf with tables and frames)?

    3. Program a simple lie detector out of a sensor (water) or (iR Light) sensors to either detect sweat or Heart Beat Skip by iR, All by means of a $10 water or iR Light sensor and a $12 ESP32 Arduino Micro Controller which also can be programmed with Python3….. šŸ™‚ Awesome videos BTW !!!!

    4. Nice Video.

      I want you to create a project, where we gave a question to the script and it will go to google and search for it and extract the exact answer in the text, not any links. Also If it couldn't find the answer on the homepage then it should go inside the web pages to find the answer.

    5. the 0.25 speed is a great, creative idea… unfortunately, Youtube's engine is really terrible at rendering audio quality. Maybe the audio could be processed in a proper audio software before uploading ? Otherwise, as people mentioned, chapters are a good solution. Cheers, love your channel!

    6. I absolutely loved the idea of the x0.25 speed. Unforunately YT kind of sucks with how it slows down the video time. I saw a couple of suggestions in the comments I would love to bump a little. Some people said to put un-listed videos in the description, and putting the videos at the end. Perhaps after/before your credits to where people could skip to with timestamps. Just anything that won't hinder the quality of your video with youtubes weird time speed change system. Other than that. Absolutely amazing video!

    7. Jesus is King! If you do not know Jesus as Savior please pray, ā€œ Jesus save me. At this moment I choose to have faith that You gave Your life for me and rose from the dead. Doing this You defeated death, even though it meant You had to die. You surrendered Your life for me, so I chose to surrender my life to You. Forgive me Jesus, my God. Amen.ā€

      Jesus loves you so much. Please accept His love. I encourage you to read the Bible and pray.

      ā€œFor God so loved the world that he gave his one and only begotten Son into this world, that whoever believes that in him shall not perish but have eternal life.ā€
      John 3:16

      šŸ™ā¤ļøšŸ™

      Jesus is enough!

      Again I tell you, Jesus loves you!

    8. #PythonAutomationIdea: File Sorter
      I download files from the Internet all the time, and I'm pretty good about naming them consistently. But they get dumped into the same directory all the time, and I'd like to automatically move the ones I marked well.
      I imagine a configuration file I'll have to build once, then update as needed. Two items are needed, the identifier for what kind of file, and a directory where those are to be stored.
      So a #Math file would go into my C:LearnMath directory, and a #Python file would go into C:LearnPython directory. This would be two lines in my configuration file, and when I run it it will look in my Downloads directory (can be hardcoded in the Python code or another item in the config file) and move any files with "#Math" into the correct directory.
      I'll then be able to mark the rest of my files without all those others in the way.