Top videos

How to Build a Complete Python Package Step-by-Step
How to Build a Complete Python Package Step-by-Step 121gamers 1 Views • 2 years ago

👷 Review code better and faster with my 3-Factor Framework: https://arjan.codes/diagnosis.

Do you want to know how to build a complete Python package? Well, look no further! This video will take you step-by-step through the entire process, from creating your project to publishing it on PyPI.

The most popular software licenses available: https://tldrlegal.com/ or https://choosealicense.com/

Check the available classifiers here https://pypi.org/classifiers

Link to Git repository: https://github.com/ArjanCodes/2023-package

🎓 ArjanCodes Courses: https://www.arjancodes.com/courses/

🔖 Chapters:
0:00 Intro
1:10 Code example
3:18 Example use cases
4:31 Setuptools package
7:31 Presenting setup.py
10:38 Building and installing a package
12:27 Introducing PyPI
13:54 Publishing the package on PyPI
16:13 Retrospective
19:57 Outro

#arjancodes #softwaredesign #python

Convert python script to DMG file [MacOS]
Convert python script to DMG file [MacOS] 121gamers 1 Views • 2 years ago

HIGHLY REQUESTED TUTORIAL, ENJOY

discord server:
https://discord.com/invite/2psQXzfu3y
Thanks (for non copyright music):
---------------------------------------------
You & I by Soyb & Amine Maxwell
https://soundcloud.com/soybmusic
https://soundcloud.com/aminemaxwell
Creative Commons — Attribution 3.0 Unported — CC BY 3.0
Free Download / Stream: http://bit.ly/l-you-and-i
Music promoted by Audio Library https://youtu.be/NS71HLgd9q4
---------------------------------------------
Clocks by Smith The Mister https://smiththemister.bandcamp.com
Smith The Mister https://bit.ly/Smith-The-Mister-YT
Free Download / Stream: https://bit.ly/al-clocks
Music promoted by Audio Library https://youtu.be/6MT6-JzUw1w
---------------------------------------------
Thanks for watching!

Docker VSCode Python Tutorial // Run your App in a Container
Docker VSCode Python Tutorial // Run your App in a Container 121gamers 1 Views • 2 years ago

Docker VSCode Python Tutorial to run your application inside a Docker Container. I will show you how to set up your development environment with VSCode, which extensions you need and how debugging works. #Docker #VSCode #Python

DOCS:
https://github.com/christianle....mpa/videos/tree/main

Install WSL2: https://docs.microsoft.com/en-....us/windows/wsl/insta
Install Docker Desktop: https://docs.docker.com/docker....-for-windows/install

WSL2, ZSH, Awesome Terminal!: https://www.youtube.com/watch?v=235G6X5EAvM
Get started with Python: https://www.youtube.com/watch?v=mfdVI19Ri-Q&list=PLj-2elZxVPZ8-DRxQXLsbtxp6dgZCwgur
Get started with Docker: https://www.youtube.com/watch?v=RAaU-Q5LN9s&list=PLj-2elZxVPZ8k8z6a2q6-J79Y-9BUQllW
Get started with DevOps: https://www.youtube.com/watch?v=CQk9AOPh5pw&list=PLj-2elZxVPZ-cuLz6f8Y8xSyKOBu8BSjc


Follow me:

TWITTER: https://twitter.com/christianlempa
INSTAGRAM: https://instagram.com/christianlempa
DISCORD: https://discord.gg/christian-l....empa-s-tech-communit
GITHUB: https://github.com/christianlempa
PATREON: https://www.patreon.com/christianlempa
MY EQUIPMENT: https://kit.co/christianlempa


Timestamps:

00:00 - Introduction
00:52 - Why we need Linux
01:28 - Install WSL2 on Windows 10
03:26 - Install Docker Desktop on Windows 10
04:07 - Install VSCode Extensions
05:05 - Connect VSCode to WSL2
06:10 - A simple Python App Example
08:02 - Generate Docker Files
09:30 - What are these Docker Files?
14:01 - Build and Run our Docker Image
15:12 - How Debugging works
17:47 - What can you do next?


----
All links with "*" are affiliate links.

Django For Everybody - Full Python University Course
Django For Everybody - Full Python University Course 121gamers 1 Views • 2 years ago

