Top videos
Today, I'll share with you how to set up your Development Environment for Python Code. These are the setups and environment that I recommend you use on a daily basis.
💻 Thanks to Linode for sponsoring this video! Get a $100 60-day credit when you sign up with a new account from: https://linode.com/techwithtim
Download Anaconda: https://www.datacamp.com/tutor....ial/installing-anaco
Add Anaconda To Path: https://www.datacamp.com/tutor....ial/installing-anaco
Download VSCode: https://code.visualstudio.com/
💻 ProgrammingExpert is the best platform to learn how to code and
become a software engineer as fast as possible! Check it out here: https://programmingexpert.io/tim and use code "tim" for a discount!
⭐️ Timestamps ⭐️
00:00 | Intro
00:44 | Linode
01:45 | Virtual Environments/Anaconda
10:10 | Code Editor/VSCode
13:45 | Formatters
16:15 | Autocomplete/Intellisense
18:15 | VSCode Extensions
◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️
👕 Merchandise: https://teespring.com/stores/t....ech-with-tim-merch-s
📸 Instagram: https://www.instagram.com/tech_with_tim
📱 Twitter: https://twitter.com/TechWithTimm
⭐ Discord: https://discord.gg/twt
📝 LinkedIn: https://www.linkedin.com/in/tim-ruscica-82631b179/
🌎 Website: https://techwithtim.net
📂 GitHub: https://github.com/techwithtim
🔊 Podcast: https://anchor.fm/tech-with-tim
🎬 My YouTube Gear: https://www.techwithtim.net/gear/
💵 One-Time Donations: https://www.paypal.com/donate?....hosted_button_id=CU9
💰 Patreon: https://www.patreon.com/techwithtim
◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️
⭐️ Tags ⭐️
- Tech With Tim
- Python Development
- Coding
⭐️ Hashtags ⭐️
#techwithtim #developer #python #howtolearncoding
Learn how to develop Dynamic Database-Driven Web Apps with Python, Flask, and MySQL. This course is broken up into two parts. In part one, you will learn how to build and deploy a site using the Flask Python web framework. In part two, you will connect the Flask application from the first part to a cloud MySQL database and learn how to deploy a production-ready database-driven web application.
✏️ Aakash N S created this course.
🔗 Submit your project & earn a certificate: https://jovian.com/learn/web-d....evelopment-with-pyth
🔗 Check out Jovian’s YouTube channel: https://youtube.com/@jovianhq
Notes & references links:
🔗 Part 1: https://jovian.com/aakashns/we....b-development-with-p
🔗 Part 2: https://jovian.com/aakashns/da....tabase-driven-web-ap
⭐️ Contents ⭐️
Part 1
⌨️ (0:00:00) Introduction
⌨️ (0:02:07) 1.1 Project Setup & Flask Basics
⌨️ (0:22:25) 1.2 Building Web Pages using HTML
⌨️ (0:40:57) 1.3 Styling with CSS & Bootstrap
⌨️ (1:08:25) 1.4 Dynamic Data using Templates
⌨️ (1:27:22) 1.5 Deploying to the Cloud with Render
⌨️ (1:42:39) 1.6 Functional and Aesthetic Improvements
⌨️ (1:58:44) 1.7 Summary & Future Work
Part 2
⌨️ (2:04:19) Database-Driven Web Applications
⌨️ (2:07:24) 2.1 Project Setup & Deployment
⌨️ (2:21:44) 2.2 Cloud MySQL Database Setup
⌨️ (2:36:20) 2.3 DB Connection with SQLAlchemy
⌨️ (2:56:22) 2.4 Display DB Data on Web Page
⌨️ (3:20:04) 2.5 Dynamic Database-Driven Pages
⌨️ (3:49:23) 2.6 HTML Form for Applications
⌨️ (4:15:37) 2.7 Saving Applications to DB
⌨️ (4:26:23) 2.8 Summary & Future Work
⌨️ (4:37:50) Conclusion
🎉 Thanks to our Champion and Sponsor supporters:
👾 Nattira Maneerat
👾 Heather Wcislo
👾 Serhiy Kalinets
👾 Erdeniz Unvan
👾 Justin Hual
👾 Agustín Kussrow
👾 Otis Morgan
--
Learn to code for free and get a developer job: https://www.freecodecamp.org
Read hundreds of articles on programming: https://freecodecamp.org/news
You've just made a beautiful GUI app with Python - but there's a big difference between creating an app for your personal use and distributing it all across the web, reaching many people who don't necessarily know anything about Python.
In this tutorial, I will show you exactly how to convert your Tkinter, Kivy, KivyMD, PyQT5, or other GUIs into a full-blown professional program! 🤩🤩🤩
The end result is a 😱 SINGLE SETUP FILE 😱 which anyone can download and install on their computer - even your grandmom!!! 👵
We will use Pyinstaller to create an executable file and Inno Setup to bundle it with dependencies and convert them into a setup wizard.
In addition, we will discuss some common errors, how to fix them and how to avoid irrelevant instructions (hint: do we really need to modify the SPEC file? 🤔)
We will briefly tackle licensing (open source, as you may guess 😉), and generating icons.
Please note, this video is designed for Windows developers and users! However, I will cover Linux and Mac as well in some future tutorials... the Mac tutorial is of course inspired by Tom! XDD (but only members of our Discord community will understand the joke, this is how I test if they read video descriptions 😅)
-------------------------------------------
⏰ Time Stamps ⏰
-------------------------------------------
00:00 - intro
00:40 - project files and database
01:31 - download Random Recipe Picker (or use your own Python app)
03:29 - install requirements.txt
03:46 - Pyinstaller vs auto-py-to-exe
04:25 - run Pytinstaller builder
05:22 - prep GUI script for Pyinstaller
05:56 - resource path (and important sys._MEIPASS fix!)
08:18 - SPEC file
09:20 - generate software icons
10:04 - convert script and assets to exe file
11:22 - fix Pyinstaller File Not Found Error
12:48 - test executable
13:36 - install Inno Setup
14:17 - convert exe and assets into a setup file
16:39 - license
20:00 - add subdirectories to Inno Setup compilable
21:56 - test setup file on another PC
22:57 - thanks for watching! :)
-------------------------------------------
📽️ Important Tutorials 📽️
-------------------------------------------
⭐ Create GUI App with SQLite and Tkinter (Random Recipe Picker):
https://youtu.be/5qOnzF7RsNA
⭐ Anaconda for Beginners:
https://youtu.be/MUZtVEDKXsk
⭐ Convert .py to .exe with auto-py-to-exe:
https://youtu.be/Y0HN9tdLuJo
-------------------------------------------
💻 VENV Alternative 💻
-------------------------------------------
$ python3 -m venv name_of_my_env
$ source name_of_my_env/bin/activate
-------------------------------------------
🖇️ Tutorial Links 🖇️
-------------------------------------------
🔗 Random Recipe Picker Repository: https://github.com/MariyaSha/RandomRecipePicker
🔗 Resource Path Function (Stack Overflow): https://stackoverflow.com/ques....tions/31836104/pyins
🔗 PNG to ICO Icon Converter: https://image.online-convert.com/convert-to-ico
🔗 Inno Setup: https://jrsoftware.org/isinfo.php
🔗 Open Source Initiative MIT License: https://opensource.org/licenses/MIT
-------------------------------------------
🤝 Connect with me 🤝
-------------------------------------------
🔗 Github:
https://github.com/mariyasha
🔗 Discord:
https://discord.com/invite/wgTTmsWmXA
🔗 LinkedIn:
https://ca.linkedin.com/in/mariyasha888
🔗 Twitter:
https://twitter.com/mariyasha888
🔗 Blog:
https://www.pythonsimplified.org
-------------------------------------------
💳 Credits 💳
-------------------------------------------
⭐ Beautiful titles, transitions, sound FX, and music:
mixkit.co
⭐ Beautiful icons:
flaticon.com
#gui #graphics #app #application #python #pythonprogramming #exe #pythoncoding #software #softwaredevelopment #pythonsimplified #convert #code #pyinstaller #innosetup #wizard #windows
My new HTML5 & CSS3 COURSE IS OUT NOW!
https://developedbyed.com/
In todays episode we are going to take a look on how we can build out a python gui app.
In todays era of improving our workflow, we are going to build an app that lets us auto open up a bunch of other apps that we would normally use. You can imagine it as being a workspace opener.
If you want to learn more about python or you are a python beginner this is a great tutorial for you to build out some practical apps.
All the code will be available on patreon.
🎁Support me on Patreon for exclusive episodes, discord and more!
https://www.patreon.com/dev_ed
Microphones I Use
Audio-Technica AT2020 - https://geni.us/Re78 (Amazon)
Deity V-Mic D3 Pro - https://geni.us/y0HjQbz (Amazon)
BEHRINGER Audio Interface - https://geni.us/AcbCpd9 (Amazon)
Camera Gear
Fujifilm X-T3 - https://geni.us/7IM1 (Amazon)
Fujinon XF18-55mmF2.8-4 - https://geni.us/sztaN (Amazon)
PC Specs
Kingston SQ500S37/480G 480GB - https://geni.us/s7HWm (Amazon)
Gigabyte GeForce RTX 2070 - https://geni.us/uRw71gN (Amazon)
AMD Ryzen 7 2700X - https://geni.us/NaBSC (Amazon)
Corsair Vengeance LPX 16GB - https://geni.us/JDqK1KK (Amazon)
ASRock B450M PRO4 - https://geni.us/YAtI (Amazon)
DeepCool ATX Mid Tower - https://geni.us/U8xJY (Amazon)
Dell Ultrasharp U2718Q 27-Inch 4K - https://geni.us/kXHE (Amazon)
Dell Ultra Sharp LED-Lit Monitor 25 2k - https://geni.us/bilekX (Amazon)
Logitech G305 - https://geni.us/PIjyn (Amazon)
Logitech MX Keys Advanced - https://geni.us/YBsCVX0 (Amazon)
DISCLAIMERS:
I am a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.
🛴 Follow me on:
Twitch: https://www.twitch.tv/developedbyed
Twitter: https://twitter.com/developedbyed
Instagram: https://www.instagram.com/developedbyed/
Github: https://github.com/developedbyed/
#python #programming
In this video you will learn how to create simple python GUIs using the PySimpleGUI library. There are 10 projects in this video: A converter, a calculator, a stopwatch, a text app, the snake game, an image editor, a music player, a weather app and a opencv face detector. There is also an extra video about creating a gui in a single line of code.
By the end of the video you should be comfortable understanding PySimpleGUI and solve more or less any problem inside of it. The video will also use popular python modules like matplotlib, opencv, pytube, pillow and BeautifulSoup4.
If you want to support me: https://www.patreon.com/clearcode
(You also get lots of perks)
Social stuff:
Twitter - https://twitter.com/clear_coder
Discord - https://discord.com/invite/a5C6pYw2w5
Timestamps:
0:00:00 - Intro
0:03:48 - Converter
0:37:00 - One line app
0:38:46 - Calculator
1:09:06 - Stopwatch
1:36:14 - Text editor
1:57:10 - Snake
2:29:40 - Graph app (MatPlotLib)
2:47:50 - Image editor (Pillow)
3:11:06 - Music Player
3:48:59 - Weather app (BeautifulSoup4)
4:08:14 - Face detector (OpenCV)
Github:
https://github.com/clear-code-....projects/PySimpleGui
Pastebin:
Weather app - https://pastebin.com/LHPdVbgq
Stopwatch - https://pastebin.com/bHP6GppS
Face Detector (open cv) - https://pastebin.com/3BKFmubT
Snake game - https://pastebin.com/zRZvssxB
Text editor - https://pastebin.com/NWDb2Pjw
Image editor (Pillow) - https://pastebin.com/H3QCwQgX
Graph app (Matplotlib) - https://pastebin.com/dES5Qp4B
Calculator - https://pastebin.com/h2W5t35L
Converter - https://pastebin.com/aDVADH7R
One line app - https://pastebin.com/4rvyhcJx
music player - https://pastebin.com/DZfqjwMs
Become Python DEVELOPER in 30Days🚀🔥 Ultimate Python developer roadmap like never before
Python is recently been used by many people due to its simplicity and efficiency. So here we go with the exact python roadmap.
Odinschool link - https://hubs.la/Q01BkVk40
https://github.com/cl2333/Grok....king-the-Coding-Inte
https://www.udacity.com/course..../data-structures-and
CS in Tamil, Telusko, Freecodecamp
how to learn to code,software engineer,python programming,python for beginners,python for beginners in tamil,python full course in tamil,python tutorial,python full course,how to learn coding for beginners in tamil,how to learn coding for beginners,how to learn python,how to learn programming,how to learn python for beginners,how to learn python in tamil,how to learn python language,how to learn python programming language for beginners
In this part of the Kivy tutorials, we're going to cover how to schedule tasks to run (either just once, or repeatedly), as well as actually connect to our chat server.
Text-based tutorial and sample code: https://pythonprogramming.net/....scheduling-clock-kiv
Channel membership: https://www.youtube.com/channe....l/UCfzlCWGWYyIQ0aLC5
Discord: https://discord.gg/sentdex
Support the content: https://pythonprogramming.net/support-donate/
Twitter: https://twitter.com/sentdex
Facebook: https://www.facebook.com/pythonprogramming.net/
Twitch: https://www.twitch.tv/sentdex
G+: https://plus.google.com/+sentdex
Python for Data Science: https://ibm.biz/Python_for_Data_Science
Python and Julia are both common and powerful language that may seem alike, but there are definitely differences you should consider. In this video Martin Keen, Master Inventor, provides an overview of Python and Julia, showcasing their strengths so you can make an informed decision on the best for your next project.
Get started for free on IBM Cloud → https://ibm.biz/sign-up-today
Subscribe to see more videos like this in the future → http://ibm.biz/subscribe-now
This video tutorial has been taken from Tips, Tricks, and Techniques for Python Application Development. You can learn more and buy the full video course here https://bit.ly/2Q33nVZ
Find us on Facebook -- http://www.facebook.com/Packtvideo
Follow us on Twitter - http://www.twitter.com/packtvideo
How to setup Python on Visual Studio Code (vscode)
Install Python: https://www.python.org/
Install Visual Studio Code: https://code.visualstudio.com/
After installing python, open the command prompt/terminal, and type in python --version or py --version. If you have installed python successfully, you will see the version of python you have.
Open vscode, and create new file. Name it whatever you want, but be sure to include the .py extension.
On the left, click the extensions icon, and search for Python. Install the python extension by Microsoft. This will allow for Python support in vscode.
Then, search for code runner and install the extension. This will add a run button at the top right of your vscode. Clicking this button will run your python code.
To have code runner output to the terminal instead of the built-in output console, click the settings icon (gear icon) on the bottom left corner. Scroll down until you see Code Actions on Save. Click settings.json and the file will open.
Add this line inside the json file: "code-runner.runInTerminal": true,
After that, you are all set!
Website: https://www.kennyyipcoding.com/
Java Game Programming Projects Playlist:
https://www.youtube.com/playli....st?list=PLnKe36F30Y4
JavaScript Game Programming Projects Playlist:
https://www.youtube.com/playli....st?list=PLnKe36F30Y4
Subscribe for more coding tutorials 😄!
Welcome to a youtube channel dedicated to programming and coding related tutorials. We talk about tech, write code, discuss about cloud and devops. That’s what we do all day, all year. We roll out a lot of series and videos on our channel.
All the learning resources such as code files, documentations, articles and community discussions are available on our website:
https://chaicode.com/
You can find our discord link, github link etc on the above website.
Twitter/X link: https://x.com/hiteshdotcom
Discord link: https://hitesh.ai/discord
Learn React with 10 projects: https://www.youtube.com/watch?v=eCU7FfMl5WU&list=PLRAV69dS1uWQos1M1xP6LWN6C-lZvpkmq
Learn Docker: https://youtu.be/rr9cI4u1_88?si=fSK00PNOt0gqBXp6
Learn Kubernetes: https://www.youtube.com/watch?v=7XDeI5fyj3w
How does a browser works: https://youtu.be/5rLFYtXHo9s?si=UW1HrwGUzkk4E7qh
How nodejs works: https://youtu.be/ooBxSg1Cl1w?si=Ks6Wih1smJZSDz4V
Learn Redux-toolkit: https://www.youtube.com/watch?v=pX0SBJF01EU
Learn NextJS: https://www.youtube.com/watch?v=iPGXk-i-VYU&list=PLRAV69dS1uWR7KF-zV6YPYtKYEHENETyE
Learn Typescript: https://www.youtube.com/watch?v=j89BvWz8Eag&list=PLRAV69dS1uWRPSfKzwZsIm-Axxq-LxqhW
Learn Javascript: https://www.youtube.com/watch?v=2md4HQNRqJA&list=PLRAV69dS1uWSxUIk5o3vQY2-_VKsOpXLD
Learn React Native: https://www.youtube.com/watch?v=kGtEax1WQFg&list=PLRAV69dS1uWSjBBJ-egNNOd4mdblt1P4c
Learn Zustand: https://www.youtube.com/watch?v=KCr-UNsM3vA&list=PLRAV69dS1uWQMXekDgw7fRAsHmsbKWkwu
Learn Golang: https://www.youtube.com/watch?v=X4q1OM0voO0&list=PLRAV69dS1uWSR89FRQGZ6q9BR2b44Tr9N
Ben Chu
Engineers tasked with planning new infrastructure constantly face the problem of having to look through too much information. This talk is about how we wanted to be lazy and wrote a bot to do it for us instead.
https://2019.pycon-au.org/talk....s/python-application
PyCon AU, the national Python Language conference, is on again this August in Sydney, at the International Convention Centre, Sydney, August 2 - 6 2019.
Video licence: CC BY-NC-SA 4.0 - https://creativecommons.org/licenses/by-nc-sa/4.0/
Python, PyCon, PyConAU
Sat Aug 3 13:30:00 2019 at C3.3
What's happening guys, welcome to the fourth episode of CodeThat!
In this ep I try to build a machine learning app to track deadlifts all done using nothing but Python. In this case we used a Scikit-Learn model, mediapipe and Tkinter to get it all done.
Get the Code: https://github.com/nicknochnack/mlapp
Oh, and don't forget to connect with me!
LinkedIn: https://bit.ly/324Epgo
Facebook: https://bit.ly/3mB1sZD
GitHub: https://bit.ly/3mDJllD
Patreon: https://bit.ly/2OCn3UW
Join the Discussion on Discord: https://bit.ly/3dQiZsV
Happy coding!
Nick
P.s. Let me know how you go and drop a comment if you need a hand!
#machinelearning #codingchallenge #tkintertutorial #python
Creating a simple graphical user interface (GUI) that works across multiple platforms can be complicated. But it doesn't have to be that way. You can use Python and the PySimpleGUI package to create nice-looking user interfaces that you and your users will enjoy! PySimpleGUI is a new Python GUI library that has been gaining a lot of interest recently.
Click here to learn more: https://realpython.com/courses..../simplify-gui-dev-py
▶️ Intellipaat's Advanced Certification in Data Science & AI - https://intellipaat.com/advanc....ed-certification-dat
Google Colab is a powerful tool for Python programming that is gaining popularity among data scientists and machine learning enthusiasts. In this video, we'll explore how to use Google Colab for Python programming and how it can enhance your workflow.
First, we'll explain what Google Colab is and how it differs from traditional Python IDEs. Next, we'll dive into some of the advanced features of Google Colab. We'll show you how to install and use external libraries, connect to Google Drive, and utilize hardware acceleration with GPUs and TPUs.
We'll also cover some tips and tricks for working efficiently in Google Colab, such as keyboard shortcuts, code snippets, and collaboration tools.
Throughout the video, we'll provide practical examples of how Google Colab can be used for Python programming. Then we'll walk you through the conclusion.
Whether you're new to Python programming or a seasoned pro, this video will show you how to leverage the power of Google Colab to streamline your workflow and take your coding skills to the next level. So if you're ready to start using Google Colab for Python programming, be sure to check out this video!
🔵 Intellipaat Training courses: https://intellipaat.com/
Intellipaat is a global online professional training provider. We are offering some of the most updated, industry-designed certification training programs which include courses in Big Data, Data Science, Artificial Intelligence, and 150 other top-trending technologies.
We help professionals make the right career decisions, choose trainers with over a decade of industry experience, provide extensive hands-on projects, rigorously evaluate learner progress, and offer industry-recognized certifications. We also assist corporate clients in upskilling their workforce and keeping them in sync with the changing technology and digital landscape.
#GoogleColabForPythonProgramming #GoogleColabTutorialForBeginners #GoogleColaboratory #GoogleColabPython #intellipaat
📌 Do subscribe to Intellipaat channel & get regular updates on videos: https://goo.gl/hhsGWb
👉Following topics are covered in this video:
00:00 - Introduction
01:03 - What is Google Colab?
02:01 - Features of Google Colab
03:50 - Hands-on
11:10 - Conclusion
----------------------------
🔵 Intellipaat Edge
1. 24*7 Lifetime Access & Support
2. Flexible Class Schedule
3. Job Assistance
4. Mentors with +14 yrs
5. Industry-Oriented Courseware
6. Life time free Course Upgrade
------------------------------
🔵 For more information:
Please write us to sales@intellipaat.com or call us at: +91-7847955955
- Website: https://intellipaat.com/
- Facebook: https://www.facebook.com/intellipaato...
- Telegram: https://t.me/s/Learn_with_Intellipaat
- Instagram: https://www.instagram.com/intellipaat
- LinkedIn: https://www.linkedin.com/company/inte...
- Twitter: https://twitter.com/Intellipaat
Hello Guys
In this video i want to show you How we Create a Desktop Application Usign Html , Css , js & Python
Here we use Python for Back-end
so if This Video Got 1000 Likes . I will make Youtube Video Downloader Application in Next video
00:00 Project Setup
00:17 Front-End
00:36 Back-End python (eel)
02:07 Run Project
all Source Code : https://github.com/codeDev911
thanks...
#python #make_a_Desktop_app #python_desktopapp
how to make a desktop app
cSs python
desktop app python
python
cara membuat aplikasi berbasis..
Python html
python windows application
python desktop application
desktop application using python
python desktop app
html css python
python html css
desktop app with python
Python eel
eel python
html css python website
python css
how to make a desktop app
CSS python
how to build a desktop app usin..
Python Eel desktop app tutorial .
Creating Desktop Apps With Py..
H55LJ Vo. H.
How to import external python fil.
Python Eel - Create and Packag..
Rosendale- The King (Sub Espa..
Build Desktop Apps with Python...
Make A Python Website As Fast.
Make python GUl using Html Css..
Make a Music Player With Py tho..
Pyscript|Run Python In Your HTML
Link Python With HTML | Py thon...
Create a website using only HT...
Build The PERFECT Coding Port...
Creating Desktop Apps With Pyt.
How To Create A GUI Based..
Python Program to generate rep..-
Web dev without using Javascrip.
How to add CSS styles to Pytho.
How to create website using HT...
Create simple desktop applicatio.
Using HTML/CSS to style your d..
Python Integer Trick?? #py thon...
ChatGPT Course - Use The Op...
Create responsive header using.
Let's make a Music Player! in ht...
Python Eel GuilHow To Create H..
Hands-COn with Code Llama: Real. .
Create your Desktop App with P..
What's it like being Japanese-Mu.
How to install python 3 on macos
Python vs C/C++ vs Assembly..
Python Desktop App Admin using.
Task management program in Py..
Calculator App fast coding- ASMF
Creating: Amazing CSS Login Fo..
Make Desktop Applications with...
How to Create CSS Button in Tki.
Are Reactions Harming Channels?
Eclipse animation with HTML & C..
How to create python .exe file...
How To Create Modern GUI In P..
How to add a file in Replit
QT Project Builder / Maker With..
ASMR Programming- Space glo...
I Created 3D Racing Game under.
How to make Responsive Table..
Tkinter Beginner Course - Pytho.
ASMR Programming- Plant App (.
Three Css Animation Example ..
Full Stack Project with Vue.js an.
How to solve 'ould not find or I..
Packaging an electronreact-vite.
Interacting With A Web Camera..
How to Create Windows Applica..
Minecraft: Building A Sea Fort
Python Eel GuilHow To Create &.
Run External Python script on cli..
ASMR Proaramming - Calculator..
Source Code - https://www.codewithharry.com/....videos/learn-python-
►Click here to subscribe - https://www.youtube.com/channe....l/UCeVMnSShP_Iviwkkn
Best Hindi Videos For Learning Programming:
►Learn Python In One Video - https://www.youtube.com/watch?v=qHJjMvHLJdg
►Learn JavaScript in One Video - https://www.youtube.com/watch?v=onbBV0uFVpo
►Learn PHP In One Video - https://www.youtube.com/watch?v=xW7ro3lwaCI
►Machine Learning Using Python - https://www.youtube.com/playli....st?list=PLu0W_9lII9a
►Creating & Hosting A Website (Tech Blog) Using Python - https://www.youtube.com/playli....st?list=PLu0W_9lII9a
►Advanced Python Tutorials - https://www.youtube.com/playli....st?list=PLu0W_9lII9a
►Object Oriented Programming In Python - https://www.youtube.com/playli....st?list=PLu0W_9lII9a
►Python Data Science and Big Data Tutorials - https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Follow Me On Social Media
►Website (created using Flask) - https://www.codewithharry.com
►Facebook - https://www.facebook.com/CodeWithHarry
►Instagram - https://www.instagram.com/CodeWithHarry/
►Personal Facebook A/c - https://www.facebook.com/geekyharis
Twitter - https://twitter.com/Haris_Is_Here
✔️ Problem this video solves:- How to deploy #Python script on Azure Function as CRON job?
Are you ready to witness the magic of deploying your Python script as an Azure Function in just 5 minutes? Get ready to experience the thrill of transforming your code into a fully functional serverless solution with this exhilarating tutorial. Let's dive right in and unleash the power of Azure Functions!
✔️ Introduction:
In this fast-paced tutorial, we'll guide you through the exhilarating process of deploying your Python script as an Azure Function. Brace yourself for an adrenaline-filled journey as we show you how to harness the incredible capabilities of Azure Functions, propelling your code to new heights of efficiency and scalability.
You will learn:-
✅ The Power of Azure Functions: Discover the incredible power and potential of Azure Functions in revolutionizing the way you deploy and manage your Python scripts. Get ready to witness how Azure Functions brings agility, scalability, and cost-effectiveness to your development workflow.
✅ Prerequisites and Setup: Before we dive into the deployment process, we'll ensure you have all the requirements in place. We'll guide you through the necessary setup steps, including Azure account creation, tool installations, and project configurations. Get ready to gear up for an extraordinary journey!
✅ Writing Your Python Script: Now, it's time to channel your coding skills and write an awe-inspiring Python script. We'll provide you with valuable tips and tricks to optimize your code for Azure Functions, ensuring seamless integration and maximum performance.
✅ Deploying Your Azure Function: Hold on tight as we take you through the exhilarating process of deploying your Python script as an Azure Function. Step by step, we'll demonstrate how to leverage Azure's intuitive deployment tools to bring your code to life in the serverless world.
✅ Testing and Validation: It's showtime! We'll guide you through testing and validating your deployed Azure Function to ensure it's functioning flawlessly. Watch in awe as your script executes effortlessly, ready to handle any challenge that comes it's way.
************************************************
🚀 Call to Action:
If you're thrilled by the idea of deploying your Python script as an Azure Function in just 5 minutes, don't forget to hit that like button and subscribe to our channel for more adrenaline-fueled tutorials like this one. By subscribing, you'll stay up-to-date with the latest tips, tricks, and cutting-edge techniques for unleashing the true potential of Azure Functions.
Share this mind-blowing video with your fellow developers and coding enthusiasts who are eager to embark on this extraordinary journey. Together, let's build a community of empowered developers, revolutionizing how we deploy and manage code in the serverless era!
************************************************
🚀 How to Create Azure Free Account (Step by Step tutorial)
https://www.youtube.com/watch?v=63M2ztBZh8s&t=322s
🚀 How to deploy Java applications on Azure App service
https://www.youtube.com/watch?v=ZOlJ8bXxVIg&t=0s
🚀 How to deploy Node.js App on Azure App service
https://www.youtube.com/watch?v=9JPga11NGUE&t=3s
🚀 Deploying a React App on Kubernetes
https://www.youtube.com/watch?v=qqOt7jAYVXc
🚀 Currently watching: Deploy Your Python Script as an Azure Function
************************************************
I am a Cloud Enthusiast, a Microsoft Azure Certified Developer, and an open-source contributor.
Book a coffee chat with me: ✅ https://calendly.com/utkarshksharma/15min
Connect with me: ✅ https://www.linkedin.com/in/codewithutkarsh/
GitHub: ✅ https://github.com/codeWithUtkarsh
#AzureFunctions #PythonScriptDeployment #ServerlessComputing #CodingTutorial #OptimizationTechniques #AzureDevelopment
This is a course review of Google's free python course on coursera in which you get a professional certificate as well at the end.
Explore free resource for Interview Preparation here:https://bit.ly/3Ef1z52
Free Python Course by Google: https://www.coursera.org/profe....ssional-certificates
This is called as "IT Automation in Python", it's a 6 course certification in which you learn basics of python to OOP concepts to building various projects using APIs and python modules.
This is a part of Google's Career Certificate Program in which they've made courses in various domains like ux design, it support and automation, program management and data analytics to help you get job ready.
📸 Instagram: https://www.instagram.com/ishansharma7390
Join MarkitUpX Discord Server: https://discord.gg/SqzaqqydhN
Timestamps
0:00 Video starts
0:45 Google Career Certificates
1:35 What you'll learn in the free python course by google
5:02 Sponsored by Coding Ninjas
6:06 Python Projects You'll Build in the Course
8:30 How to get the google certificate for free - Financial Aid on Coursera
9:30 Auditing the course on coursera
10:10 Comment "I watched till the end!"
Start Investing in Crypto with WazirX: https://wazirx.com/invite/874huam9
👉Remote Software Developer Jobs: https://youtu.be/dVoq5vjNI1Y
👉Software Development vs Competitive Coding: https://youtu.be/QBI8mQZWGxE
👉FAANG vs Remote Startup Job: https://youtu.be/HbZK-tNHXW4
👉Best Free Coding Courses: https://youtu.be/zaGwW2vNHlw
👉Real Software Engineer Salary: https://youtu.be/kk-nOnMnvaU
👉How to Get Paid Internships: https://youtu.be/E6tSjmnbGwU
👉7 Ways I Make Money as a 19 Year Old: https://youtu.be/U0CiBPZl9-o
👉15 Ways to Make Money in College: https://youtu.be/bLx5sXZx1hY
👉Lessons I learned in first year of college: https://youtu.be/HAc6hDPMwHw
👉How I Learned to Code: https://youtu.be/qW40nUYEawA?t=72
👉Highest Paying Freelancing Skills: https://youtu.be/i3zNOtoCvB0
👉Web Developer Roadmap: https://www.youtube.com/watch?v=sDyt_RXykp0
👉Android Developer Roadmap: https://www.youtube.com/watch?v=U9z1dWjI7eM
👉Machine Learning Roadmap: https://www.youtube.com/watch?v=flVKdQDfnj0
👉Best Laptops for Programming: https://youtu.be/egMfr4dLNZc
3 Books You Should Read
📈Psychology of Money: https://amzn.to/30wx4bW
👀Subtle Art of Not Giving a F: https://amzn.to/30zwWbP
💼Rework: https://amzn.to/3ALsAuz
Tech I use every day
💻MacBook Air M1: https://amzn.to/2YWKPjG
📺LG 29' Ultrawide Monitor: https://amzn.to/3aG0p5p
🎥Sony ZV1: https://amzn.to/3ANqgDb
🎙Blue Yeti Mic: https://amzn.to/2YYbiNN
⽴Tripod Stand: https://amzn.to/3mVUiQc
🔅Ring Light: https://amzn.to/2YQlzLJ
🎧Marshall Major II Headphone: https://amzn.to/3lLhTDQ
🖱Logitech mouse: https://amzn.to/3p8edOC
💺Green Soul Chair: https://amzn.to/3mWIxZP
🌟 Please leave a LIKE ❤️ and SUBSCRIBE for more AMAZING content! 🌟
🌎 Website: https://ishan7390.github.io
📱 Twitter: https://twitter.com/Ishan739
📝 LinkedIn: https://www.linkedin.com/in/is....han-sharma-28a43418b
📂 GitHub: https://github.com/Ishan7390
📕Buy My Book - Crush It on LinkedIn: https://amzn.to/3on7wVp
✨ Tags ✨
Google Launched a FREE Python Course!🔥(+ FREE Google Certificate)
BEST FREE Coding Courses No One Will Tell You!
Learn to Code For Free
the best free coding courses
free online courses with certificate
coding for beginners
free python courses with certificate
coding courses by google
free coursera courses
✨ Hashtags ✨
#google #freecourse #python