Latest videos

Python Interactive Dashboard Development using Streamlit and Plotly
Python Interactive Dashboard Development using Streamlit and Plotly 121gamers 0 Views • 1 year ago

In this video you will learn step by step Python Interactive Dashboard Development using Streamlit and Plotly just like PowerBI and Tableau etc.

Streamlit is a popular Python library used for building interactive web applications and dashboards. It simplifies the process of creating data-driven applications by providing a straightforward and intuitive interface. Here are some key uses of Streamlit in Python dashboards

* Rapid Prototyping:
* Data Visualization:
* User Interaction:
* Integration with Machine Learning Models:
* Sharing and Deployment:

⭐Content⭐

In this video, you will learn: ⚡

1.) Utilizing Streamlit to create interactive plots
2.) Navigating and uploading raw data into the dashboard
3.) Creating titles, headings, headers, or subheaders in Streamlit
4.) Generating segments for plots within Streamlit
5.) Adding a date picker to the dashboard
6.) Handling and transforming data using Python Pandas with Streamlit
7.) Creating a side pane with multiple select filters
8.) Transforming data using Pandas
9.) Visualizing data using Python Plotly and plotting all graphs within the Streamlit environment
10.) Performing Time Series Analysis in Streamlit
11.) Downloading or viewing data based on plots
12.) Creating a hierarchical view of sales using TreeMap
13.) Creating data tables using Plotly Figure_Factory
14.) Applying styles to data within Streamlit
15.) Viewing or downloading data using Streamlit
16.) Performing Data Analysis and Data Visualization using Python Streamlit
17.) Examples...

Overall, Streamlit simplifies the process of creating interactive Python dashboards by providing an intuitive interface, data visualization capabilities, user interaction features, and easy deployment options. It is a powerful tool for data scientists, developers, and anyone looking to showcase data and insights in an engaging and accessible manner.

Pandas and Plotly are powerful libraries that play essential roles in dashboard development.

➖➖➖➖➖➖➖➖ ➖➖➖➖➖➖➖➖
👍 Pandas:
1.) Data Manipulation
2.) Data Cleaning and Preprocessing
3.) Data Integration
4.) Data Transformation

👍 Plotly:
1.) Interactive Data Visualization
2.) Dynamic Updating
3.) Intuitive Interactivity
4.) Dash Integration

In summary, Pandas and Plotly complement each other in dashboard development. Pandas helps with data manipulation, cleaning, and preprocessing, while Plotly enables interactive and visually appealing data visualizations. Together, they empower you to build powerful and insightful dashboards that effectively present and analyze data.
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖

Interactive Web Portfolio using Python Streamlit :
https://youtu.be/rviQtjkxQQY

Raw Data Set : https://community.tableau.com/....s/question/0D54T0000

Streamlit Emoji Icons: https://streamlit-emoji-shortc....odes-streamlit-app-g

Python Streamlit Dashboard Source Code: https://github.com/AbhisheakSa....raswat/PythonStreaml

Python Pandas Tutorial: https://www.youtube.com/watch?v=2NwUfnKhsuU&list=PLWuFHho1zKhUJpe9WfSyvrrQrzqDErbmv

Python Playlist: https://www.youtube.com/playli....st?list=PLWuFHho1zKh

Python Data Structure Playlist: https://www.youtube.com/playli....st?list=PLWuFHho1zKh

Python OOPs Playlist: https://www.youtube.com/playli....st?list=PLWuFHho1zKh

Telegram Link: https://t.me/+32-TodtiOvo2Njk9

➖➖➖➖➖➖➖➖ or ➖➖➖➖➖➖➖➖
👍 Subscribe Now: https://bit.ly/41B5ep2
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖

#python
#programming
#datascience
#machinelearning
#webdevelopment
#code
#developer
#softwareengineering
#opensource
#tutorial
#tech
#coding
#computerprogramming
#pandas
#numpy
#matplotlib
#StreamlitTutorial
#PythonDashboard
#InteractivePlots
#DataVisualization
#StreamlitAndPlotly
#DataAnalysis
#TimeSeriesAnalysis
#PandasTutorial
#PlotlyVisualization
#DataTables
#DashboardDevelopment
#PythonProgramming
#StreamlitExamples
#DataManipulation
#DataFiltering
#DataTransformation
#HierarchicalView
#DataExploration
#DashboardDesign
#StreamlitTips