This Django tutorial aims to teach everyone the Python Django web development framework.

🔗 Course Website:
https://www.dj4e.com/
💻 Sample Code: https://github.com/csev/dj4e-samples/

✏️ This course was created by Dr. Charles Severance (a.k.a. Dr. Chuck). He is a Professor at the University of Michigan School of Information, where he teaches various technology-oriented courses including programming, database design, and Web development.

⭐️ Course Contents ⭐️
00:00:00 Why Teach Django?
00:07:04 Web Applications and the Request/Response Cycle
00:13:07 Exploring the HyperText Transfer Protocol
00:29:35 Using Sockets to Make Network Connections in Python
00:36:08 Building a Simple Web Browser in Python
00:44:47 Building a Simple HTTP Server in Python
01:00:53 Understanding Browser Developer Mode
01:10:35 The Structure of a Django Application
01:17:39 Installing Django on PythonAnywhere
01:34:32 HTML - HyperText Markup Language (Part 1)
01:40:25 HTML - HyperText Markup Language (Part 2)
01:54:17 Code Walk Through HTML
02:08:14 CSS - Cascading Style Sheets - (Part 1)
02:21:00 CSS - Cascading Style Sheets - (Part 2)
02:36:02 CSS - Cascading Style Sheets - (Part 3)
02:49:41 CSS - Sample Code Walkthrough (Part 1)
03:03:05 CSS - Sample Code Walkthrough (Part 2)
03:28:53 Using GitHub With Django and PythonAnywhere
03:35:48 Using ngrok to Submit Assignments to DJ4E
03:41:53 How Databases Work
04:00:49 Introduction to Structured Query Language (SQL)
04:12:33 Demonstration: Basic SQL
04:19:09 Introduction to Django Models
04:39:06 Data Model Migration in Django
04:47:00 Demonstration: Django Single Table Models
04:58:08 Resetting your Django database on PythonAnywhere
05:03:54 Django Models - Many-To-One Relationships - Music Database
05:18:03 Model View Controller in Django
05:25:09 URL Routing in Django
05:32:08 Django Views
05:38:27 Inside Django Views and HTML Escaping in Django
05:54:02 Using Templates in Django
06:04:07 The Django Template Language (DTL)
06:15:05 Inheritance in Django Templates
06:21:11 Reversing Django Views and URLs
06:34:02 Understanding Django Generic Views
06:50:29 Forms, GET, POST, and HTTP
06:58:48 Building HTML Forms
07:16:28 Forms and Cross Site Request Forgery (CSRF)
07:16:28 CSRF Support in Django
07:25:43 The POST Refresh Pattern
07:29:09 Cookies in Browsers and Django
07:38:51 Using Sessions in Django
07:51:24 One-to-Many Models Overview
07:57:16 Removing Replication in One-to-Many Models
08:05:51 Storing Primary and Foreign Keys in a Database
08:08:37 Representing One-To-Many Models in Django
08:18:33 Using the Django Shell to Explore One-to-Many Models
08:26:17 Loading One-to-Many Data using a Django Batch Script
08:38:32 Creating and Managing Users in Django
08:42:17 Login and Logout URLs in Django
08:49:40 Using Django Login in Views
08:59:55 Using Django Forms Capabilities
09:13:20 Walkthrough of the DJ4E Autos Sample - Generic Django Edit Forms
09:49:30 Data Validation with Django Forms
09:58:42 Exploring the DIY Hello World Django Application on Localhost
10:22:24 Exploring the DIY Hello World Django Application on PythonAnywhere
10:36:38 Virtual Hosting of Django Applications
10:36:38 Owned Rows in Django - Overview
10:42:39 Owned Rows in Django - Generic Views Review
10:52:56 Owned Rows in Django - owner.py
11:05:58 Walking through the DJ4E My Articles (myarts) Sample Code
11:18:26 Walking through the DJ4E Bootstrap Menu (menu) Sample Code
11:48:37 Walking through the DJ4E Crispy Forms (crispy) Sample Code
12:02:57 Many-to-Many Overview
12:08:31 A Simple Many-To-Many Example in Django
12:21:05 Many-To-Many Data Models for Courses and Membership
12:29:42 Building a Django Batch Script to Load Data from CSV
12:46:31 JavaScript - Overview and History
12:56:29 JavaScript - In the Browser
13:10:31 JavaScript - The Language
13:34:28 JavaScript Functions and Arrays
13:34:28 JavaScript Conditional and Loops
13:41:05 JavaScript Object Oriented Concepts
13:45:25 JavaScript Object Oriented Classes
13:58:37 Walking through the DJ4E Pictures (pics) Sample Code
14:31:41 Walking through the DJ4E Forums (forums) Sample Code
14:57:07 jQuery and the Document Object Model
15:09:44 Using jQuery
15:38:16 Walking through the DJ4E jQuery DOM sample code
15:49:29 Walking through the DJ4E jQuery setup sample code
15:57:42 Walking through the DJ4E jQuery events sample code
16:05:59 Walking through the DJ4E jQuery DOM modification
16:10:26 JSON/AJAX Overview
16:24:40 Walking through the DJ4E JSON Sample Code
16:30:41 Building an AJAX Chat with Django
16:40:34 Walking through the DJ4E JSON (chat) Sample Code
16:58:26 Walking through the DJ4E Favicon Sample Code
17:02:36 Walking through the DJ4E Social Login Code
17:11:23 Walking through the DJ4E Favorites (favs) Sample Code
17:41:41 Walking through the DJ4E Search (well) Sample Code
18:03:10 Behind the Scenes: Welcome to Django for Everybody - Why Django?

