Makefiles in Python For Professional Automation

Поделиться
HTML-код
  • Опубликовано: 23 янв 2023
  • Today we learn how to use Makefiles in a Python context.
    Chocolatey: chocolatey.org/
    Make Installer Windows: gnuwin32.sourceforge.net/pack...
    ◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
    📚 Programming Books & Merch 📚
    🐍 The Python Bible Book: www.neuralnine.com/books/
    💻 The Algorithm Bible Book: www.neuralnine.com/books/
    👕 Programming Merch: www.neuralnine.com/shop
    🌐 Social Media & Contact 🌐
    📱 Website: www.neuralnine.com/
    📷 Instagram: / neuralnine
    🐦 Twitter: / neuralnine
    🤵 LinkedIn: / neuralnine
    📁 GitHub: github.com/NeuralNine
    🎙 Discord: / discord
    🎵 Outro Music From: www.bensound.com/
  • НаукаНаука

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

  • @thomasgoodwin2648
    @thomasgoodwin2648 Год назад +16

    You have a habit of taking degree level material and reducing it to grade school easy. ❤

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

    best Python content for learning by far. Great work!

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

    Amazing, Concise.

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

    Superb, this video is a gem

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

    Never thought that make could be used with any project. I was so blind...
    Thank you for the video!

  • @user-bn7tv6gd8k
    @user-bn7tv6gd8k 7 месяцев назад

    Awesome vid. Thank you!

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

    Great stuff man, you should upload more videos dedicated to solving kata’s in codewars

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

    Good to see people use the automation tool that has been around for 30 + years in python

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

    Love your contents ✅💯👾🥶

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

    Awesome! Thanks!

  • @adityagautam4689
    @adityagautam4689 Год назад +4

    bro you are the best!
    thank you!
    (help: can you suggest a python library for system audio detection. I wanted the make an automation whenever the program detects system audio)
    and your cmd background looks fire 🔥
    this was actually really helpful for my school project. thank you!

  • @iuxdev
    @iuxdev 11 дней назад

    Great content

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

    That was cool.

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

    Thanks for your efforts, i hope see a video about asyncio in python general functions (not just for WEB) , 🔥🌹😀

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

    Nice and thanks for share. I've used tools similar to "make" called "just".

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

      Rust alternatives to libraries are amazing.

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

    Excuse me Mr. NeuralNine what kind of terminal do you use? My terminal unfotunately doesn't support WSL out of box.

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

    Wow. Amazing job. You gave me all the information i needed and nothing i didnt. If you could please do a video on ALL class decorator functions, thatd be great. If you could explain why and how ordered lists of non-specific type will auto-organizer themselves, thatd be the best thing. lol. thanks again man.

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

    Please make playlist of python videos cause it is hard for me to find your old videos.

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

    Hi you have very nize video. I like python. i am from sri lankan. please tell me how to use utf-8 charactor. becouse i want to use sinhala charactors.

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

    In case anyone is wondering how to delete the folders on Linux (and probably MacOS?):
    if [ -e "./build" ]; then rm -rf build; fi
    All spaces and semicolons need to be exactly like that. /Edit: I probably should have watched the whole video first :(

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

    Can you please share makefile code.?! I am getting error

  • @venky1922
    @venky1922 28 дней назад

    Why you guys dont give github link for the code you write in videeo

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

    Please tell us about multiple terminal in your windows system. How is it possible to use the ubuntu terminal in windows and cmd too.

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

      I have a video about this on my channel. Just look for "Terminal"

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

      @@NeuralNinesince your a developer how do you know what codes to use while typing and when you make an app how do you upland it?

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

      @@JustinMacri007 Mostly we need to depend on documentation for whatever we build. example, if you want to build a data related things look for numpy, pandas etc..

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

    Great intro to Makefile but you need .PHONY in front of the commands.

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

    Thx_.

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

    I still don't get what the main use for a Make file

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

      Makefile is kind a shortcut for all set of rules(actions)
      As in the video if you want to build your package then you need to run some set of commands individually. However oif you use Makefile, you can define these actions and run them in singleshot

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

    You can also use cmake...

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

    I use python invoke instead

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

    F for not using a virtual environment. A for the rest of it.

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

    Why suffering with make when you have python? Use Invoke instead and automate your builds using python not make.

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

    Cool video. Still you could have explained where and why to use Makefile

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

      Makefiles allow you to use shortcuts for sets of commands you're using over and over again. Instead of running "if [ -e "./helloworld.egg-info" ]; then rm -rf helloworld.egg-info; fi", you just write that command in a makefile, label it "clean" and then run "make clean". Saves you a lot of typing

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

    Any chance you could put those adds required by RUclips further on down your video.
    Thank me later when you have a bigger payout.

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

    Bro you look like a villain try to smile sometimes your voice doesn't match your Face

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

      damn bro wtf

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

      @@deei5130 it's just cruise...I like the guy honestly

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

      @@kaysonmusicacademy7234 nah that's just the look of being exceedingly pleased with one's code.

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

    Can you make some CI/CD examples for begginers (makefile, buildspec.yml, appspec.yml, how to automate wheel build ...) ?

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

    Another great intro. I'm really enjoying your content - any chance you could put out more AI / Cloud tutorials ? Thanks x
    Also on the Makefile on Mac - found this worked fine:
    clean:
    -rm -r build
    -rm -r dist
    -rm -rf myprojectname.egg-info