Writing a Python Script to Control my Lights | Five Minute Python Scripts
Writing a Python Script to Control my Lights | Five Minute Python Scripts 121gamers 0 Views • 1 year ago

Let's automate some lights with python?

Kite helps fund the channel, thanks for checking them out and supporting me --
⭐ Kite is a free AI-powered coding assistant that will help you code faster and smarter. The Kite plugin integrates with all the top editors and IDEs to give you smart completions and documentation while you’re typing. https://www.kite.com/get-kite/?utm_medium=referral&utm_source=youtube&utm_campaign=derricksherrill&utm_content=description-only

Support the Channel on Patreon --
https://www.patreon.com/join/derricksherrill
Join The Socials --
Reddit - https://www.reddit.com/r/CodeWithDerrick/
FB - https://www.facebook.com/CodeWithDerrick/
Insta - https://www.instagram.com/codewithderrick/
Twitter - https://twitter.com/codewithderrick
LinkedIn - https://www.linkedin.com/in/derricksherrill/
GitHub - https://github.com/Derrick-Sherrill
*****************************************************************
Full code from the video:

from phue import Bridge
from ip_address import bridge_ip_address
import time

def access_lights(bridge_ip_address):
b = Bridge(bridge_ip_address)
light_names_list = b.get_light_objects('name')
return light_names_list

def film_lights():
lights = access_lights(bridge_ip_address)
for light in lights:
lights[light].on = True
lights[light].hue = 7000
lights[light].saturation = 100

def danger_mode():
lights = access_lights(bridge_ip_address)
while True:
time.sleep(1)
for light in lights:
lights[light].on = True
lights[light].hue = 180
lights[light].saturation = 100
time.sleep(1)
for light in lights:
lights[light].on = True
lights[light].hue = 7000
lights[light].saturation = 100

if __name__ == '__main__':
film_lights()


Thanks so much for all the continued support! You guys are awesome. Super thankful that I get the opportunity to make youtube videos for you all. I hope you enjoy this one - A bit different than what I typically put out, but just testing to see if it's a style that you all like. Let me know!

https://github.com/Derrick-Sherrill/DerrickSherrill.com/blob/master/hue_lights.py

Packages (& Versions) used in this video:
PHue - https://github.com/studioimaginaire/phue
Time

*****************************************************************
Code from this tutorial and all my others can be found on my GitHub:
https://github.com/Derrick-Sherrill/DerrickSherrill.com

Check out my website:
https://www.derricksherrill.com/

If you liked the video - please hit the like button. It means more than you know. Thanks for watching and thank you for all your support!!

--- Channel FAQ --

What text editor do you use?
Atom - https://atom.io/

What Equipment do you use to film videos?
https://www.amazon.com/shop/derricksherrill

What editing software do you use?
Adobe CC - https://www.adobe.com/creativecloud.html
Premiere Pro for video editing
Photoshop for images
After Effects for animations

Do I have any courses available?
Yes & always working on more!
https://www.udemy.com/user/derrick-sherrill-2/

Where do I get my music?
I get all my music from the copyright free Youtube audio library
https://www.youtube.com/audiolibrary/music?nv=1

Let me know if there's anything else you want answered!

-------------------------

Always looking for suggestions on what video to make next -- leave me a comment with your project! Happy Coding!

Supercharge Your C# Code: Integrating Python using Python.NET
Supercharge Your C# Code: Integrating Python using Python.NET 121gamers 0 Views • 1 year ago

🔥 Ready to bridge the gap between Python and C#? Dive into this comprehensive Python.NET tutorial to unravel the art of seamlessly calling Python code from your C# applications! 🚀

🎯 In this in-depth guide, you'll explore Python.NET, the ultimate toolkit for achieving exceptional interoperability. Gain proficiency in effortlessly calling Python functions from your C# code, opening doors to a world of cross-language integration possibilities. Whether you're a coding expert or a newbie, this step-by-step tutorial equips you with essential skills.

🔗 Experience the magic of Python.NET as I walk you through:
✅ Setting up the Python.NET library – Quick and hassle-free installation
✅ Calling Python functions from C# scripts – With and Without Parameters
✅ Seamless data interchange between Python and C#
✅ Real-world examples and practical use cases