This course is licensed under CC BY.

PyScript - Run Python in the Browser! THE END of JavaScript???
PyScript - Run Python in the Browser! THE END of JavaScript??? 121gamers 1 Views • 2 years ago

PyScript is a framework that allows users to create Python applications in the browser using HTML. In this video we have a look at it and I show you how it works:

Resources:
- Website:
https://pyscript.net/
- Blog: https://engineering.anaconda.c....om/2022/04/welcome-p
- GitHub: https://github.com/pyscript/pyscript
- WASM in 100 seconds: https://youtu.be/cbB3QEwWMlA

Get my Free NumPy Handbook:
https://www.python-engineer.com/numpybook

✅ Write cleaner code with Sourcery, instant refactoring suggestions in VS Code & PyCharm: https://sourcery.ai/?utm_source=youtube&utm_campaign=pythonengineer *

⭐ Join Our Discord : https://discord.gg/FHMg9tKFSN

📓 ML Notebooks available on Patreon:
https://www.patreon.com/patrickloeber

If you enjoyed this video, please subscribe to the channel:
▶️ : https://www.youtube.com/channe....l/UCbXgNpp0jedKWcQiU

~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~

🖥️ Website: https://www.python-engineer.com
🐦 Twitter - https://twitter.com/patloeber
✉️ Newsletter - https://www.python-engineer.com/newsletter
📸 Instagram - https://www.instagram.com/patloeber
🦾 Discord: https://discord.gg/FHMg9tKFSN
▶️ Subscribe: https://www.youtube.com/channe....l/UCbXgNpp0jedKWcQiU

~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~

🅿 Patreon - https://www.patreon.com/patrickloeber

#Python

----------------------------------------------------------------------------------------------------------
* This is an affiliate link. By clicking on it you will not have any additional costs, instead you will support me and my project. Thank you so much for the support! 🙏

Python Live Chat Room Tutorial Using Flask & SocketIO
Python Live Chat Room Tutorial Using Flask & SocketIO 121gamers 1 Views • 2 years ago

Today, I will be showing you guys how to make a live chat application using Python, Flask & SocketIO! Please keep in mind, this tutorial is not for complete beginners, I recommend having some Python experience.

💻 Finished Code:
https://github.com/techwithtim..../Python-Live-Chat-Ap

💻 Flask Docs: https://flask-socketio.readthe....docs.io/en/latest/ge

💻 Master Blockchain and Web 3.0 development today by using BlockchainExpert: https://algoexpert.io/blockchain - use code "tim" for a discount!

💻 ProgrammingExpert is the best platform to learn how to code and become a software engineer as fast as possible! https://programmingexpert.io/tim - use code "tim" for a discount!

⭐️ Timestamps ⭐️

