Top videos
Build Mobile Applcation Like Andriod, iOS Desktop Application For Different OS Such As Windows, Linux , Mac You Can Use Python.
Instead Of Using Flutter And React Native You Can Use Python For Build the Cross Platform Application.
If You Wanna to Learn Flutter From the Beginnning You Can Follow My Flutter Crash Course For Absolute Beginner
Here is the Flutter Playlist: https://www.youtube.com/playli....st?list=PLWyN7K28Zra
You Can Also Follow Me At INSTAGRAM : @knowledge_doctor
Like My Facebook Page: https://www.facebook.com/Knowl....edge-Doctor-Programm
Discord Server: https://discord.gg/RXsWgnBgva
1.Developing Mobile Apps Using Python
2.Cross Platform Mobile Application Development Using Python
3.Python For Mobile Desktop Web Application Development
Learn Python API development in one of the most comprehensive courses ever on the topic. You will build a full-fledged API in Python using FastAPI. You will learn the fundamentals of API design including routes, serialization/deserialization, schema validation, and models. You will also learn about SQL, testing with pytest, and how to build out a CI/CD pipeline using GitHub actions.
💻 Code: https://github.com/Sanjeev-Thi....yagarajan/fastapi-co
✏️ Course from Sanjeev Thiyagarajan. Check out his channel: https://www.youtube.com/channe....l/UC2sYgV-NV6S5_-pqL
⭐️ Course Contents
00:00 Intro
06:33 Project Overview
11:22 Mac Python Installation
13:15 Mac VS Code install and setup
16:37 Windows Python Installation
18:30 Windows VS Code install and setup
22:11 Python virtual Env Basics
24:35 Virtual Env on windows
28:56 Virtual Env on Mac
34:17 Install dependencies w/ pip
36:21 Starting FastAPI
39:23 Path Operations
53:22 Intro toman
57:34 HTTP Requests
1:07:29 Schema Validation with Pydantic
1:22:45 CRUD Operations
1:29:44 Storing in Array
1:34:06 Creating
1:38:15 Postman Collections & saving requests
1:39:47 Retrieve One
1:48:10 Path order Matters
1:52:46 Changing response Status Codes
2:01:49 Deleting
2:10:31 Updating
2:18:02 Automatic Documentation
2:21:34 Python packages
2:24:11 Database Intro
2:28:54 Postgres Windows Install
2:31:28 Postgres Mac Install
2:34:26 Database Schema & Tables
2:44:35 Managing Postgres with PgAdmin GUI
3:12:10 Your first SQL Query
3:19:43 Filter results with "where"
3:22:55 SQL Operators
3:26:38 IN
3:28:07 Pattern matching with LIKE
3:31:59 Ordering Results
3:36:27 LIMIT & OFFSET
3:39:21 Modifying Data
3:53:48 Setup App Database
3:58:21 Connecting to database w/ Python
4:08:00 Database CRUD
4:31:18 ORM intro
4:35:33 SQLALCHEMY setup
4:55:25 Adding CreatedAt Column
5:00:59 Get All
5:07:55 Create
5:15:50 Get by ID
5:19:50 Delete
5:22:31 Update
5:28:21 Pydantic vs ORM Models
5:32:21 Pydantic Models Deep Dive
5:38:57 Response Model
5:50:08 Creating Users Table
5:54:50 User Registration Path Operation
6:03:27 Hashing Passwords
6:08:49 Refractor Hashing Logic
6:10:32 Get User by ID
6:17:13 FastAPI Routers
6:27:34 Router Prefix
6:30:31 Router Tags
6:32:49 JWT Token Basics
6:47:03 Login Process
7:00:44 Creating Token
7:09:58 OAuth2 PasswordRequestForm
7:13:23 Verify user is Logged In
7:25:21 Fixing Bugs
7:27:59 Protecting Routes
7:36:17 Test Expired Token
7:38:13 Fetching User in Protected Routes
7:42:44 Postman advanced Features
7:50:33 SQL Relationship Basics
7:54:59 Postgres Foreign Keys
8:07:20 SQLAlchemy Foreign Keys
8:13:40 Update Schema to include User
8:17:59 Assigning Owner id when creating new
8:21:01 Delete and Update only your own
8:27:48 Only Retrieving Logged in User's
8:33:37 Sqlalchemy Relationships
8:38:32 Query Parameters
8:50:46 Cleanup our main.py file
8:53:53 Env Variables
9:21:20 Vote/Like Theory
9:26:36 Votes Table
9:31:33 Votes Sqlalchemy
9:34:11 Votes Route
9:52:31 SQL Joins
10:15:26 Joins in SqlAlchemy
10:28:21 Get One with Joins
10:30:18 What is a database migration tool
10:33:45 Alembic Setup
11:13:50 Disable SqlAlchemy create Engine
11:14:28 What is CORS?
11:23:38 Git PreReqs
11:27:40 Git Install
11:29:23 Github
11:34:39 Heroku intro
11:35:40 Create Heroku App
11:40:21 Heroku procfile
11:44:59 Adding a Postgres database
11:48:42 Env Variables in Heroku
11:58:59 Alembic migrations on Heroku Postgres instance
12:02:52 Pushing changed to production
12:05:04 Create an Ubuntu VM
12:08:04 Update packages
12:10:47 Install Python
12:12:21 Install Postgres & setup password
12:17:28 Postgres Config
12:24:50 Create new user and setup python evironment
12:34:06 Env Variables
12:42:24 Alembic migrations on production database
12:45:57 Gunicorn
12:54:12 Creating a Systemd service
13:04:45 NGINX
13:10:45 Setting up Domain name
13:15:19 SSL/HTTPS
13:19:31 NGINX enable
13:20:06 Firewall
13:23:47 Pushing code changes to Production
13:26:09 Dockerfile
13:38:39 Docker Compose
13:48:34 Postgres Container
13:56:22 Bind Mounts
14:03:39 Dockerhub
14:08:08 Production vs Development
14:14:51 Testing Intro
14:17:19 Writing your first test
14:30:22 The -s & -v flags
14:31:44 Testing more functions
14:35:29 Parametrize
14:40:21 Testing Classes
14:48:37 Fixtures
14:55:40 Combining Fixtures + Parametrize
14:59:13 Testing Exceptions
15:06:07 FastAPI TestClient
15:14:26 Pytest flags
15:17:31 Test create user
15:25:23 Setup testing database
15:36:47 Create & destroy database after each test
15:44:18 More Fixtures to handle database interaction
15:50:35 Trailing slashes in path
15:53:12 Fixture scope
16:07:50 Test user fixture
16:14:40 Test/validate token
16:18:59 Conftest.py
16:22:09 Testing
17:34:15 CI/CD intro
17:43:29 Github Actions
17:49:32 Creating Jobs
17:57:38 setup python/dependencies/pytest
18:06:14 Env variables
18:11:19 Github Secrets
18:18:14 Testing database
18:23:42 Building Docker images
18:34:33 Deploy to heroku
18:49:10 Failing tests in pipeline
18:52:18 Deploy to Ubuntu
Learn how to build a mobile application completely from scratch using python. Yes, using python we can create amazing cross platform mobile applications for both android & iOS devices. We will be using kivy module to create our app. Also we are going to see how you can convert a python script into a working application. If you want to learn app development using python, then you are in the right place.
Build Realtime App With Python (Updated): https://youtu.be/ORGYmVvUmEY
Why This Course?
- Python App development.
- Using Python to create Mobile Apps.
- How to use Kivy and kivymd.
- How to use buildozer to convert python script.
- Beautiful design in kivy.
- Labels, layouts, images etc.
- Using Python to create Android + iOS Mobile Apps.
- Kivy Basics for groundwork to more advance topics.
- And Many More.
Recourses:
App & Images: https://www.patreon.com/posts/61908105
Source Code 1: https://www.buymeacoffee.com/tech2etc/e/54867
Source Code 2: https://ko-fi.com/s/1bba383e42
Google Colab: https://cutt.ly/jOzOojn
Kivy: https://kivy.org
Code Editor(PyCharm): https://www.jetbrains.com/pycharm
Buildozer: https://buildozer.readthedocs.io
All Source Codes: https://www.buymeacoffee.com/tech2etc
GitHub: https://github.com/tech2etc
⛔❌Do Not CLICK This Link: https://bit.ly/3lJLyLY
Need any help? Join my Discord: https://discord.gg/C58ZQAk2DE
SUPPORT ME:
👕 Merchandise: https://tech2etc.com/merchandise
🎁 Buy Me A Coffee https://www.buymeacoffee.com/tech2etc
🎀 Donate Me By Paypal: https://www.paypal.com/paypalme/tech2etc
How To Make MONEY Online - My 4 Favorite Tricks:
👨💻 Start Freelancing: https://tech2etc.com/fiverrcpa
🛒 Learn Digital Marketing: https://tech2etc.com/digital-marketing
📹 Make Video Editing As Profession: https://tech2etc.com/video-editing
🕔 Next trick will be revealed at the right time.
Free Course to Improve SKILLS & EARN:
1️⃣ WordPress Insider: https://tech2etc.com/wordpress-course
2️⃣ Bootstrap With Projects: https://tech2etc.com/bootstrap
3️⃣ Web Development For Beginners: https://tech2etc.com/webdev
4️⃣ JavaScript With Projects: https://tech2etc.com/javascript
5️⃣ Python With Projects: https://tech2etc.com/python
🎁 Get Certificate: https://courses.tech2etc.com/
Important Links:
📂 Best Hosting: https://tech2etc.com/best-hosting
📂 Best CV Resume: https://tech2etc.com/my-resume
📂 Freelancing Guide: https://tech2etc.com/learn-freelancing
📂 Interview Questions: https://tech2etc.com/?s=interview
DISCLAIMER: This description contains affiliate links. Which means I may receive a small commission on affiliate links used. This helps support the channel and allows us to continue to make videos like this. All content used within the parameters of fair use.
===============================
Connect with me & get daily updates👇
===============================
Discord: https://discord.gg/C58ZQAk2DE
Instagram: https://www.instagram.com/fahimulkabir.tech2etc/
Twitter: https://twitter.com/tech2etc
LinkedIn: https://www.linkedin.com/in/fahimulkabirchowdhury/
Group: https://www.linkedin.com/groups/14295322/
FB (Personal): https://www.facebook.com/mdfahimulkabir
FB Page: https://www.facebook.com/Tech2etc
Timestamps:
0:00 Intro
1:00 What is Kivy?
1:52 Create Project Directory
2:23 Install Kivy
4:03 Start Creating Our App
7:32 First App & Changes
10:20 App Layout
18:21 Functions
25:09 Output screen styling
28:24 Quick Recap of The Whole Program
34:12 Convert Python Script Into Working App
42:22 Download & Share Your App
#python_projects #app_development #python_app
Python is arguably the world's most popular programming language. It is easy to learn, yet suitable in professional software like web applications, data science, and server-side scripts. https://fireship.io/tags/python/
#python #programming #100SecondsOfCode
🔗 Resources
Python Docs https://docs.python.org/3/
Python TIOBE Ranking https://www.infoworld.com/arti....cle/3636789/python-t
🔥 Get More Content - Upgrade to PRO
Upgrade to Fireship PRO at https://fireship.io/pro
Use code lORhwXd2 for 25% off your first payment.
🎨 My Editor Settings
- Atom One Dark
- vscode-icons
- Fira Code Font
🔖 Topics Covered
- Is YouTube built with Python?
- Is Python Strongly typed?
- Python syntax and indentation rules
- When was python released?
Try Anvil: https://anvil.works/codewithharry
This video is sponsored by anvil. I hope you will love the ease you can build pure python web apps using anvil. Try it out and let me know what you think in the comments!
►Checkout my English channel here: https://www.youtube.com/channe....l/UC7btqG2Ww0_2LwuQx
►Instagram: www.instagram.com/codewithharry
python, C, C++, Java, JavaScript and Other Cheetsheets [++]:
Playlist: https://www.youtube.com/playli....st?list=PLu0W_9lII9a
►Learn in One Video[++]:
Python[15 Hr]: https://www.youtube.com/watch?v=gfDE2a7MKjA&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Python Advance[3.5 Hr]: https://www.youtube.com/watch?v=61a7UkDO50s&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Python[1 Hr]: https://www.youtube.com/watch?v=qHJjMvHLJdg&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Python[2 Hr]: https://www.youtube.com/watch?v=ihk_Xglr164&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Python[15 Min]:https://www.youtube.com/watch?v=fr1f84rg4Nw&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
JavaScript[1 Hr]: https://www.youtube.com/watch?v=onbBV0uFVpo&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
C[1.3 Hr]-https://www.youtube.com/watch?v=YXcgD8hRHYY&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
php[1 Hr]: https://www.youtube.com/watch?v=xW7ro3lwaCI&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
php[2.3 Hr]:https://www.youtube.com/watch?v=1SnPKhCdlsU&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
php[Project]- https://www.youtube.com/watch?v=-al2bECumKg&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
HTML[30 Min]:https://www.youtube.com/watch?v=E3ByCRqE7Lo&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
CSS[8.5 Hr]:https://www.youtube.com/watch?v=Edsxf_NBFrw&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
CSS[1.4 Hr]:https://www.youtube.com/watch?v=u5-K_ua9sOw&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Wordpress[3.2 Hr]:https://www.youtube.com/watch?v=GlLRYml8mCY&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Angular[2 Hr]:https://www.youtube.com/watch?v=0LhBvp8qpro&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Java[2.3 Hr]:https://www.youtube.com/watch?v=rV_3Lewxx6o&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Web Scraping[1 Hr]:https://www.youtube.com/watch?v=uufDGjTuq34&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
MongoDB[2 Hr]:https://www.youtube.com/watch?v=oSIv-E60NiU&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Numpy[1 Hr]:https://www.youtube.com/watch?v=Rbh1rieb3zc&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Android Dev[12 Hr]- https://www.youtube.com/watch?v=mXjZQX3UzOs
Linux[1 Hr]:https://www.youtube.com/watch?v=_tCY-c-sPZc&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
JQuery[1.1 Hr]:https://www.youtube.com/watch?v=YFlx1C8XwR0&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
Git and GitHub[1.1 Hr]:https://www.youtube.com/watch?v=gwWKnnCMQ5c&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7
►Complete course [playlist]:
React: https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Python-https://www.youtube.com/playli....st?list=PLu0W_9lII9a
OOP Python-https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Java:https://www.youtube.com/playli....st?list=PLu0W_9lII9a
JavaScript- https://www.youtube.com/playli....st?list=PLu0W_9lII9a
PHP-https://www.youtube.com/playli....st?list=PLu0W_9lII9a
C-https://www.youtube.com/playli....st?list=PLu0W_9lII9a
C++-https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Git & GitHub-https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Android Dev- https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Python GUI- https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Web Development- https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Python Django:https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Projects Using HTML, CSS & Javascript- https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Data Structure and Algo:https://www.youtube.com/playli....st?list=PLu0W_9lII9a
Follow Me On Social Media
►Website (created using Django Rest & Angular): https://www.codewithharry.com
►Facebook: https://www.facebook.com/CodeWithHarry
►Instagram: https://www.instagram.com/codewithharry/
Twitter: https://twitter.com/CodeWithHarry
Comment "#HarryBhai" if you read this 😉😉
Welcome to another video! In this video, I'm going to show you how to create a website using python as fast as possible. We'll be using the flask module which is a web framework for python. This will be a relativly simple and quick video so check the links below for more in depth videos.
💻 Thanks to Altium Designer for sponsoring this video. Checkout the best PCD design software on the market by signing up for a FREE trial here: https://www.altium.com/yt/techwithtim
📄 Resources 📄
Fix Pip (Windows): https://www.youtube.com/watch?v=AdUZArA-kZw&t=204s
Fix Pip (Mac): https://www.youtube.com/watch?v=E-WhAS6qzsU
Flask Tutorial Series: https://www.youtube.com/watch?v=mqhxxeeTbu0&t=46s
Flask Blog: https://www.youtube.com/watch?v=GQcM8wdduLI
Python Website Full Tutorial: https://www.youtube.com/watch?v=dam0GPOAvVI&t=1s
Flask REST API: https://www.youtube.com/watch?v=GMppyAPbLYk&t=769s
⭐️ Timestamps ⭐️
00:00 | Overview
01:53 | Environment Setup
02:39 | Flask Setup
04:28 | Creating Views/Routes
08:18 | Rendering HTML
09:45 | Template Variables
11:09 | URL Parameters
12:52 | Query Parameters
14:03 | Returning JSON
15:20 | Getting JSON Data
16:06 | Redirect
17:49 | Adding JavaScript
22:50 | Template Inheritance
◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️
💰 Courses & Merch 💰
💻 The Fundamentals of Programming w/ Python: https://tech-with-tim.teachabl....e.com/p/the-fundamen
👕 Merchandise: https://teespring.com/stores/t....ech-with-tim-merch-s
🔗 Social Medias 🔗
📸 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 🎬
🎥 Main Camera (EOS Canon 90D): https://amzn.to/3cY23y9
🎥 Secondary Camera (Panasonic Lumix G7): https://amzn.to/3fl2iEV
📹 Main Lens (EFS 24mm f/2.8): https://amzn.to/2Yuol5r
🕹 Tripod: https://amzn.to/3hpSprv
🎤 Main Microphone (Rode NT1): https://amzn.to/2HrZxXc
🎤 Secondary Microphone (Synco Wireless Lapel System): https://amzn.to/3e07Swl
🎤 Third Microphone (Rode NTG4+): https://amzn.to/3oi0v8Z
☀️ Lights: https://amzn.to/2ApeiXr
⌨ Keyboard (Daskeyboard 4Q): https://amzn.to/2YpN5vm
🖱 Mouse (Logitech MX Master): https://amzn.to/2HsmRDN
📸 Webcam (Logitech 1080p Pro): https://amzn.to/2B2IXcQ
📢 Speaker (Beats Pill): https://amzn.to/2XYc5ef
🎧 Headphones (Bose Quiet Comfort 35): https://amzn.to/2MWbl3e
🌞 Lamp (BenQ E-reading Lamp): https://amzn.to/3e0UCr8
🌞 Secondary Lamp (BenQ Screenbar Plus): https://amzn.to/30Dtafi
💻 Monitor (BenQ EX2780Q): https://amzn.to/2HsmUPZ
💻 Monitor (LG Ultrawide 34WN750): https://amzn.to/3dSD7tS
🎙 Mic Boom Arm (Rode PSA 1): https://amzn.to/30EZw9m
🎚 Audio Interface (Focusrite Scarlet 4i4): https://amzn.to/2TjXsih
💸 Donations 💸
💵 One-Time Donations: https://www.paypal.com/donate?....hosted_button_id=CU9
💰 Patreon: https://www.patreon.com/techwithtim
◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️
⭐️ Tags ⭐️
- Tech With Tim
- Python
- Website
- Flask
- JSON
- Altium
⭐️ Hashtags ⭐️
#TechWithTim #PythonWebsite
This beginner Python tutorial is a great place to start if you have never typed any code before. We break down the early topics and build 8 incredible projects in under 1 hour.
Our editor of choice: https://replit.com/~
Need help? Mentors are waiting for you at Hackingtons: https://www.hackingtons.com/
In this video I'm going to teach you Python by working through a project from scratch! A completely new project to me! Hopefully this will make you a lot more confident and help you learn Python. Follow along and comment down below how it worked for you!
Get started with OctoML and Download the CLI for free at: https://try.octoml.ai/Tim
💻 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!
Completed Code: https://github.com/techwithtim/Python-Slot-Machine
⭐️ Timestamps ⭐️
00:00 | Learn Python With One Project
00:54 | OctoML
02:10 | Building The Project
53:45 | Outro
◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️
👕 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
◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️
⭐️ Hashtags ⭐️
#techwithtim #python #learnpython #octoml
HOW I Learned Python in 30 Days? BEST Python Course
A couple years ago, I picked up Python as my first programming language. I learned python using a udemy course by instructor Jose Portilla. In this video, I'm reviewing the course and talk about how I completed the course and learned python in 30 days.
Register for Coding Ninjas Scholarship Test: https://bit.ly/3uPI3u6
(Use Code ISHAAN to get 50% off registration fees)
Complete Python Bootcamp From Zero to Hero in Python: https://bit.ly/3BhSPdM
Python for Machine Learning & Data Science Masterclass: https://bit.ly/3uN7PPw
Tech With Tim Python: https://www.youtube.com/result....s?search_query=tech+
📸 Instagram: https://bit.ly/ishansharma7390ig
Join MarkitUpX Discord Server: https://discord.gg/SqzaqqydhN
Timestamps
0:00 Learning Python
1:00 BEST Python Course?
2:30 Data Structures in Python
3:10 Conditionals and Loops in Python
3:40 Defining Functions in Python
4:30 Sponsored by Coding Ninjas
5:22 Object Oriented Programming in Python
6:20 Error Handling in Python
6:57 Python Modules
7:30 Web Scraping with Python
8:00 PIL Module
8:30 Building Python Projects
11:00 FREE Python Resources
11:40 Machine Learning/Data Science in Python
12:15 Comment "I watched till the end!"
Start Investing in Crypto with WazirX: https://wazirx.com/invite/874huam9
😁 About Me: https://bit.ly/aboutishansharma
📱 Twitter: https://bit.ly/ishansharma7390twt
📝 LinkedIn: https://bit.ly/ishansharma7390li
🌟 Please leave a LIKE ❤️ and SUBSCRIBE for more AMAZING content! 🌟
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
👉Best Free Coding Courses: https://youtu.be/zaGwW2vNHlw
👉Real Software Engineer Salary: https://youtu.be/kk-nOnMnvaU
👉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
👉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
Blockahin Developer Roadmap: https://youtu.be/6SGbc8eJzEY
👉Best Laptops for Programming: https://youtu.be/egMfr4dLNZc
✨ Tags ✨
python
python tutorial
python for beginners
python crash course
python course
python 2022
python tutorial for beginners
python basics
python programming
how to learn coding
how to learn programming
how to teach yourself programming
how to learn to code
how to learn coding for beginners
how to learn to code for beginners
how to code
how to program
how to learn python
learn to code
✨ Hashtags ✨
#python #coding #programming
Learn Tkinter in this full course for beginners. Tkinter is the fastest and easiest way to create the Graphic User Interfaces (GUI applications) with Python. Tkinter comes with Python already, so there's nothing to install!
💻Code: https://github.com/flatplanet/....Intro-To-TKinter-You
🎥Course created by Codemy.com. Check out their YouTube channel: https://www.youtube.com/c/Codemycom
⭐️Course Contents ⭐️
⌨️ (0:00:00) Intro to Tkinter
⌨️ (0:10:32) Positioning With Tkinter's Grid System
⌨️ (0:19:29) Creating Buttons
⌨️ (0:29:30) Creating Input Fields
⌨️ (0:38:51) Build A Simple Calculator App
⌨️ (1:18:19) Using Icons, Images, and Exit Buttons
⌨️ (1:27:42) Build an Image Viewer App
⌨️ (1:49:37) Adding A Status Bar
⌨️ (1:59:45) Adding Frames To Your Program
⌨️ (2:07:49) Radio Buttons
⌨️ (2:24:36) Message Boxes
⌨️ (2:35:31) Create New Windows in tKinter
⌨️ (2:44:30) Open Files Dialog Box
⌨️ (2:56:09) Sliders
⌨️ (3:08:25) Checkboxes
⌨️ (3:17:29) Dropdown Menus
⌨️ (3:23:50) Using Databases
⌨️ (3:32:28) Building Out The GUI for our Database App
⌨️ (3:59:48) Delete A Record From Our Database
⌨️ (4:15:18) Update A Record With SQLite
⌨️ (4:42:57) Build a Weather App
⌨️ (5:04:32) Change Colors In our Weather App
⌨️ (5:16:36) Add Zipcode Lookup Form
⌨️ (5:26:22) Matplotlib Charts
--
Learn to code for free and get a developer job: https://www.freecodecamp.org
Read hundreds of articles on programming: https://freecodecamp.org/news
🔥Full Stack Java Developer Program (Discount Code - YTBE15) - https://www.simplilearn.com/java-full-stack-developer-certification?utm_campaign=p1VF3ja4Ooc&utm_medium=DescriptionFirstFold&utm_source=Youtube
🔥Full Stack Developer - MERN Stack Program (Discount Code - YTBE15) - https://www.simplilearn.com/full-stack-developer-course-mern-certification-training?utm_campaign=p1VF3ja4Ooc&utm_medium=DescriptionFirstFold&utm_source=Youtube
🔥Full Stack Java Developer Program (Discount Code - YTBE15) - https://www.simplilearn.com/java-full-stack-developer-certification?utm_campaign=p1VF3ja4Ooc&utm_medium=DescriptionFirstFold&utm_source=Youtube
In this PHP vs Python tutoriall, we will be looking at all the major differences between the two programming languages. PHP and Python languages, serve different purposes. PHP is widely utilized for web development, and Python is used for performing a series of tasks in software/ web development. However, both these languages have their respective advantages and disadvantages.
00:00 What is the need of PHP
01:18 What is the need of Python
02:00 PHP vs Python
04:30 Key Difference between PHP & Python
07:32 Salary
✅Subscribe to our Channel to learn more about the top Technologies: https://bit.ly/2VT4WtH
⏩ Check out our PHP training videos playlist: https://www.youtube.com/watch?v=KBT2gmAfav4&list=PLEiEAq2VkUUIjP-QLfvICa1TvqTLFvn1b
⏩ Check out our Python training videos playlist: https://www.youtube.com/watch?v=Tm5u97I7OrM&list=PLEiEAq2VkUUKoW1o-A-VEmkoGKSC26i_I
#PHPvsPython #PHPvsPythonForWebDevelopment #PHPvsPythonWhichIsBetter #PHPAndPythonComparision #DifferencesBetweenPHPandPython #PHP #Python #PHPExplained #PythonExplained #Simplilearn
What is PHP?
Despite being an old language, PHP still comprises 79.8% of all web applications that nearly translates to 20 million websites and 2 million web servers. According to zdnet.com, the demand for PHP developers has also massively increased to 834% since January 2020. PHP stands for Hypertext Preprocessor. It is an open-source server-side scripting language used for dynamic web development and can be embedded into HTML codes. Some of the major benefits of using PHP are:
1. It is an open-source language. This means that PHP is freely available to use and implement.
2. It is an easy-to-learn language. Since it is very similar to how HTML codes are written, it is easy to understand and implement.
3. It is highly compatible since it can be integrated with multiple programming languages such as HTML, Javascript and supports different databases like MySQL, PostgreSQL, Oracle, etc.
4. It is platform-independent, which means that applications developed using PHP can run in any environment.
5. It has a large community of developers. Programming is all about helping and being helped; hence a large community would mean more help.
6. It is regularly updated and hence works well with the latest technologies.
7. Moving further, let's look at the differences between PHP and other server-side scripting languages.
To learn more about PHP, check our Full Stack Web Developer program: https://www.simplilearn.com/full-stack-web-developer-mean-stack-certification-training?utm_campaign=PHPvsPython&utm_medium=Description&utm_source=youtube
➡️ About Post Graduate Program In Full Stack Web Development
This program will give you the foundation for building full-stack web apps using the Java programming language. You'll begin with the basics of JavaScript, and then venture into some of the more advanced concepts like Angular, Spring Boot, Hibernate, JSPs, and MVC. Now is the perfect time to get started on your career as a full-stack web developer!
✅ Key Features
- Caltech CTME Post Graduate Certificate
- Enrolment in Simplilearn’s JobAssist
- Receive up to 25 CEUs from Caltech CTME
- Simplilearn's JobAssist helps you get noticed by top hiring companies
- Attend Masterclasses from Caltech CTME instructors
- Live virtual classes led by industry experts, hands-on projects and integrated labs
- Online Convocation by Caltech CTME Program Director
- 20 lesson-end and 5 phase-end projects
- Capstone Project in 4 domains
- Caltech CTME Circle Membership
- Build your own portfolio on GitHub
✅ Skills Covered
- Agile
- JAVA
- Hibernate and JPA
- Spring Core 50
- DevOps
- HTML5 and CSS3
- AWS
- JavaScript ES6
- Servlets
- SOAP and REST
- JSP
In today's episode, we are talking about database programming in Python.
Website: https://www.neuralnine.com/
Instagram: https://www.instagram.com/neuralnine
Twitter: https://twitter.com/neuralnine
GitHub: https://github.com/NeuralNine
Programming Books: https://www.neuralnine.com/books/
Outro Music From: https://www.bensound.com/
Subscribe and Like for more free content!
Today we learn about poetry, which is an all-in-one project and dependency management library for Python.
◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: https://www.neuralnine.com/books/
💻 The Algorithm Bible Book: https://www.neuralnine.com/books/
👕 Programming Merch: https://www.neuralnine.com/shop
🌐 Social Media & Contact 🌐
📱 Website: https://www.neuralnine.com/
📷 Instagram: https://www.instagram.com/neuralnine
🐦 Twitter: https://twitter.com/neuralnine
🤵 LinkedIn: https://www.linkedin.com/company/neuralnine/
📁 GitHub: https://github.com/NeuralNine
🎙 Discord: https://discord.gg/JU4xr8U3dm
🎵 Outro Music From: https://www.bensound.com/
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