🌟 Elevate your programming prowess by mastering this essential skill! Whether you're developing AI-driven applications, diving into data analysis, or tackling intricate software projects, the Python.NET library empowers you to harmonize Python and C# effortlessly for unmatched outcomes.

🔔 Don't miss this game-changing tutorial that could redefine your coding journey! Hit the Like button, Subscribe for more insightful tutorials, and don't forget to turn on notifications to stay at the forefront of cutting-edge programming techniques.

#PythonNET #dotnet #csharp #softwaredevelopment

How to use Anaconda for Python Programming
How to use Anaconda for Python Programming 121gamers 0 Views • 1 year ago

In this Video I am going to show How to Download and install Anaconda (Python distribution) on your Windows 10 operating system. So what is Anaconda ? Anaconda is a free and open source distribution of the Python and R programming languages for data science and machine learning related applications. It can be installed on Windows, Linux, and MacOS.Conda is an open source, cross-platform, package management system. Anaconda comes with so very nice tools like: JupyterLab, Jupyter Notebook,
QtConsole, Spyder, Glueviz, Orange, Rstudio, Visual Studio Code.

I will also show How to use Jupyter Notebook and How to use Spyder using Anaconda.


#PythonTutorialforBeginners #ProgrammingKnowledge #LearnPython #PythonCourse
★★★Top Online Courses From ProgrammingKnowledge ★★★
Python Programming Course ➡️
http://bit.ly/2vsuMaS ⚫️ http://bit.ly/2GOaeQB
Java Programming Course ➡️ http://bit.ly/2GEfQMf ⚫️ http://bit.ly/2Vvjy4a
Bash Shell Scripting Course ➡️ http://bit.ly/2DBVF0C ⚫️ http://bit.ly/2UM06vF
Linux Command Line Tutorials ➡️ http://bit.ly/2IXuil0 ⚫️ http://bit.ly/2IXukt8
C Programming Course ➡️ http://bit.ly/2GQCiD1 ⚫️ http://bit.ly/2ZGN6ej
C++ Programming Course ➡️ http://bit.ly/2V4oEVJ ⚫️ http://bit.ly/2XMvqMs
PHP Programming Course ➡️ http://bit.ly/2XP71WH ⚫️ http://bit.ly/2vs3od6
Android Development Course ➡️ http://bit.ly/2UHih5H ⚫️ http://bit.ly/2IMhVci
C# Programming Course ➡️ http://bit.ly/2Vr7HEl ⚫️ http://bit.ly/2W6RXTU
JavaFx Programming Course ➡️ http://bit.ly/2XMvZWA ⚫️ http://bit.ly/2V2CoAi
NodeJs Programming Course ➡️ http://bit.ly/2GPg7gA ⚫️ http://bit.ly/2GQYTQ2
Jenkins Course For Developers and DevOps ➡️ http://bit.ly/2Wd4l4W ⚫️ http://bit.ly/2J1B1ug
Scala Programming Tutorial Course ➡️ http://bit.ly/2PysyA4 ⚫️ http://bit.ly/2PCaVj2
Bootstrap Responsive Web Design Tutorial ➡️ http://bit.ly/2DFQ2yC ⚫️ http://bit.ly/2VoJWwH
MongoDB Tutorial Course ➡️ http://bit.ly/2LaCJfP ⚫️ http://bit.ly/2WaI7Ap
QT C++ GUI Tutorial For Beginners ➡️ http://bit.ly/2vwqHSZ

★★★ Online Courses to learn ★★★
Data Science - http://bit.ly/2BB3PV8 | http://bit.ly/2IOrpni
Machine Learning - http://bit.ly/2J2xex1
Artificial Intelligence - http://bit.ly/2AeIHUR | http://bit.ly/2PCCBEb
Data Analytics with R Certification Training- http://bit.ly/2rSKHNP
DevOps Certification Training - http://bit.ly/2T5P6bQ
AWS Architect Certification Training - http://bit.ly/2PRHDeF
Java, J2EE & SOA Certification Training - http://bit.ly/2EKbwMK
AI & Deep Learning with TensorFlow - http://bit.ly/2AeIHUR
Big Data Hadoop Certification Training- http://bit.ly/2ReOl31
AWS Architect Certification Training - http://bit.ly/2EJhXjk
Selenium Certification Training - http://bit.ly/2BFrfZs
Tableau Training & Certification - http://bit.ly/2rODzSK
Linux Administration Certification Training-http://bit.ly/2Gy9GQH