00:00 | Introduction and Demo
02:03 | Setup/Installation
03:44 | Flask Initialization
09:09 | HTML Templates
15:48 | Home Page - Create/Join Room
24:27 | POST Request, Form Data, Sessions
40:51 | Chat Room
49:40 | Flask - Socket Connecting
56:22 | Flask - Socket Disconnecting
00:00 | JavaScript - Socket Connection
01:06:55 | Sending Messages
01:13:58 | Finishing Touches

◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️
👕 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
- Live Chat Room Tutorial
- Python

⭐️ Hashtags ⭐️
#techwithtim #Chatroom #pythontutorial

Python Developer FREE में बनो | Viral Roadmap | FREE Courses With Certificates
Python Developer FREE में बनो | Viral Roadmap | FREE Courses With Certificates 121gamers 1 Views • 2 years ago

Doston agar apko ek python developer banana hai, ek high paying job pana hai, to aaj mai apko ek kamal ka Complete FREE Roadmap dikhane wala hun, jo kafi famous ho raha hai. aur all skills sikhane ke liye 40+ FREE courses bhi batane wala hun.

Get All 40+ FREE Python Courses:
https://bit.ly/3WapFGI

RoadMap: https://learnermap.com/roadmap-sh/


Let's Connect
📲 Telegram: https://telegram.me/Skillsiya
💻 Skillsiya Learning Portal: https://bit.ly/3yJ7Cyk
📲 Instagram: https://www.instagram.com/skillsiya/
📲 LinkedIn: https://www.linkedin.com/company/skillsiya-com/
---------------------------------------------------------------------------
Learn Complete 2D Animation In Hindi: 🔒https://bit.ly/328HpvJ
(Use Coupon Code, FZ30 To Get an Extra 30% off)

The Complete Motion Graphics Course In Hindi: 🔒https://bit.ly/3z3KFoF
(Use Coupon Code APP20 To Get an Extra 20% off)
-----------------------------------------------------
Thanks for Watching!

✨ Tags ✨


#Python #learnpython #ComputerCourses #Coding

Build A Python GUI App Tutorial
Build A Python GUI App Tutorial 121gamers 1 Views • 2 years ago

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

Learn Visual Studio Code in 7min (Official Beginner Tutorial)
Learn Visual Studio Code in 7min (Official Beginner Tutorial) 121gamers 1 Views • 2 years ago

👀 Follow us on [LinkedIn] 👉 https://aka.ms/LI-YT
------------------------------------------------------------------------------------
Get started from scratch in this short overview of Visual Studio Code & writing / executing JavaScript, Python, previewing HTML and more.

0:00 Intro
0:20 Open folder / Set workspace
0:52 UI Tour
2:00 Create new JavaScript file
2:20 Intellisense
2:55 Save / Autosave
3:25 Create python file
3:45 Add python extension
4:28 Drag & drop external HTML file
5:00 Preview HTML output with Live Preview extension
6:00 Changing themes
6:50 Summary

Host: @ReynaldAdolphe
And TikTok at https://www.tiktok.com/@vscode

#vscode

Docker Tutorial For Beginners - How To Containerize Python Applications
Docker Tutorial For Beginners - How To Containerize Python Applications 121gamers 1 Views • 2 years ago

In this Docker Tutorial I show how to get started with Docker for your Python Scripts and Python Web Apps. We look at two different projects and build Docker Containers for a Python script and for a web application using FastAPI (works the same for Flask). This also demonstrates how to dockerize a virtual environment.

~~~~~~~~~~~~~~ GREAT PLUGINS FOR YOUR CODE EDITOR ~~~~~~~~~~~~~~
✅ Write cleaner code with Sourcery: https://sourcery.ai/?utm_source=youtube&utm_campaign=pythonengineer *

Get my Free NumPy Handbook:
https://www.python-engineer.com/numpybook

⭐ Join Our Discord : https://discord.gg/FHMg9tKFSN

📓 ML Notebooks available on Patreon:
https://www.patreon.com/patrickloeber

If you enjoyed this video, please subscribe to the channel:
▶️ : https://www.youtube.com/channe....l/UCbXgNpp0jedKWcQiU

Timestamps:
00:00 - Introduction
02:42 - Example 1: Python Scripts
09:14 - Example 2: Web App

Resources:
https://www.docker.com/
https://fastapi.tiangolo.com/

Movies Web Scraping Tutorial:
https://youtu.be/FoPPgcpSmNs

FastAPI Tutorial:
https://youtu.be/0RS9W8MtZe4

