Makefiles in Python For Professional Automation

preview_player
Показать описание
Today we learn how to use Makefiles in a Python context.

◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚

🌐 Social Media & Contact 🌐

Рекомендации по теме
Комментарии
Автор

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

thomasgoodwin
Автор

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

basil
Автор

best Python content for learning by far. Great work!

Blonar
Автор

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

heptex
Автор

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

lebronkiddz
Автор

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.

dguiles
Автор

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!

adityagautam
Автор

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

passionforsciencel
Автор

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

ranggatohjaya
Автор

Any advantage over just using .bat or .sh scripts? Seems that if you use make you are imposing an additional install requirement on your windows users who may have to install make on a corporate locked down pc.

numberformat
Автор

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 :(

julianmahler
Автор

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

REDxtx
Автор

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

prashlovessamosa
Автор

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

venky
Автор

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

leftblank
Автор

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.

apkchinthaka
Автор

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

rajat
Автор

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

JonitoFischer
Автор

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

LoveisHell
Автор

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

vivekr