★★★ Follow ★★★
My Website - http://www.codebind.com

DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This help support the channel and allows us to continue to make videos like this. Thank you for the support!

How to Install Python Latest Version on Linux | Complete Installation
How to Install Python Latest Version on Linux | Complete Installation 121gamers 0 Views • 1 year ago

In this video, learn how to download and install Python's Latest Version on Linux. We will also install PIP, which is used to download, install and manage Python packages and libraries.

Python Tutorial (English):
https://youtu.be/HSbyBwmEOQk
Python Tutorial (Hindi): https://youtu.be/b97WsOM9BYg
Python (Study Material): https://studyopedia.com/tutorials/python3
-------------------------------------------------------------------------------------------------------------
👉 Follow me
LinkedIn - https://bit.ly/3C1CY4v
Instagram - https://bit.ly/3z8Fg1d
Telegram - https://bit.ly/3wWBh5i

✔️ Website - https://studyopedia.com
-------------------------------------------------------------------------------------------------------------
► Top Free Video Tutorials
Python Tutorial (English)⭐️ https://youtu.be/HakXpkXcjdI
Python Tutorial (Hindi)⭐️ https://youtu.be/b97WsOM9BYg
Google Colab Tutorial ⭐️ https://youtu.be/iMlMfrXJYSg
Anaconda Tutorial ⭐️ https://youtu.be/ovlID7gefzE
PyCharm Tutorial ⭐️ https://youtu.be/nixcq6mEGWQ
MySQL Tutorial ⭐️ https://youtu.be/fFgdnS1laA0
SQL Tutorial ⭐️ https://youtu.be/7dcYlJcGhqk
VS Code Tutorial ⭐️ https://youtu.be/mK17Tel7dA8
Visual Studio Tutorial ⭐️https://youtu.be/REG-p_eFNIw
HTML Tutorial ⭐️ https://bit.ly/3Ts696N
Bootstrap Tutorial: https://youtu.be/nahewStckVU
VS Code Tutorial: https://youtu.be/mK17Tel7dA8
Visual Studio Tutorial: https://youtu.be/REG-p_eFNIw

► Free Study Material (Downloadable)
Python ⭐️ https://studyopedia.com/tutorials/python3
Numpy ⭐️ https://studyopedia.com/tutorials/numpy
Pandas ⭐️ https://studyopedia.com/tutorials/pandas
Matplotlib ⭐️ https://studyopedia.com/tutorials/matplotlib
Java ⭐️ https://studyopedia.com/tutorials/java
C ⭐️ https://studyopedia.com/tutorials/c-programming
C++ ⭐️ https://studyopedia.com/tutorials/cpp/
Numpy ⭐️ https://studyopedia.com/tutorials/numpy
Android ⭐️ https://studyopedia.com/tutorials/android
HTML5 ⭐️ https://studyopedia.com/tutorials/html5
PHP ⭐️ https://studyopedia.com/tutorials/php
WordPress ⭐️ https://studyopedia.com/tutorials/wordpress
Drupal ⭐️ https://studyopedia.com/tutorials/drupal
Magento ⭐️ https://studyopedia.com/tutorials/magento
Computer Networks ⭐️ https://studyopedia.com/tutorials/computer-networks/
Bootstrap⭐️ https://studyopedia.com/tutorials/bootstrap/

► Free Interview QA
Python🔥https://studyopedia.com/java/java-interview-questions-and-answers
Java 🔥https://studyopedia.com/python3/python-multiple-choice-questions/
Android🔥https://studyopedia.com/android/android-interview-questions/
ReactJS🔥https://studyopedia.com/reactjs/react-interview-questions
Bootstrap 🔥https://studyopedia.com/bootstrap/bootstrap-interview-questions
SQL 🔥https://studyopedia.com/sql/sql-interview-questions
MongoDB 🔥https://studyopedia.com/mongodb/mongodb-interview-questions
MySQL 🔥https://studyopedia.com/mysql/mysql-interview-questions

