Makefiles in Python For Professional Automation

  Рет қаралды 37,634

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!
@jairajsahgal7101
@jairajsahgal7101 Жыл бұрын
Amazing, Concise.
@basil200110
@basil200110 Жыл бұрын
Never thought that make could be used with any project. I was so blind... Thank you for the video!
@heptex8989
@heptex8989 Жыл бұрын
Great stuff man, you should upload more videos dedicated to solving kata’s in codewars
@koushik7604
@koushik7604 Жыл бұрын
Superb, this video is a gem
@AGASTRONICS
@AGASTRONICS Жыл бұрын
Love your contents ✅💯👾🥶
@lebronkiddz
@lebronkiddz Жыл бұрын
Good to see people use the automation tool that has been around for 30 + years in python
@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!
@user-bn7tv6gd8k
@user-bn7tv6gd8k 6 ай бұрын
Awesome vid. Thank you!
@farshidzamanirad9691
@farshidzamanirad9691 Жыл бұрын
Awesome! Thanks!
@Abomin81onVlog
@Abomin81onVlog Жыл бұрын
That was cool.
@passionforsciencel5180
@passionforsciencel5180 Жыл бұрын
Thanks for your efforts, i hope see a video about asyncio in python general functions (not just for WEB) , 🔥🌹😀
@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.
@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.
@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 :(
@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.
@prashlovessamosa
@prashlovessamosa Жыл бұрын
Please make playlist of python videos cause it is hard for me to find your old videos.
@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.
@zheka47
@zheka47 Жыл бұрын
You can also use cmake...
@philtoa334
@philtoa334 Жыл бұрын
Thx_.
@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
@stefanagapie1769
@stefanagapie1769 10 ай бұрын
F for not using a virtual environment. A for the rest of it.
@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
@PierreCarette
@PierreCarette Жыл бұрын
I use python invoke instead
@JonitoFischer
@JonitoFischer 2 ай бұрын
Why suffering with make when you have python? Use Invoke instead and automate your builds using python not make.
@philipm1896
@philipm1896 Жыл бұрын
Any chance you could put those adds required by KZfaq 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 Жыл бұрын
@@kaysonmusicacademy7234 nah that's just the look of being exceedingly pleased with one's code.
@meras1549
@meras1549 9 ай бұрын
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
Makefiles Make Your Life Easier
12:05
NeuralNine
Рет қаралды 78 М.
Modern Python logging
21:32
mCoding
Рет қаралды 142 М.
How To Choose Ramen Date Night 🍜
00:58
Jojo Sim
Рет қаралды 55 МЛН
Follow @karina-kola please 🙏🥺
00:21
Andrey Grechka
Рет қаралды 19 МЛН
SHE WANTED CHIPS, BUT SHE GOT CARROTS 🤣🥕
00:19
OKUNJATA
Рет қаралды 9 МЛН
The most important Python script I ever wrote
19:58
John Watson Rooney
Рет қаралды 53 М.
Is Python making Poetry REDUNDANT?!
9:22
Carberra
Рет қаралды 7 М.
Python Code to Android APK with Flet | Test APK in Virtual Emulator
8:12
Henri Ndonko - TheEthicalBoy
Рет қаралды 7 М.
Makefiles: 95% of what you need to know
1:01:53
Gabriel Parmer
Рет қаралды 107 М.
Makefiles, but in English
55:45
801Labs
Рет қаралды 26 М.
Automate your job with Python
6:07
John Watson Rooney
Рет қаралды 307 М.
How to Use Poetry in Python to avoid Dependency Hell
20:21
Debugging 101: Replace print() with icecream ic()
12:36
NeuralNine
Рет қаралды 350 М.
Что еще за обходная зарядка?
0:30
Не шарю!
Рет қаралды 2,2 МЛН
С Какой Высоты Разобьётся NOKIA3310 ?!😳
0:43
Why spend $10.000 on a flashlight when these are $200🗿
0:12
NIGHTOPERATOR
Рет қаралды 17 МЛН
Переходник для IPhone • 181649538                         Делюсь обзорами в профиле @lykofandrei
0:15
Apple. 10 Интересных Фактов
24:26
Dameoz
Рет қаралды 86 М.