Python Automation Tutorial - How to Automate Tasks for Beginners [Full Course]

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

КОМЕНТАРІ • 402

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

    Thank you very much FCC for publishing my course. It's an honor. This project-based learning should help beginners to improve their portfolio. Happy to help!

  • @notknowthething
    @notknowthething 3 роки тому +273

    Thanks for being a free version of Udemy

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

    30:38 the gmail setting "Less secure app access" is no longer supported by google as of May 30, 2022 (edit)
    enable duel-factor authentication on you email and generate an app password. Here's a video if you don't know how to generate an app password:
    ua-cam.com/video/0zVzFadvEYk/v-deo.html&ab_channel=LotHillSolutions

  • @theoreticalphysics3644
    @theoreticalphysics3644 3 роки тому +55

    Literally I just wrote a python script to automate reading pdfs using just few lines of regex. Saved hours of copy-pasting work.

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

      Can you show me how? I need to do the same thing

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

      Please can you share your method.

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

      I'm just curious but could you explain why you would need to automate reading PDFs, like what situation requires you to read pdf

    • @theoreticalphysics3644
      @theoreticalphysics3644 2 роки тому +7

      @@raymondqiu8202 well, in my case, I'm putting my comp physics degree to such great use by working in a data entry job. Part of my job is I get a bunch of documents containing data and am expected to copy-paste the relevant data into spreadsheets. Rather than doing that though, ofc I'm going to put my overqualification to use. I use regular expressions tailored to whatever documents I'm looking at to extract the data with findall() and use pandas and openpyxl to export the data into a spreadsheet.
      Also, I don't actually read the pdf directly, I read the pdf as converted into a text-accessible file.

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

      @@theoreticalphysics3644 ah right yeh thanks for that, now I understand more. python is so great for this sort of stuff ain't it

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

    Can we get someone with an even thicker accent please

    • @1littlecoder
      @1littlecoder 2 роки тому

      Haha sadly some of us in the other side of the world speak like this!

  • @AlvaroVR8
    @AlvaroVR8 2 роки тому +5

    The first project is outdate, with that code you get an error sending an email with gmail.

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

    May 30, 2022 Google discontinued allowing 'less secure apps'. Does anyone have a work-around?

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

      ua-cam.com/video/sCsMfLf1MTg/v-deo.html check this video!it solves the problem!

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

    This is not for a beginners like me!!!

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

      Hey I am haflway through the course, if you need some help I can assist

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

    Whoever is using python 3.11.1. If the email lib is not getting installed try "pip install email_validator".

    • @maxwellblander
      @maxwellblander 8 місяців тому +1

      this did something I appreciate it haroon

  • @polarishex3055
    @polarishex3055 2 роки тому +33

    In the last project, the news summarizer (3:00:11), you can no longer use Gensim for summarization, as the line 'from gensim.summarization.summarizer import summarize' no longer works. the summarization package was removed from gensim after the 4.0 version, so you would have to downgrade to a 3.x version. I ran into a different error when trying to do that and ended up just skipping that proyect, but I hope the info helps someone

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

      Thanks for sharing this. I saw this recently, you need to use a lower version of gensim to do summarization as they've completely moved into topic modelling.

    • @GurmeetSingh-fr8uo
      @GurmeetSingh-fr8uo 2 роки тому +1

      @@1littlecoder what do you mean by lower version?

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

      @@1littlecoder where can you download the older version?

  • @SouNin_
    @SouNin_ 8 місяців тому +1

    okay so we're on minute 8, and we just went from basic imports, into a full blown function for a scraper. and i dont know if its just me but i much prefer videos that do a code a long with me and actually explain each part that they put on there isntead of just not bothering to explain what they are.

  • @neji-hyuga-
    @neji-hyuga- 3 роки тому +58

    Omg, this cant come at a better time than now. Thank you

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

      Yeah me too... just yesterday I applied for the google career certificate for automating with Python certificate program...for me, this is just wow! Perfect timing for me too

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

      Hahaha yea, i have been learning about automation last 10 days maybe..

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

      @@CrystalOmereife to get to get

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

      @@CrystalOmereife p

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

      @@lukanovakovic8874 98p

  • @MrKareem722
    @MrKareem722 3 роки тому +78

    For those who got the error
    "'charmap' codec can't decode byte 0x9d in position 1290: character maps to "
    just add encoding='utf8' inside the return open statement within convert_pdf function

    • @MrKareem722
      @MrKareem722 2 роки тому +12

      This is how it should be ;)

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

      Thank you, I was getting that error and tried everything until I finally saw your comment and it worked! thank you so much

  • @sythonslays
    @sythonslays 2 роки тому +31

    Typically I have a hard time comprehending Indian instructors, however this is probably one of the best instructional videos I have watched even if the instructor was a native english speaker. You do an incredible job explaining every element of what you are doing and even repeat yourself clearly to help the end user understand what is being accomplished. Excellent Instructor!

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

      Thank you for the kind words and feedback. It helps me focus on the attributes that are impactful!

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

      The guy is Indian he isn't westner

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

    DeprecationError: PdfFileReader is deprecated and was removed in PyPDF2 3.0.0. Use PdfReader instead. how to solve this i am not using PdfFileReader using read_pdf

    • @1littlecoder
      @1littlecoder Рік тому

      You need to install the older version of the package. While you are doing pip install you can specify the older version name

  • @LoadsofLOL
    @LoadsofLOL 2 роки тому +5

    google no longer has 'less secure login' if you are going to use a gmail account for the Hacker News part of the tutorial. Create a App Password (16 charector long, set it and forget it) and use it as your gmail password instead of your regular password to bypass the autentication part.

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

      reply: b'535-5.7.8 Username and Password not accepted
      I still get the problem, after changing the password to the app password, can you explain more?

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

      You created an app password in your Google settings?

  • @mounikakulkarni6389
    @mounikakulkarni6389 2 роки тому +12

    I can't begin to describe how amazing I found this video. Thank you so much.

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

      Thanks Mounika. Means a lot 🙏🏽

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

    Hi, less secure app setting is no longer available on google. what is the work around for that, for hacker news email generation.

    • @1littlecoder
      @1littlecoder 2 роки тому

      Did you find a solution or do you still need support?

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

      @@1littlecoder Sorry, I need support with that. Could you help me?

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

    I don't know much English and sometimes I even have a hard time understanding a native speaker, but I still understood 90% of the things you said, don't worry about your accent, great course ^^

  • @Despe4er
    @Despe4er 3 роки тому +11

    Огромное Вам спасибо ребятушки

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

    Well, this was ahuge waste of time. Update your content!

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

    I swear the best channel in the entire youtube❤️❤️🙏

  • @theencryptedpartition4633
    @theencryptedpartition4633 3 роки тому +13

    You guys are the best🔥. Please stay so and don’t delete videos unless they get really old and you got another one but newer

  • @animelover-ef1eg
    @animelover-ef1eg 2 роки тому +1

    Oh crap his accent is so 😞 bad can some on interpret what his saying is this even english

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

    Y'all literally can't do this to me for the 5th time man. I was about to learn about automation with python and this shows up at my home page saiuodfhisuhdqiuh love y'all

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

    Google ads won't show in your website if you arer scrapping contents from another website

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

    You guys doing such great work.
    May Allah (swt) bless you.!
    Love from Pakistan.

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

    if you got " reportMissingModuleSource " Error for " from bs4 import BeautifulSoup " press ctrl + shift+p then Type Python: Select interperter > Enter > chose remmonded version
    Problem solved

  • @HaiderAli-lr9fw
    @HaiderAli-lr9fw 2 роки тому +2

    Question related to 1st project
    What if I want to schedule the email for every morning, how can I approach that?

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

      You can use a Windows Task Scheduler

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

    Not as good as what i expected

  • @seanoddy9275
    @seanoddy9275 2 роки тому +2

    Now that is how you start a video: "IN THIS COURSE YOU WILL LEARN.."

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

    The first project sets you up for failure because it's approach to connecting to gmail is outdated and will steer you into frustration and failure. 🤷‍♂

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

    Nice Concepts .Camelot is what I am doing now. Vera level nanbaa Thamizhan 🔥🔥🔥 Explanation was smooth and interesting.

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

      Thanks nanba, Namma channel pakkamum vaanga :)

    • @Candy-sh4qs
      @Candy-sh4qs 3 роки тому +1

      @@1littlecoder Bro neega tamil ah, super bro....... Congratulations

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

      @@Candy-sh4qs Yes bro, Thank you :)

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

      hi. I am getting error. "AttributeError: module 'camelot' has no attribute 'read_pdf'". got any tips for me? Danke.

    • @1littlecoder
      @1littlecoder 3 роки тому

      @@anuraagpandey8316 What's the code you are trying?

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

    During the webscraper project; Im getting the message 'Username and Password not accepted'. Does anyone know how to go about this?

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

    Amazing video. My python keeps getting better thanks to free code camp

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

    If you're attempting to clear the terminal on Windows the command is "cls" --> Enter

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

    Tutorial 1 (obstacle) : to enable less secure app access, please turn off 2 step verification first

  • @saikrishnach777
    @saikrishnach777 2 роки тому +4

    Thanks for bringing such amazing content. Good work 1littlecoder !

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

    Thanks for this free knowledge, have a like 👍

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

    This UA-cam channel is amazing! Grateful for this quality of FREE online resources. 🙌

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

    I appreciate all the work FCC are doing but I'm starting to feel that they are literally publishing courses in the bulk without proper quality control. Some of these recently published courses have a hard to understand accent and the teaching style is in no way intuitive at all.

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

    The linting errors are making my eyes hurt

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

    Can anyone tell me how to scrape a website with login screen? (I m here mainly just for that and if anyone alr watched the full video can u tell me how? (I saw a bunch tutorials but didnt find what I want)

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

      You'd need to use selenium for that

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

    please make hacking bootcamp with python.
    lots of love from nepal

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

    If import requests does not execute, try - "python3 -m pip install requests", then "python3" and then "import requests".

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

      thank you so much. this works with requests and beautufulsoap. is there a reason this works but not pip3?

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

    Another winner. Thank you so much.

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

    How can i contact with you
    Test ng, api testing using selenium , frame work, page object model ,

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

    This channel I better than university for sure.

  • @NehemiahWendell-u1y
    @NehemiahWendell-u1y 17 днів тому

    Jackson Gary Jackson Shirley Walker Christopher

  • @tebasak1
    @tebasak1 Рік тому +3

    Less secure apps is no longer supported which makes the rest of the 3 hours video pointless. If you can't maintain the integrity of your educational videos then consider making something that can better hold up to changes.

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

    Hanzhen harmonic drive gear , robot arm joint , over 30 years experience ,

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

    Chitramandirey Avashyam Pashyatu #TheKashmirFiles #RightToJustice

  • @trentonk1188
    @trentonk1188 2 роки тому +4

    am I the only one unable to listen to Indian english?

  • @malkhaz.jokhadze
    @malkhaz.jokhadze Рік тому

    11/10... Additional credit for proper indian accent.

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

    Yall are coming out with rapidfire Python content and I am HERE for it

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

    If you're watching this, don't do like this guy. First, create a virtual environment, and then install the required packages. mkdir , cd , python -m venv , in windows to activate do \Scripts\activate.bat. Once activated you can do your pip install requests, etc.

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

    Beta tester od roku 2016 oceňujem,,

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

    Really amazing, but Google currently removed less security functionalities, instead of it they provide third party, where can generate password for third party request. May be i am wrong but it's like this.

  • @Osegbuvalentine
    @Osegbuvalentine 8 місяців тому

    I have watched the tutorial from start to finish but I still don't get the concept of Automation Scripting, or is it different from regular programming?

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

    Hello, sorry complete beginner here, I ve got Python 3 installed. Question: at the very beginning, when running 'pip3 install requests' and 'pip3 install beuatifulsoup4' i get the error message 'File "", line1'. I ve tried running it on the shell, on the Powershell, and on my editor (I use Atom). ANy ideas? thx

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

    Hi I just want to ask a simple question. I make scraping scripts using python and other libraries which helps me to gather the data in required format.
    What is my profession?
    Tester
    Developer
    Guide me on this
    Thanks

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

    As of date 19-May-2022, I am at 14:18 on this video and I can't find the exact thing that the instructor is saying. Has the coding structure changed inside the "inspect element" box ??

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

    Hai sir, ur video super. I learn so much ur channel. I have one doubt I'm using excel data python. Excel sheet cells I have created formula. Excel read data python program only copy formula not value. Please help me I need excel rows read values only. Please advise sir.

  • @neepamgandhi5251
    @neepamgandhi5251 2 місяці тому

    did anyone have an issue opening the jupyter notebook ?

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

    any URL to download source code

    • @1littlecoder
      @1littlecoder 2 роки тому

      Check the YT description. it's for the GitHub repo link

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

    why do i have to download pdf2text separately and why not the pdfminer package is installing that. plus even if i download it its not working.

  • @ChrisBMobiusman
    @ChrisBMobiusman 8 місяців тому

    How do I write a script that just shows my reels and updates them as I post on a monitor I have connected with raspberry pi? I need it for an art show

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

    heyyyyyyyyyyyyyy , I got an "AttributeError: 'list' object has no attribute 'encode' " on the first program when I tried to add an list

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

    I am going to build a desktop app, should I make code in single python file or make different files for ui, admin, user ?

  • @oamarkanji3153
    @oamarkanji3153 2 роки тому +7

    Free code camp is killing it with these courses, thank you!

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

    Can you guys please make a python crash course on latest version thanks a lot

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

      ua-cam.com/video/oApJaCzCve8/v-deo.html

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

    Even if I was a beginner I never wanted to take a class from this person... I just can't...

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

    The Ted Talk downloader no more working. The video url ain't stored in the the script tag no more.

    • @1littlecoder
      @1littlecoder 2 роки тому

      @prince here's the latest way to download TED Talks - ua-cam.com/video/kxulmN9-bRM/v-deo.html

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

    any advice if you're struggling with pip install requests? Think there is something that needs to be done in VSCode before building a project?

    • @1littlecoder
      @1littlecoder 2 роки тому

      Have you installed Python on VSCode? If you have Python on your machine, pip install requests should work fine.

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

      @@1littlecoder When i try to import it states that there is no module named 'requests', even though i have installed them and it states 'requirement already satisfied' when i try do 'pip3 install requests'. I am using anaconda python powershell

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

      @@wafeealkevy1181 Same issue using pycharm community edition .

  • @Sam-jg5zv
    @Sam-jg5zv 2 роки тому +3

    Excellent tutorial that goes through various useful libraries in Python.

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

    In the Resume parsing tutorial, what if I have to extract the name of the college, how will I be able to do that?

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

    Great video but you should try to break it up into smaller videos so they are easy to navigate through. Its hard to find the right spot where you left off last. Otherwise, the content is perfect.

    • @1littlecoder
      @1littlecoder 3 роки тому

      Thank you. Do you mean the sections are longer or the entire large video makes it difficult?

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

      @@1littlecoder I think he means a separate video for each tutorial

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

      That’s dumb

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

    Guardado para una próxima visualización y estudio! Gracias y Saludos desde Argentina

  • @karthick-416
    @karthick-416 3 роки тому +4

    Thank you very much for this great video! I am having trouble with my code as I am getting a response " Ghostscript is not installed" for the pdf extraction section. Any suggestions resolving this would be much appreciated :)

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

      Using a mac, I had to "brew install ghostscript tcl-tk" and "pip3 install ghostcript" and restarted jupyter and vscode. It still won't run in the browser but it runs in vscode.

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

      You have to install ghostscript separately as @Kristin mentioned below

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

      @@FredRandall01 Thanks Kristin for sharing this

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

      @@FredRandall01 i got the same issue on windows and i just switched to stream instead of lattice and it is working

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

      @@FredRandall01 u

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

    automation is the latest products on networks waw

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

    I see a Lego Mindstorms EV3 in the back. Is there any upcoming course for that?

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

    Holy this is absolute banger of a video, I also thought I wouldn't be able to understand the accent for the entire video but this is the best programming video i've ever watched explained all the functions and methods so well thanks so much

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

    What is the difference between c framework and python framework ? Which one is better if python or c then why ?

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

    Very useful, I greatly appreciate this!

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

    Thanks for the program

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

    Hi
    you can make a video how to takes videos from instagram and upload them to tiktok automaticly. Like 100 videos per day. It is possible?

    • @1littlecoder
      @1littlecoder 2 роки тому

      Hi Thanks for the idea, I'll check. Never used TikTok though

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

      @@1littlecoder by the way my instagram account was hacked and person is set up 2 step verification code and i can not access of it. I am not able to recover because it ask 2 step verification code 8 digits numbers. There is no photo of me also i contacted with facebook fews times and it does not help me. there is a way to recover my accoiunt?

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

    Google has discontinued less secure apps feature. so use App passwords instead.

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

    ERROR: Could not find a version that satisfies the requirement requests (from versions: none)
    ERROR: No matching distribution found for requests
    I'm facing the above error while installing libraries, could u pls help me here

    • @1littlecoder
      @1littlecoder 2 роки тому

      do you have python3 or lesser version?can you please raise an issue on that github repo given in the description. Will be easier for me track the issu.

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

    Initially i successfully installed requests using the terminal. But PyCharm couldn't find it i tried to import. So, i tried reinstalling and ended up with the error - ImportError: cannot import name 'parse_http_list'. Can anyone help?

    • @1littlecoder
      @1littlecoder 2 роки тому

      Is it for requests? Did you try to force-install requests?It could be dependency issue

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

    Thank you so very much !!

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

    EXTRACTED OF "AUTOMATE BORING STUFF WITH PYTHON BOOK"

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

    This is amazing, thanks!

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

    Omg, this cant come at a better time than now. Thank you

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

    thanks for this great demo.
    Would like to ask - what OS are you using, what Terminal is it?

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

    is it only me 'pip3' is not recognized as an internal or external command,
    operable program or batch file.

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

      Try pip, not pip3.

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

      @@johnqpublic770 that wouldnt work either but I've alredy fixed it but thanks anyway

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

    After installing all the packaged through terminal pycharm is giving me errors when I try to import. Saying unresolved reference and no module named ' '

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

      which package are you trying to install and import?

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

    1:01:00 - if you're getting the error message "ModuleNotFoundError: No module named 'cv2'" run "pip install opencv-python"

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

    Hi, Can someone please help me. I am quite new to the world of programming. What terminal is he using? I tried it in CMD but it does not work? Sorry for the newbie question

    • @1littlecoder
      @1littlecoder 2 роки тому

      It's iTerm2 from Mac. It's bash shell. What issue did you face on CMD?

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

    51:41 How to correct the error sir for val in soup.findAll("script") .SyntaxError: invalid syntax

    • @1littlecoder
      @1littlecoder 2 роки тому

      Hey can you raise a github issue at the repo given in the description? I can check it there.

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

    How's this job called? Is there a name of the job where you develop this kind of tools? Is this machine learning?

    • @1littlecoder
      @1littlecoder 2 роки тому

      Sometimes you get to do this Data Science but sometimes in just general Python automation