► Attempt Quizzes
Android Quiz🔥 https://studyopedia.com/android/android-online-quiz/
PHP Quiz 🔥https://studyopedia.com/php/php-online-quiz/
CSS Quiz 🔥https://studyopedia.com/css/css-online-quiz/
jQuery Quiz 🔥https://studyopedia.com/jquery/jquery-online-quiz/
C Quiz 🔥https://studyopedia.com/c/c-online-quiz/
C++ Quiz 🔥https://studyopedia.com/cpp/cpp-online-quiz/
JAVA Quiz 🔥https://studyopedia.com/java/java-online-quiz/
HTML5 Quiz 🔥https://studyopedia.com/html/html5-online-quiz/

👉 About Amit Thinks YouTube Channel
I am Amit Diwan, a self-made Entrepreneur, running "Amit Thinks", a Tech YouTube Channel. Also running an E-Learning website "studyopedia.com". We publish videos in English and Hindi on Programming, Databases, and Web Dev Technologies. I have left a job offer from Accenture and 3 government jobs to follow my dream of being an entrepreneur.

► Subscribe
https://www.youtube.com/@Amit.Thinks/

Build A Stock Prediction Web App In Python
Build A Stock Prediction Web App In Python 121gamers 0 Views • 1 year 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! 🙏

Create a local development server for Python apps with Vagrant, VirtualBox, Salt and Python3
Create a local development server for Python apps with Vagrant, VirtualBox, Salt and Python3 121gamers 0 Views • 1 year ago

Create a local development server for Python apps with Vagrant, VirtualBox, Salt and Python3.

GitHub Code:
https://github.com/LondonAppDe....v/video-tutorial-pyt

Before getting started, here are the requirements to install locally:
Git-SCM: https://git-scm.com/
VirtualBox: https://www.virtualbox.org/
Vagrant: https://www.vagrantup.com/

In this video I'm going to show you how to make a local development server for Python applications using VirtualBox and Vagrant.

So I've created a Vagrant box which I'm going to show you how to clone so that you can get up and running with a local Python development server in a matter of minutes.

00:00 Introduction
00:31 Install VirtualBox from virtualbox.org https://www.virtualbox.org/
00:46 Next install Vagrant https://www.vagrantup.com/
00:51 Install git https://git-scm.com/
01:23 Introduction to the base project we’ll be using called video-tutorial-Python-DRF-intro https://github.com/LondonAppDe....v/video-tutorial-pyt
01:55 Start by cloning the base project
02:10 Go to terminal or command prompt and change to a directory where you’ll want to keep your project files
02:23 Change directory using the CD command and then type git clone and then paste the URL of the repository there.
02:59 To launch server head into the deploy file and type vagrant up and enter.
03:46 From deploy folder type vagrant up to run your server
04:26 Open the project files in your favorite text editor
04:36 Type vagrant up to build a server to the specifications defined in that Vagrant file.
04:57 Type vagrant SSH to connect to your local development server.
06:31 Inside the vagrant.configure statement we define the box.
07:31 Type a local host port 8000 to map to development server.
08:34 Create a new file called HelloWorld.py
09:41 Use a salt provisioner, saltstack to define what you want installed on your server
10:37 Because the salt provisioner uses git, do this manual shell command to install Python git
12:01 Server is set up and we created our hello world file.
12:13 Install virtual env wrapper
14:36 Intro to Installing packages in our virtual environment

Let me know how you get on. If you have any questions at all then please feel free to leave them in the comments and thanks a lot for watching.

Cheers.

Check out my tutorials on http://www.londonappdeveloper.com/

Learn how to build a backend using Python & Django REST Framework: https://www.udemy.com/build-yo....ur-own-backend-using

Setup Python Using Visual Studio Code On Mac | VSCode Python | Python Mac | Python 3
Setup Python Using Visual Studio Code On Mac | VSCode Python | Python Mac | Python 3 121gamers 0 Views • 1 year ago

🚀 Get 100% Off Your First Month with CustomGPT! 🚀

Sign up for a Standard CustomGPT.ai subscription using my referral link and enjoy 100% off your first month. Plus, you'll help support my channel with a 15% commission at no extra cost to you!