~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~

🖥️ Website: https://www.python-engineer.com
🐦 Twitter - https://twitter.com/patloeber
✉️ Newsletter - https://www.python-engineer.com/newsletter
📸 Instagram - https://www.instagram.com/patloeber
🦾 Discord: https://discord.gg/FHMg9tKFSN
▶️ Subscribe: https://www.youtube.com/channe....l/UCbXgNpp0jedKWcQiU

~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~

🅿 Patreon - https://www.patreon.com/patrickloeber

Music: https://www.bensound.com/

#Python #docker

----------------------------------------------------------------------------------------------------------
* This is a sponsored or an affiliate link. By clicking on it you will not have any additional costs, instead you will support me and my project. Thank you so much for the support! 🙏

Build A Stock Prediction Web App In Python
Build A Stock Prediction Web App In Python 121gamers 1 Views • 2 years ago

In this tutorial we build a stock prediction web app in Python using streamlit, yahoo finance, and Facebook Prophet

NOTE: Some have trouble installing this on Windows because of pystan: Follow the official docs (
https://facebook.github.io/pro....phet/docs/installati which shows how to install it for Windows and Linux. Or a simpler way would be to use Anaconda and then: conda install -c conda-forge prophet.

Get my Free NumPy Handbook:
https://www.python-engineer.com/numpybook

✅ Write cleaner code with Sourcery, instant refactoring suggestions in VS Code & PyCharm: https://sourcery.ai/?utm_source=youtube&utm_campaign=pythonengineer *

⭐ Join Our Discord : https://discord.gg/FHMg9tKFSN

📓 Notebooks available on Patreon:
https://www.patreon.com/patrickloeber

If you enjoyed this video, please subscribe to the channel!

Code:
https://github.com/patrickloeber/python-fun

Credits:
https://github.com/Conformist1....01/streamlit_stock_p

Streamlit Tutorial: https://youtu.be/Klqn--Mu2pE

Resources:
https://www.streamlit.io/
https://facebook.github.io/prophet/

You can find me here:
Website: https://www.python-engineer.com
Twitter: https://twitter.com/patloeber
GitHub: https://github.com/patrickloeber

#Python

----------------------------------------------------------------------------------------------------------
* This is a sponsored or an affiliate link. By clicking on it you will not have any additional costs, instead you will support me and my project. Thank you so much for the support! 🙏

ಕೋಡಿಂಗ್‌ ರಹಸ್ಯ! | Coding Explained | Programming Language | C++, Java, Python | Masth Magaa | Amar
ಕೋಡಿಂಗ್‌ ರಹಸ್ಯ! | Coding Explained | Programming Language | C++, Java, Python | Masth Magaa | Amar 121gamers 1 Views • 2 years ago

Video Courtesy:

Video by João Adão:
https://www.pexels.com/video/v....ideo-of-person-using

Video by olia danilevich: https://www.pexels.com/video/c....lose-up-view-of-a-pe

Video by olia danilevich: https://www.pexels.com/video/a....-man-using-laptop-49

Video by Ketut Subiyanto: https://www.pexels.com/video/m....an-using-laptop-4629

Video by olia danilevich: https://www.pexels.com/video/m....an-using-a-laptop-49

Video by Joseph Redfield: https://www.pexels.com/video/p....erson-encoding-in-a-

Video by Free Videos: https://www.pexels.com/video/b....lack-and-white-video

Video by cottonbro studio: https://www.pexels.com/video/a....-female-coder-busy-w
Video by Mikhail Nilov: https://www.pexels.com/video/m....en-talking-in-front-

Video by Pressmaster: https://www.pexels.com/video/d....igital-projection-of

Video by Joseph Redfield: https://www.pexels.com/video/p....erson-encoding-in-a-

Video by Tima Miroshnichenko: https://www.pexels.com/video/a....-woman-showing-a-whi

Video by Taryn Elliott: https://www.pexels.com/video/p....erson-walking-outdoo

Video by cottonbro studio: https://www.pexels.com/video/s....ide-view-of-a-young-

Video by Sound On: https://www.pexels.com/video/f....ootage-of-a-man-gets

Video by cottonbro studio: https://www.pexels.com/video/p....eople-coding-on-comp

Video by Kelly: https://www.pexels.com/video/v....ehicle-traveling-on-

Photo by Pixabay: https://www.pexels.com/photo/a....bstract-business-cod

Video by João Adão: https://www.pexels.com/video/v....ideo-of-person-using

Video by Pavel Danilyuk: https://www.pexels.com/video/a....-boy-showing-his-sch

Video by João Adão: https://www.pexels.com/video/a....-human-hand-busy-wor

Video by Joseph Redfield: https://www.pexels.com/video/p....eople-works-on-a-bro

Video by Karolina Grabowska: https://www.pexels.com/video/w....oman-recording-asmr-

Video by RODNAE Productions: https://www.pexels.com/video/w....oman-inserting-card-

Video by Free Videos: https://www.pexels.com/video/t....yping-of-codes-85405

Video by Sora Shimazaki: https://www.pexels.com/video/a....-person-trying-to-ha

Video by cottonbro studio: https://www.pexels.com/video/h....ands-kitchen-cooking

Video by MART PRODUCTION: https://www.pexels.com/video/d....roplets-falling-on-w

Video by Luis Quintero: https://www.pexels.com/video/a....bstract-video-499024

Video by Miguel Á. Padriñán: https://www.pexels.com/video/n....umber-1-on-pink-back

Video by Artem Podrez: https://www.pexels.com/video/p....erson-using-calculat

Video by cottonbro studio: https://www.pexels.com/video/a....-female-coder-busy-w

Video by fauxels: https://www.pexels.com/video/a....-man-having-a-discus

Video by Pavel Danilyuk: https://www.pexels.com/video/a....-person-working-hard

Video by Kevin Alexander Escauriza: https://www.pexels.com/video/d....ifferent-modern-day-
.
.
.
Contact For Advertisement in Our Channel
masthads@gmail.com

..............
.
.
.
.
.
.
#Coding #ProgrammingLanguages #C #C++ #JavaScript #PythonCoding #Programmer #MasthMagaa #AmarPrasad

Google Cloud Platform Flask Python App Deployment
Google Cloud Platform Flask Python App Deployment 121gamers 1 Views • 2 years ago

I walk through how to deploy Python Flask applications to Google Cloud Platform as an alternative to Heroku or AWS for PaaS.
1. Create a new project in Google Cloud console
2. Activate cloud shell button (top right)
3. Clone Google's repo at
https://github.com/GoogleCloud....Platform/python-docs into the project
4. Click on Open Editor (within the Cloud shell)
5. Expand appengine, flexible, hello_world (confirm you can see the .py file for the Flask example)
Note that the file: app.yaml is where you add additional PaaS config settings for GCP
6. In the console, cd to the hello_world dir and run command: gcloud app deploy
7. If you are asked to set PROJECT_ID, run following command: gcloud config set project [PROJECT_NAME]
8. After a few minutes, your project should be live and it will have a link you can go to access your application!

Build your first Python web app with flask and MySQL
Build your first Python web app with flask and MySQL 121gamers 1 Views • 2 years ago

This video explains about building your first web application with flask in python.

Link for how to connect python with MySQL
https://youtu.be/_fu2z-6SbSU

Link for Build your first mobile app in Python
https://youtu.be/l91kXAlsoNs

Link for How to build a Quiz app with Python Tkinter
https://youtu.be/5smq0hCANaE

Link for Display MySQL data in python table :Treeview with horizontal scrollbar
https://youtu.be/CAvgiIAxs_g


Link for text to speech conversion using python
https://youtu.be/3xvRGvXk8bM
For more python videos:
https://www.youtube.com/watch?v=rTzAzObyU9I&list=PLnQuWu4Lsfey9YEl-1SbMs5sJzB0kQY0N

For cryptography related videos:
https://www.youtube.com/watch?v=j3vvxBhlRfg&list=PLnQuWu4Lsfex3NHSR_HlToR83wBx8U-A6

Subscribe for more new videos:
https://www.youtube.com/channe....l/UCDkXQh2zs_BHM7xAy

Website: https://www.trinitysw.com/

Facebook: https://www.facebook.com/trinitysoftwareacademy/

Thanks for your support,
#Trinitysoftware

#flaskpython #flaskmysql

Python Excel App - Excel Viewer & Data Entry Form [Tkinter, openpyxl] Python GUI Project
Python Excel App - Excel Viewer & Data Entry Form [Tkinter, openpyxl] Python GUI Project 121gamers 1 Views • 2 years ago

Build a modern Tkinter GUI project to automate Excel tasks with Python. This Python GUI project works as both a data entry form and an Excel viewer.

In this video, you will:
- Create your first Tkinter application
- Create a modern Tkinter app
- Use a Tkinter theme with ttk
- Create a Tkinter data entry form
- Use the Tkinter Button, ComboBox, Spinbox, Entry, CheckButton
- Style and modify Tkinter widgets
- Use both a dark and a light mode for the app
- Install openpyxl
- Load data from Excel into Python
- Use data entry form to add data into Excel

Theme Github repo:
https://github.com/rdbende/Forest-ttk-theme
Source code repo: https://github.com/codefirstio/tkinter-excel-app

Timestamps:
00:00 Introduction and Overview
01:05 Forest-ttk Theme Overview
01:58 Project folder structure
03:13 Starter code
04:44 Using the theme
05:40 Understanding Tkinter geometry managers
10:16 Creating the Name entry
15:36 Creating the Age spinbox
17:56 Creating the Subscription Status combobox
20:44 Creating the Employment Status checkbutton
22:58 Creating the Insert button
23:34 Updating the padding of the widgets
25:19 Creating the separator
26:15 Creating the Mode switch
27:17 Changing between dark mode and light mode
29:34 Creating the Treeview to display the Excel data
34:21 Installing openpyxl
35:27 Loading data from Excel into the treeview
39:28 Collecting the data from the Insert Row form
42:52 Inserting the data into the Excel sheet and treeview
45:12 Clearing the form after inserting

Socials:
My email: code.first.io@gmail.com
Tiktok: https://www.tiktok.com/@hala.codes

*************
**Tags**
Tkinter tutorial
Tkinter Data Entry
Data Entry form Tkinter
Tkinter install
Tkinter Setup
Tkinter GUI tutorial
GUI tutorial Python
GUI Project Python
Graphical User Interface Python
Python tutorial
openpyxl
openpyxl tutorial
learn openpyxl

Python Microservices Web App (with React, Django, Flask) - Full Course
Python Microservices Web App (with React, Django, Flask) - Full Course 121gamers 1 Views • 2 years ago

Using Python microservices allows you to break up your apps into smaller parts that communicate with each other. This can make it simpler to scale the application based on the traffic. Also, the separation of concerns makes it easier to work on just one part of the app at a time.

💻 Code - Python Microservices:
https://github.com/scalablescr....ipts/python-microser
💻 Code - React: https://github.com/scalablescripts/react-crud

✏️ Course developed by Scalable Scripts. Check out their channel: https://www.youtube.com/watch?v=SzsPe_QX__c

⭐️ Course Contents ⭐️
⌨️ (0:00:00) What are Microservices?
⌨️ (0:02:29) Project Introduction
⌨️ (0:05:29) Django Setup
⌨️ (0:06:31) Adding Docker Files
⌨️ (0:12:32) Connect Django with MySQL with Docker
⌨️ (0:19:12) Models & Serializers
⌨️ (0:23:11) Rest APIs with ViewSets
⌨️ (0:35:07) User Endpoint with APIView
⌨️ (0:37:53) Flask Setup with Docker
⌨️ (0:42:13) Connect Flask with Mysql
⌨️ (0:44:00) Models
⌨️ (0:47:41) Flask Migrations
⌨️ (0:51:44) RabbitMQ
⌨️ (0:52:15) Django Producer and Consumer
⌨️ (0:57:54) Flask Producer and Consumer
⌨️ (0:59:25) Queue Service
⌨️ (1:04:18) Data Consistency
⌨️ (1:14:36) Internal Http Requests
⌨️ (1:18:06) Finishing the python apps
⌨️ (1:25:51) React Setup
⌨️ (1:42:04) Products CRUD
⌨️ (2:08:44) Completing the Main App

⭐️ Special thanks to our Champion supporters! ⭐️
🏆 Loc Do
🏆 Joseph C
🏆 DeezMaster

--

Learn to code for free and get a developer job: https://www.freecodecamp.org

Read hundreds of articles on programming: https://freecodecamp.org/news

Showing 713 out of 714