Makefiles in Python For Professional Automation

  Переглядів 37,361

NeuralNine

NeuralNine

Рік тому

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/

КОМЕНТАРІ: 42
@thomasgoodwin2648
@thomasgoodwin2648 Рік тому
You have a habit of taking degree level material and reducing it to grade school easy. ❤
@Blonar257
@Blonar257 10 місяців тому
best Python content for learning by far. Great work!
@heptex8989
@heptex8989 Рік тому
Great stuff man, you should upload more videos dedicated to solving kata’s in codewars
@basil200110
@basil200110 Рік тому
Never thought that make could be used with any project. I was so blind... Thank you for the video!
@jairajsahgal7101
@jairajsahgal7101 Рік тому
Amazing, Concise.
@adityagautam4689
@adityagautam4689 Рік тому
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!
@koushik7604
@koushik7604 Рік тому
Superb, this video is a gem
@user-bn7tv6gd8k
@user-bn7tv6gd8k 5 місяців тому
Awesome vid. Thank you!
@AGASTRONICS
@AGASTRONICS Рік тому
Love your contents ✅💯👾🥶
@lebronkiddz
@lebronkiddz Рік тому
Good to see people use the automation tool that has been around for 30 + years in python
@passionforsciencel5180
@passionforsciencel5180 Рік тому
Thanks for your efforts, i hope see a video about asyncio in python general functions (not just for WEB) , 🔥🌹😀
@farshidzamanirad9691
@farshidzamanirad9691 Рік тому
Awesome! Thanks!
@dguiles1
@dguiles1 Рік тому
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.
@RED75xtx
@RED75xtx Рік тому
Excuse me Mr. NeuralNine what kind of terminal do you use? My terminal unfotunately doesn't support WSL out of box.
@ranggatohjaya5471
@ranggatohjaya5471 Рік тому
Nice and thanks for share. I've used tools similar to "make" called "just".
@nospoko5262
@nospoko5262 Рік тому
Rust alternatives to libraries are amazing.
@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.
@Abomin81onVlog
@Abomin81onVlog Рік тому
That was cool.
@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..
@prashlovessamosa
@prashlovessamosa Рік тому
Please make playlist of python videos cause it is hard for me to find your old videos.
@julianmahler2388
@julianmahler2388 Рік тому
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 :(
@meras1549
@meras1549 9 місяців тому
Can you make some CI/CD examples for begginers (makefile, buildspec.yml, appspec.yml, how to automate wheel build ...) ?
@vivekr4690
@vivekr4690 Рік тому
Can you please share makefile code.?! I am getting error
@abdulahamer6238
@abdulahamer6238 Рік тому
I still don't get what the main use for a Make file
@melihteke
@melihteke Рік тому
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
@leftblank5315
@leftblank5315 Рік тому
Great intro to Makefile but you need .PHONY in front of the commands.
@zheka47
@zheka47 Рік тому
You can also use cmake...
@philipm1896
@philipm1896 Рік тому
Any chance you could put those adds required by UKposts further on down your video. Thank me later when you have a bigger payout.
@stefanagapie1769
@stefanagapie1769 9 місяців тому
F for not using a virtual environment. A for the rest of it.
@JonitoFischer
@JonitoFischer 2 місяці тому
Why suffering with make when you have python? Use Invoke instead and automate your builds using python not make.
@philtoa334
@philtoa334 Рік тому
Thx_.
@PierreCarette
@PierreCarette Рік тому
I use python invoke instead
@LoveisHell85
@LoveisHell85 Рік тому
Cool video. Still you could have explained where and why to use Makefile
@julianmahler2388
@julianmahler2388 Рік тому
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
@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 Рік тому
@@kaysonmusicacademy7234 nah that's just the look of being exceedingly pleased with one's code.
@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
Modern Python logging
21:32
mCoding
Переглядів 141 тис.
Unpacking Operators in Python: What are * and **?
12:35
NeuralNine
Переглядів 4 тис.
Мама забыла взять трубочку для колы
00:25
Даша Боровик
Переглядів 482 тис.
ПЕЙ МОЛОКО КАК ФОКУСНИК
00:37
Masomka
Переглядів 2,5 млн
Makefiles: 95% of what you need to know
1:01:53
Gabriel Parmer
Переглядів 107 тис.
Wheel Files: Packaging Python Applications & Modules
21:10
NeuralNine
Переглядів 17 тис.
Python Stock Portfolio analysis using Empyrial
12:11
Tech Nuggets
Переглядів 2 тис.
Makefiles Make Your Life Easier
12:05
NeuralNine
Переглядів 77 тис.
Modern Graphical User Interfaces in Python
11:12
NeuralNine
Переглядів 1,4 млн
Debugging 101: Replace print() with icecream ic()
12:36
NeuralNine
Переглядів 348 тис.
Coding Web Crawler in Python with Scrapy
34:31
NeuralNine
Переглядів 96 тис.
The most important Python script I ever wrote
19:58
John Watson Rooney
Переглядів 30 тис.
Why that "Perfect" Makefile Doesn't Work.
7:14
Jacob Sorber
Переглядів 44 тис.
Is Python making Poetry REDUNDANT?!
9:22
Carberra
Переглядів 7 тис.
поворотний механізм для антени
0:17
Lazeruk
Переглядів 14 тис.
поворотний механізм для антени
0:17
Lazeruk
Переглядів 14 тис.
Что еще за обходная зарядка?
0:30
Не шарю!
Переглядів 2 млн
Which Phone Unlock Code Will You Choose? 🤔️
0:14
Game9bit
Переглядів 6 млн
Он Отказался от БЕСПЛАТНОЙ видеокарты
0:40
ЖЕЛЕЗНЫЙ КОРОЛЬ
Переглядів 1,6 млн