🔗 Referral Link:
https://customgpt.ai/?fpr=sonarsystems
🎟️ Coupon Code: AFFILIATEPARTNER Python: https://www.python.org/
VSCode: https://code.visualstudio.com/

Discord: https://discordapp.com/invite/Qn4tSPD

This video has been made with Fair Use in mind and has been created as an educational piece of media.

Like our content and want to support us more directly? Help Us, Help You! https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6DF2Q8TR5FB3E

If you like this stuff, as always, show the love through comments, likes, favorites, subscriptions, etc.

#vscode #python #sonarsystems #snrsys

Our Website
-----------------------------------------------------------------------------------
http://www.sonarsystems.co.uk/
► Tens of thousands of free videos at www.sonarlearning.co.uk
► If you have any questions feel free to post them at http://www.sonarlearning.co.uk/questions.php


Our Social Media
-----------------------------------------------------------------------------------
► Facebook → https://www.facebook.com/pages..../Sonar-Systems/58140
► Twitter → https://twitter.com/SonarSystems
► Donate → https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6DF2Q8TR5FB3E
► Discord → https://discordapp.com/invite/Qn4tSPD


Our games made with love
-----------------------------------------------------------------------------------
► iOS → https://itunes.apple.com/us/ar....tist/sonar-systems/i
► Google Play→ https://play.google.com/store/....apps/developer?id=So


Check out our books:
-----------------------------------------------------------------------------------
► Cocos2d-x → https://www.packtpub.com/game-....development/cocos2d-
► Bootstrap 4 → https://www.packtpub.com/web-d....evelopment/responsiv
► OpenGL → https://www.packtpub.com/game-....development/learn-op

Python for Web Development – Crash Course [API, SQL Databases, Virtual Environment, Flask, Django]
Python for Web Development – Crash Course [API, SQL Databases, Virtual Environment, Flask, Django] 121gamers 0 Views • 1 year ago

Learn the basics of using Python for web development in this crash course. Through a series of short projects, you will learn about a variety of concepts such as APIs, SQL Databases, Virtual Environments & more.

✏️ Course developed by CodeWithTomi. Check out his channel:
https://www.youtube.com/c/CodeWithTomi
🔗 Join CodeWithTomi's Discord Server: https://discord.gg/cjqNBHHhKV
🔗 Twitter: https://twitter.com/TomiTokko3

🔗 Download All Free Resources - https://codewithtomi.eo.page/mz396

⭐️ Course Contents ⭐
️⌨️ (0:00:00) Intro
⌨️ (0:01:15) SQL In Python
⌨️ (0:17:08) APIs In Python
⌨️ (0:26:38) Classes and Objects In Python
⌨️ (0:40:00) Web Scraping In Python
⌨️ (0:49:54) Virtual Environments
⌨️ (0:52:26) Flask Setup
⌨️ (0:58:55) Django Setup
⌨️ (1:04:56) Django Calculator App

🎉 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

Docker Tutorial For Beginners - How To Containerize Python Applications
Docker Tutorial For Beginners - How To Containerize Python Applications 121gamers 0 Views • 1 year 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! 🙏

6 Frameworks de Python para Desktop - Apps Desktop en Python
6 Frameworks de Python para Desktop - Apps Desktop en Python 121gamers 0 Views • 1 year ago

Este es una lista de 6 Frameworks, SDKs y Toolkits de desarrollo de interfaces graficas de usuario desarrolladas en Python, entre estas podemos encontrar a tkinter, PyQT, WxPython, DearPyGUI, Flet y muchas otras.
Este video es a modo informatico para aquellos desarrolladores y programadores de Python que ya estudiaron las bases del lenguaje de programación y ahora quieren crear apps de escritorio con lo que han aprendido.

Articulo con más opciones para crear aplicaciones desktop en Python:
https://faztweb.com/contenido/....python-frameworks-de

🎥 Videos Recomendados:
Curso de React ➜ https://youtu.be/rLoWMU4L_qE
Curso de React Router DOM v6 ➜ https://youtu.be/7xRVnmWcTE8
Excalidraw (Herramienta de dibujo) ➜ https://youtu.be/KjyBL60uFL0

Curso de Nodejs ➜ https://youtu.be/i3OdKwuBjeM
Curso de Express ➜ https://youtu.be/JmJ1WUoUIK4
Curso de JSON ➜ https://youtu.be/LJzDHKPLWYw
Curso de Git ➜ https://youtu.be/HiXLkL42tMU
Variables de entorno Nodejs ➜ https://youtu.be/U6st9-lNUyY
HTML ➜ https://youtu.be/rbuYtrNUxg4
CSS ➜ https://youtu.be/W6GTDfrWjXs
Javascript Orientado a Objetos ➜ https://youtu.be/N_t1A39IB_8
Arrays en Javascript ➜ https://youtu.be/qqR1enOceVg
ES Modules ➜ https://youtu.be/0t-Le4kdaMg

👨‍💻 ¿Qué servicios y productos utilizo?
Ledger (Hardware Wallet) ➞ https://bit.ly/3ijsVNW
SiteGround ➞ https://bit.ly/31u9ZEk
DigitalOcean ➞ https://m.do.co/c/8ef261d77de5
Expo ➞ https://bit.ly/2WpYKtx
Cloudinary ➞ https://bit.ly/3ohNlJ7

#python #pyqt #tkinter

Python Django 7 Hour Course
Python Django 7 Hour Course 121gamers 0 Views • 1 year ago

Build a discord-like application with Python Django. Visit the finished application at https://studybuddev.herokuapp.com/

Get The Full Django Beginners Course:
https://dennisivy.teachable.com/p/django-beginners-course/?product_id=3222835&coupon_code=BRAD
Use promo code BRAD for 50% off

Dennis Ivy YouTube Channel:
https://www.youtube.com/c/dennisivy

Code For This Project:
https://github.com/divanov11/StudyBud/

Timestamps:
00:00 - Intro
1:10 - Product Demo
4:04 - Prerequisites
5:27 - What is Django
12:52 - Resources & Environment Setup
15:59 - Installation & Setup
31:28- Views & URL's
39:55 - Templates
1:04:25 - Database & Admin Panel
1:39:00- CRUD
2:06:22 - Search
2:22:27 - User Login
2:32:25 - Flash Messages
2:39:03- User Logout
2:41:45 - Restricted Pages
2:49:00 - User registration
3:01:25 - Chat Room Messages CRUD
3:27:30 - Activity Feed
3:43:00 - User Profile Page
3:53:25- Static Files
4:02:15 - Theme Installation
5:11:50 - Edit User Account Page
5:35:02 - Mobile Responsiveness
5:53:00 - Django REST Framework
6:25:43 - Customizing User model
6:37:35 - Integrating Custom User Model

Learn Visual Studio Code in 7min (Official Beginner Tutorial)
Learn Visual Studio Code in 7min (Official Beginner Tutorial) 121gamers 0 Views • 1 year 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

Learn Backend Development in 4 Hours | Backend Web Development Full Course
Learn Backend Development in 4 Hours | Backend Web Development Full Course 121gamers 0 Views • 1 year ago

Stay tuned for more content as we continue our journey through the Backend Dev! 🚀 and make sure to explore the upcoming courses at https://sheryians.com/

Instructor in this video: Ankur Prajapati

Socials:
📷 Instagram: https://www.instagram.com/sheryians_c...
📘 Facebook: https://www.facebook.com/sheryians.co...
💌 Telegram: https://t.me/sheryiansCommunity
💼 LinkedIn: https://www.linkedin.com/company/the-...
🎮 Discord: https://discord.gg/Au3TquBarQ
Peace out ✌

#sheryianscodingschool #sheryians #reactjs #mernstack #mern #web #reactjscourse #tutorial #creativewebdevelopment #webdevelopment #functionalwebdevelopment #thebasics #mernstack #jslogic #javascriptlogics

------------------------------------------------------------------------------------------------------------------------------------------------------------

Python Flask Tutorial: Full-Featured Web App Part 1 - Getting Started
Python Flask Tutorial: Full-Featured Web App Part 1 - Getting Started 121gamers 0 Views • 1 year ago

In this Python Flask Tutorial, we will be learning how to get started using the Flask framework. We will install the necessary packages and get a basic Hello World Application running in our browser. Let's get started...

The code for this series can be found at:
https://github.com/CoreyMSchaf....er/code_snippets/tre

Django Tutorials to create this same application:
https://www.youtube.com/playli....st?list=PL-osiE80TeT

Python Installation:
https://youtu.be/YYXdXT2l-Gg

Virtual Environment Setup:
https://youtu.be/N5vscPTWKOk
https://youtu.be/cY2NXB_Tqq0

Sublime Text Setup:
https://youtu.be/xFciV6Ew5r4

If name equals main explanation:
https://youtu.be/sugvnHA7ElY


✅ Support My Channel Through Patreon:
https://www.patreon.com/coreyms

✅ Become a Channel Member:
https://www.youtube.com/channe....l/UCCezIgC97PvUuR4_g

✅ One-Time Contribution Through PayPal:
https://goo.gl/649HFY

✅ Cryptocurrency Donations:
Bitcoin Wallet - 3MPH8oY2EAgbLVy7RBMinwcBntggi7qeG3
Ethereum Wallet - 0x151649418616068fB46C3598083817101d3bCD33
Litecoin Wallet - MPvEBY5fxGkmPQgocfJbxP6EmTo5UUXMot

✅ Corey's Public Amazon Wishlist
http://a.co/inIyro1

✅ Equipment I Use and Books I Recommend:
https://www.amazon.com/shop/coreyschafer

▶️ You Can Find Me On:
My Website - http://coreyms.com/
My Second Channel - https://www.youtube.com/c/coreymschafer
Facebook - https://www.facebook.com/CoreyMSchafer
Twitter - https://twitter.com/CoreyMSchafer
Instagram - https://www.instagram.com/coreymschafer/

#Python #Flask

Is Python Really Needed For a Data Analyst Job?
Is Python Really Needed For a Data Analyst Job? 121gamers 0 Views • 1 year ago

In this video, I will discuss how much Python you should learn for a data analyst job.

Pandas playlist:
https://www.youtube.com/playli....st?list=PLeo1K3hjS3u
Python course: https://codebasics.io/courses/....python-for-beginner-

Do you want to learn technology from me? Check https://codebasics.io/?utm_source=description&utm_medium=yt&utm_campaign=description&utm_id=description for my affordable video courses.

Need help building software or data analytics/AI solutions? My company https://www.atliq.com/ can help. Click on the Contact button on that website.

🎥 Codebasics Hindi channel: https://www.youtube.com/channe....l/UCTmFBhuhMibVoSfYo

#️⃣ Social Media #️⃣
🔗 Discord: https://discord.gg/r42Kbuk
📸 Dhaval's Personal Instagram: https://www.instagram.com/dhavalsays/
📸 Codebasics Instagram: https://www.instagram.com/codebasicshub/
🔊 Facebook: https://www.facebook.com/codebasicshub
📱 Twitter: https://twitter.com/codebasicshub
📝 Linkedin (Personal): https://www.linkedin.com/in/dhavalsays/
📝 Linkedin (Codebasics): https://www.linkedin.com/company/codebasics/
🔗 Patreon: https://www.patreon.com/codeba....sics?fan_landing=tru

How To Code A Keylogger In Python | Programming Tutorial For Beginners
How To Code A Keylogger In Python | Programming Tutorial For Beginners 121gamers 0 Views • 1 year ago

Hey guys!

In today's video, we discuss how to write a keylogger in Python. A keylogger logs all keys on your keyboard and hides in the background. This is a common tool used by hackers for stealing all kinds of information from users without them even knowing. Please don't do this for real! Learning purposes only :D Enjoy!

These projects are available on GitHub at
--------------------------------------------------------------------------------------
https://github.com/ShaunHalverson/PythonKeylogger

Add Me On Discord!
--------------------------------------------------------------------------------------
Username: Shaun(Hashtag)5626

Software Engineering / Programming for beginners / variables types / computer science /compsci / coding for beginners / learn how to program / learn how to code / python variables / python for beginners / coding tutorial / programming tutorial

Want to see more? Click on this spicy link :D
https://www.youtube.com/channe....l/UCDiSrTPJ4xaw8BP3n

Assets in the thumbnail were provided by artists on
https://www.canva.com

All art and copyright ownership belongs to the artists on Canva and is under the protection of the Canva pro membership.

#programming #tutorial #learntocode

Showing 87 out of 88