Flask js

Flask js смотреть последние обновления за сегодня на .

How To Access The JavaScript DOM With Python Flask | Flask Tutorial | SohanPy

15776
384
30
00:07:20
14.02.2021

In this video, I will show you how you can update the JavaScript DOM with your Flask app. Website: 🤍 Text Based Tutorial: 🤍 GitHub Page: 🤍 GitHub Repo: 🤍 Discord Server: 🤍

Integrating CSS and Javascript in Flask Web Framework

21134
415
28
00:11:02
13.06.2021

🤍 Flask Playlist: 🤍 We at iNeuron are happy to announce multiple series of courses. Finally we are covering Big Data, Cloud,AWS,AIops,Business Analytics and MLops. Check out the syllabus below. 30 Days Data Science Interview preparation - 🤍 Big Data Master-🤍 Business analytics-🤍 Aws Cloud Masters- 🤍 AI OPS- 🤍 Please note the duration of the batch will be upto 4-5 months. All the sessions will be live and the recording will be available. To find more info regarding the course please go through the courses. You can fill the below form to reserve your seats 🤍 Incase of any queries you can contact the below number. Happy Learning!! 8788503778 6260726925 9538303385 8660034247 9880055539

Flask and Javascript I js 1

5777
56
0
00:04:42
14.04.2020

Flask Tutorial #9 - Static Files (Custom CSS, Images & Javascript)

138231
1802
148
00:10:47
18.11.2019

This flask tutorial focuses on how to use custom CSS, images and javascript in your HTML files from within a flask app. It discusses how to render and where to place static files so that they work with pythons flask module. Text-Based Tutorial: Coming Soon... Playlist: 🤍 ◾◾◾◾◾ 💻 Enroll in The Fundamentals of Programming w/ Python 🤍 📸 Instagram: 🤍 🌎 Website 🤍 📱 Twitter: 🤍 ⭐ Discord: 🤍 📝 LinkedIn: 🤍 📂 GitHub: 🤍 🔊 Podcast: 🤍 💵 One-Time Donations: 🤍 💰 Patreon: 🤍 ◾◾◾◾◾◾ ⚡ Please leave a LIKE and SUBSCRIBE for more content! ⚡ Tags: - Tech With Tim - Python Tutorials - Flask tutorial python - Python flask - Flask python static images - Flask python static css - Css flask python - Javascript flask #Python #Flask

How to Create a Flask + React Project | Python Backend + React Frontend

184226
3671
220
00:10:50
26.06.2021

Hey guys, welcome back. In this video, I will show you guys how to set up a project with a Flask backend and a React frontend. We will set up a backend API with Python that returns an array of members and in the frontend, we will fetch that backend and display the same members onto the frontend. If you don't know what Flask is, Flask is a Python-based web framework that is used to create web applications. It is a microframework, which means that it does not provide many of the features that larger frameworks do. Flask is designed to be extended and customized, and it can be used for web development in both production and development environments. If you don't know what React is, React is a JavaScript library for building user interfaces. It is maintained by Facebook and Instagram. React's declarative, efficient, and flexible nature make it an ideal choice for building user interfaces. My Website: 🤍 My GitHub: 🤍 Official Flask Documentation: 🤍 Official React Documentation: 🤍 #Coding // #Python // #React // #LearnToCode

Flask SQLite Web Application Step by Step Tutorial - HTML, Jinja, CSS, JavaScript, Python

48236
1422
138
00:41:43
03.02.2022

In this tutorial we will see how to create a web application using Flask and SQLite. Flask is a web framework using Python for the backend, HTML and Jinja for templating, CSS for styling and JavaScript for client side interactions. So today, will not only connect databases to a Flask server - but we will also learn how to use all the perks of this framework. And the crème de la crème? We will deploy our application to production directly from our IDE! 😱😱😱 Speaking of my IDE, I'm using a brand new version of Wayscript, which is now available for the wide public. You can get here: 🤍 ⭐ Clone Complete Groceries App: ⭐ 🤍 ⭐ Clone Starter Files from Wayscript: ⭐ 🤍 ⭐ Deployed Groceries App ⭐ 🤍 ⭐ Clone Starter Files from Github: ⭐ 🤍 ⏰ TIME STAMPS ⏰ - 00:00 - Intro 00:48 - starter files walkthrough 02:31 - connect SQLite database to Flask 04:16 - deploy app to development environment 05:18 - preprocess database data 07:08 - HTML template 08:04 - Jinja2 templating 09:44 - database entries as form options 15:39 - database entries as checkbox elements 18:08 - Flask Session (global data) 24:48 - CSS styling 33:14 - connect JavaScript to Flask 34:46 - JavaScript client side interactions 38:43 - testing the app 39:26 - deploy app to production with Wayscript 41:01 - challenge! 41:17 - thanks for watching! 💻 run Flask locally on Windows machine 💻 - ⭐ navigate to project directory: cd path/to/my_directory ⭐ if the name of your Flask Python file is "my_app.py" set FLASK_APP=my_app set FLASK_ENV=development flask run ⭐ in your browser navigate to: localhost:5000 💻 run Flask locally on Linux machine 💻 - ⭐ navigate to project directory: $ cd path/to/my_directory ⭐ if the name of your Flask Python file is "my_app.py" $ export FLASK_APP=my_app $ export FLASK_ENV=development $ flask run ⭐ in your browser navigate to: localhost:5000 🔗 IMPORTANT LINKS 🔗 - ⭐ Github Logo from tutorial: 🤍 ⭐ my previous Flask tutorial: 🤍 ⭐ my previous SQLite tutorial: 🤍 🙏 THANK YOU 🙏 Thank you so much for watching! 😀 Thank you to Flaticon for the notes icon: 🤍flaticon.com

How to Use Fetch with Flask in JavaScript/Python

5036
33
00:01:14
23.07.2021

In this simple tutorial, I show you how to use the "fetch" function to transfer data between Python and JavaScript with Flask. This tutorial requires minimal Python and JavaScript knowledge. #tutorial #beginner #simple #easy #python #coding #javascript #js #flask

Sending POST requests using AJAX (via JavaScript)to a Python Backend (via Flask)

13534
175
11
00:13:12
12.04.2021

//JavaScript Part// var xml = new XMLHttpRequest(); xml.open("POST","{{url_for('func.func')}}",true); xml.setRequestHeader("Content-type","application/x-www-form-urlencoded"); xml.onload = function(){ var dataReply = JSON.parse(this.responseText); };//endfunction dataSend= JSON.stringify({ 'page_data':'some_data' }); xml.send(dataSend); //Python Part// import os from flask import Flask, Blueprint, jsonify from project import app path_cwd = os.path.dirname(os.path.realpath(file)) path_templates = os.path.join(path_cwd,"templates") path_static = os.path.join(path_cwd,"static") Func = Blueprint('func', name, static_folder=path_static, template_folder=path_templates) 🤍Func.route('/func', methods=['GET','POST']) def func(): dataGet = '' if not request.get_json(force=True) else request.get_json(force=True) dataReply = {'backend_data':'some_data'} return jsonify(dataReply) PAT: 🤍 PP: 🤍 BTC: 3EUQBWZKX9Vcwdffd3cUGATQopxrAQQxJ9 LTC: MBXE6hJgxxFYSD8SjmR7sHCHGTqFXmNGoU GFM: 🤍

Full Stack Project with Vue.js and Flask (Games Library App)

28742
634
63
01:28:43
15.08.2021

This is a Full-Stack project to create a Games Library application using VueJs for the frontend UI and Flask for the backend server and Flask Rest API to connect to the frontend. We are also using Axios to send requests and receive responses, as well as Bootstrap and BootstrapVue for the modals. ⭐⭐⭐ Special Thanks to Michael Hermann who was Ok to let me use his codebase and create this course. ✨Check out Michael on testdriven.io : 🤍 ✨Michael Hermann's Twitter: 🤍 ✨Michael's web site for blogs and articles: 🤍 ✨Michael's GirtHub: 🤍 📅 Project Contents: Introduction [ 00:00 ] App demo [ 06:42 ] Tutorial front and back [ 08:08 ] App testing and outro [1:27:45] 💥Sources Source Code: 🤍 VueJs Website: 🤍 Bootswatch cdn : 🤍 ​​ Axios ( GitHub ): 🤍 🔗Social Media Facebook : 🤍 DEV profile : 🤍 GitHub profile : 🤍 Website : 🤍

Web Data Dashboard with Plotly express and Flask Python and JavaScript

17241
335
42
00:56:38
05.06.2021

Hello guys, in this video, we'll go over plotly express from Python library and learn how to create a flask web dashboard with plotly express, flask, Javascript, bootstrap and HTML/CSS. Lets get started. Ever wonder the difference between Plotly Express and Graph Objects? Learn all about Plotly and how to navigate its documentation so you can create powerful graphs, charts, and plots. An introduction to the Dash web application framework. Dash is used to create browser-based interactive data visualization interfaces with Python. My goal is for you to understand how to use Dash. To open links below... - Plotly - Plotly-express - Flask - Python - AOS JS library - Flask and plotly dashboard - Data science dashboard with python - Bootstrap - Replace plotly-dash AOS JS library: 🤍 Plotly docs: 🤍 source code: 🤍 Introduction to Flask playlist: 🤍 Flask API playlist: 🤍 Channel main page: 🤍 pandas series: 🤍 Seaborn: 🤍 Machine Learning: 🤍 Instagram: 🤍 twitter: 🤍 Channel main page: 🤍 Please like, share and subscribe to this channel for more of such videos

Python & JavaScript Web Development [ Flask & VueJS Full Stack ]

24066
410
20
01:48:17
16.05.2021

Join Django & Django REST Framework Course in Udemy 🤍 In this course we are going to learn about Python & JavaScript Web Development [ Flask & VueJS Full Stack ], we are going to build our backend rest api in Flask and after that we integrate that with VueJS. Join My Skillshare Courses 🤍 Support my works on Patreon: 🤍 Table of Content For Flask & VueJS Full Stack 1: Course Introduction = 00:00:00 2: Flask Installation = 00:02:48 3: Creating Flask Application = 00:05:54 4: Flask SQLAlchemy Setup = 00:10:08 5: Creating Routes = 00:16:47 6: VueJS Installation = 00:34:19 7: VueJs Navbar = 00:39:35 8: VueJS Routers = 00:44:42 9: VueJS & Flask Fetching Data = 00:56:09 10:VueJS & Flask Fetching Details = 01:05:56 11:VueJS & Flask Adding Data = 01:17:26 12:VueJS & Flask Deleting Data = 01:28:24 Python & JavaScript Web Development [ Flask & VueJS Full Stack ] Python & JavaScript Web Development Flask & VueJS Full Stack Python Flask JavaScript #Flask#VueJS#FullStack

Flask Tutorial | Using #JavaScript in Flask | Python | Lets Compete

288
2
2
00:05:24
22.03.2020

This video gonna answer one popular question "how to use javascript in #flask application". We all know that web applications are no longer without Javascript. Flask framework also lets you use Javascript and you will learn it in this video. #coding #python #flasktutorial Facebook: 🤍 Twitter: 🤍 Instagram: 🤍 Disclaimer: It doesn't feel good to have a disclaimer in every video but this is how the world is right now. All videos are for educational purposes and use them wisely. Any video may have a slight mistake, please take decisions based on your research. This video is not forcing anything on you. Contact: If you’d like to talk, I’d love to hear from you. Tweeting 🤍itguy2823 directly will be the quickest way to hear a response from me, but if your question is very long, feel free to email me at programmingwithgopi🤍gmail.com. I try my best to reply to things ASAP.

Flask & the Fetch API (AJAX?) - Python on the web - Learning Flask Series Pt. 10

51545
1101
72
00:19:00
12.02.2019

In this episode, you'll learn how to use the Fetch API to make asynchronous requests from the client to your Flask app. An upgrade to the AJAX JavaScript API. Enjoying this type of content? Head over to my website at 🤍 for full length text based tutorials, courses and guides. Want to help me make even better content? You can by supporting me on Patreon! 🤍

How to Use CSS Javascript and Images With Flask Static Files - Flask Fridays #7

23920
540
71
00:12:19
26.02.2021

In this video I'll show you the correct way to use CSS, Javascript, and Images in your Flask app using the Static directory and url_for() tag. To use CSS, Javascript, and Images in your flask app, you need to create a static directory. Inside that directory, create directories for css, js, and images. Then inside each of those directories, place your css, javascript, and image files. Then, to access any of those things, use the url_for tag like this: {{ url_for('static', filename='images/image.png' }} ...as the src for whatever file you're tying to call. Timecodes 0:00​ - Introduction 1:25 - Create Static Directory 2:28 - Create CSS Stylesheet File 3:49 - Add CSS Static url_for() Tag To Base.html 6:38 - Add Image Static url_for() Tag 7:44 - Create Javascript File 9:06 - Add Javascript Static url_for() Tag 10:12 - Change Javascript CSS Style 11:15 - Conclusion

How to add graphs EASILY to your Flask apps!

46941
801
62
00:10:36
05.02.2021

In this video, learn how to add graphs to your HTML templates using Flask and Chart.js. It's really easy, especially if you split the labels (x-ticks) and values (plotted graph) into two lists! Links 🐍 Our Complete Python Web Course: 🤍 ✅ Subscribe to the channel: 🤍 ✅ Our Discord server: 🤍 ✅ Instagram: 🤍

Python Flask Vue Tutorial 🔥: TODO app with Flask and Vue.js | Python Flask Tutorial

13472
254
45
01:18:17
22.08.2021

This Python Flask Vue Tutorial is about creating a full stack TODO app using Flask and Vue.js. In this Flask and Vue project I used Flask 2 and Vue.js 3. It's new Python Flask Tutorial, that takes into account changes in Flask 2. What is this Python Flask and Vue tutorial about? This Flask and Vue.js project is a fully Flask CRUD TODO-list app. A user can input a task into HTML form, click on a button and the task is added to the list of tasks. The user can also delete a task and edit it. All UI interactions are handled by Vue.js, that sends requests to Python Flask with the fetch() function. In this Python Flask and Vue tutorial I used Vue.js 3, SQLAlchemy as ORM for SQLite database. Follow me 🤍: Telegram: 🤍 Twitter: 🤍 Facebook: 🤍 = 📎 Source code of the Flask Vue project is available via Patreon = 🤍 Timecodes: 0:00:00 - demo of this Python Flask and Vue.js project 0:03:36 - basic Python Flask 2 app 0:04:38 - using of Flask templates 0:07:16 - adding Bootstrap css 0:07:37 - adding local static files 0:10:12 - adding Vue.js 3 script 0:13:10 - basic HTML layout of this Flask and Vue project 0:18:28 - creating Vue.js object 0:26:49 - installing SQLAlchemy 0:32:41 - creating Task model for the Flask Vue.js app 0:37:03 - creating a Table in a database 0:38:15 - creating tasks from Python shell 0:40:44 - fetching tasks from Flask and displaying to a User 0:46:55 - sending a request from Vue.js to Flask to get tasks 0:52:19 - creating a form for validation User's data 1:04:46 - code refactoring 1:08:35 - delete task (Flask and Vue) 1:13:40 - complete a task (Flask and Vue) ► Python Flask Tutorial: 🤍 ➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥ Red Eyed Coder Club is the best place to learn Python programming: Subscribe ⇢ 🤍 Python Flask and Vue Tutorial 🔥: TODO app with Flask and Vue.js | Python Flask Tutorial 2021 🤍 #flask #flaskandvue #flaskvue #flaskandvue.js #flaskvue.js #pythonflaskvue #pythonflaskvuetutorial #redeyedcoderclub

🔴 Python Flask & REACT.JS Full Stack (Python Back-end React Front-end)

52543
820
30
01:51:55
21.05.2021

Join Django & Django REST Framework Course in Udemy 🤍 Welcome to my new course one Python Flask & REACT.JS Full Stack (Python Back-end React Front-end), in this course we are going to learn how you can created your Back-end API in flask and integrate that with React front-end. Join My Skillshare Courses 🤍 Support my works on Patreon: 🤍 Table of Content: 1: Course Introduction = 00:00:00 2: Flask Installation = 00:02:08 3: Creating Flask Application = 00:05:15 4: Flask SQLAlchemy Setup = 00:09:28 5: Creating Routes = 00:16:07 6: RactJS Installation = 00:33:38 7: Fetching Data = 00:38:07 8: Updating Data = 00:59:26 9: Inserting Data = 01:32:29 10:Deleting Data = 01:43:52 Unlock the source code by becoming Patreon 🤍 My Affiliate Books: Building REST APIs with Flask 🤍 Modern JavaScript 🤍 More Courses on Python & JavaScript Full Stack : Flask Crash Course For Beginners (4 Hours) 🤍 Flask and VueJS Full Stack Course 🤍 Django and ReactJS Full Stack Course ( 7 Hours) 🤍 Django and VueJS Full Stack Course ( 5 Hours ) 🤍 Django and React Native Creating Mobile Application ( 4 Hours) 🤍 Check my website 🤍 Python Flask & REACT.JS Full Stack (Python Back-end React Front-end) Python Flask REACT.JS Python Back-end React Front-end

Creando una api de backend para nuestra aplicación de gastos - Javascript - Flask - Python

4582
196
17
00:33:18
16.02.2021

Grupo de difusión de telegram: 🤍 En este vídeo crearemos continuaremos con nuestro curso de javascript en que podras aprender a programar en python y javascript para principiantes y asi poder crear una aplicacion web desde cero. Videos que considero importantes: PARA ENTENDER TODO DE LAS APIS: Entendiendo las apis: 🤍 Entendiendo las diferencias entre api rest y api: 🤍 Creando una api flask 🤍 Como funciona JSON: 🤍

เรียนรู้การใช้งาน Chart.js ร่วมกันกับ Flask Python Web Framework สำหรับการทำ Dashboard

2828
74
5
00:20:56
24.10.2020

ในคลิปนี้จะเป็นการประยุกต์ใช้งาน Chart.js ร่วมกันกับ Flask ครับ โดย Chart.js เป็นไลบรารี่ของ JavaScript ที่ได้รับความนิยมอย่างสูงในการทำ Chart รูปแบบต่าง ๆ และเหมาะกับงาน Data Visualization เลยทีเดียวครับ โดยที่แทบจะไม่ต้องลงแรงเขียนโค้ดอะไรมากมายโดยเพียงแค่โมดิฟายนิดหน่อยครับ นอกจากนี้เรายังสามารถนำความรู้เรื่องนี้ไปใช้ทำ Dashboard เกี่ยวกับงาน IoT หรืองาน Monitoring ต่าง ๆ ได้เป็นอย่างดี ในการดึงข้อมูลจาก Database แล้วนำมาแสดงผลในรูปแบบ Dashboard สำหรับท่านใดที่ยังไม่เคยเรียน Flask และยังไม่รู้จะสร้างโปรเจคท์ยังไง ดูได้ที่คลิปนี้ได้เลยครับ สามารถสร้างโปรเจคท์ Flask ในไม่ถึง 3 นาที และผมได้นำโค้ดจากคลิปตัวนี้มาเขียนต่อเลยครับ 🤍 Links Chart.js Document 🤍 Chart.js GitHub 🤍 Chart.js CDN 🤍 Bootstrap CDN 🤍 Flask Python Micro Web Framework Document 🤍 ลิ้งค์ศึกษา Flask เพิ่มเติม Python Flask — Ep.1 เรียนรู้ Flask Framework และเริ่มต้นสร้างโปรเจคท์ 🤍 Python Flask — Ep.2 เรียนรู้ Flask Framework — Static, Templates, HTML และ CSS 🤍 ทำ API ด้วยไพธอนง่ายนิดเดียว โดยใช้ Flask (ที่เหลือยากหมด) Ep.1 🤍 Python Flask with NGROK(Guideline Series before 101 Official Series) 🤍 Flask Crash Course 🤍

Bundling JavaScript and CSS Files in Flask Using Flask-Assets

28668
416
30
00:10:16
25.07.2016

In this video, you'll learn how to use Flask-Assets to organize and bundle your static resources. Any non-trival app will probably have multiple JavaScript files and CSS files, so Flask-Assets is a great way of combining them to reduce the number of requests your pages have to make to load all the assets. Need one-on-one help with your project? I can help through my coaching program. Learn more here: 🤍 Join my free course on the basics of Flask-SQLAlchemy: 🤍 Click here to get the Flask cheat sheet: 🤍

I built the same app 3 times | Which Python Framework is best? Django vs Flask vs FastAPI

512034
12274
415
00:16:42
20.02.2022

I built the same app 3 times with 3 different Python web framework. Which one is best? Django vs Flask vs FastAPI. Get my Free NumPy Handbook: 🤍 Code: 🤍 ✅ Write cleaner code with Sourcery, instant refactoring suggestions in VS Code & PyCharm: 🤍 * ⭐ Join Our Discord : 🤍 📓 ML Notebooks available on Patreon: 🤍 If you enjoyed this video, please subscribe to the channel: ▶️ : 🤍 Inspired by Fireship's JS framework video: 🤍 ~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~ 🖥️ Website: 🤍 🐦 Twitter - 🤍 ✉️ Newsletter - 🤍 📸 Instagram - 🤍 🦾 Discord: 🤍 ▶️ Subscribe: 🤍 ~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~ 🅿 Patreon - 🤍 #Python Timeline: 00:00 - Introduction 01:30 - Flask 05:05 - FastAPI 10:53 - Django * 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! 🙏

Flask and d3.js I: Introducing the SVG

2298
24
0
00:04:04
24.04.2020

Basic introduction to the SVG in HTML and interacting with this to create basic geometries with d3.js.

Connecting a Front End to MetaMask Applications | Flask and JS Tutorial

1618
50
14
00:28:51
10.06.2022

#ethereum #metamask #python #html In this super interesting and interactive video, we check out how to add a front end, using HTML and Flask, to a MetaMask integrated application, to connect your MetaMask account and show the address, as well as getting the balance and printing it on our webserver. Enjoy :D - ✨LINKS✨ 📕 Documentation: 🤍 💻 GitHub: 🤍 🐦 Twitter: 🤍 🛄 LinkedIn: 🤍 - ✨CHAPTERS✨ Coming Soon! - ✨RELATED VIDEOS✨ 🌶 Flask : 🤍 🦊 MetaMask & Python: 🤍

Python Flask Dashboard: Plotting Dashboard Graphs Using Chart.js

34643
408
46
00:34:49
07.04.2021

In this Python Flask Tutorial, we will be learning to query the our model and obtain with which we'll plot the graphs in the dashboard using chartjs, a JavaScript library. We'll use HTML, CSS and bootstrap along side Python as usual. We'll learn how to query an SQL lite database in Flask and loop through the result of the queries. Lets get started.... #Python #Flask #Flaskslqalchemy #FlaskDatabase #FlaskModels #Chartjs #JavaScript Github link: 🤍 Channel main page: 🤍 pandas series: 🤍 Seaborn: 🤍 Machine Learning: 🤍 Instagram: 🤍 twitter: 🤍 Channel main page: 🤍 👉 Subscribe to our channel 👉 Share to your friends 👉 Like our videos 👍 👉 Click the notification bell for more such content🖐🔔 Please like, share and subscribe to this channel for more of such videos

Python Website Full Tutorial - Flask, Authentication, Databases & More

1937635
42398
1847
02:16:40
01.02.2021

In this video, I'm going to be showing you how to make a website with Python, covering Flask, authentication, databases, and more. The goal of this video is to give you what you need to make a finished product that you can tweak, and turn into anything you like. We're going to also go over how you create a new user's account, how you store those in a database, how to log into those user accounts, how to log out of them, and how you associate that information with a specific user. 🔥 Sign up for a FREE TypingDNA Developer Account! 🤍 Try the TypingDNA Demo: 🤍 📝 Code for this tutorial: 🤍 📺 Fix Pip on Windows: 🤍 📺 Fix Pip on Mac: 🤍 ⭐️ Timestamps ⭐️ 00:00:00 | Video Overview 00:01:50 | Project Demo 00:04:35 | Directory Structure 00:06:40 | Flask Setup & Installation 00:08:55 | Creating a Flask App 00:14:01 | Creating Routes/Views 00:21:50 | Jinja Templating Language & HTML Templates 00:47:22 | Sign Up Page HTML 00:52:14 | Login Page HTML 00:54:31 | HTTP Requests (POST, GET, etc.) 00:57:05 | Handling POST Requests 01:03:14 | Message Flashing 01:12:42 | Flask SQLAlchemy Setup 01:15:46 | Database Models 01:23:42 | Foreign Key Relationships 01:29:10 | Database Creation 01:34:14 | Creating New User Accounts 01:43:16 | Logging In Users 01:49:17 | Flask Login Module 01:56:03 | Checking if User is Logged In 01:58:54 | Notes HTML 02:02:41 | Adding User Notes 02:05:48 | Deleting User Notes ◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️ 💰 Courses & Merch 💰 💻 The Fundamentals of Programming w/ Python: 🤍 👕 Merchandise: 🤍 🔗 Social Medias 🔗 📸 Instagram: 🤍 📱 Twitter: 🤍 ⭐ Discord: 🤍 📝 LinkedIn: 🤍 🌎 Website: 🤍 📂 GitHub: 🤍 🔊 Podcast: 🤍 🎬 My YouTube Gear 🎬 🎥 Main Camera (EOS Canon 90D): 🤍 🎥 Secondary Camera (Panasonic Lumix G7): 🤍 📹 Main Lens (EFS 24mm f/2.8): 🤍 🕹 Tripod: 🤍 🎤 Main Microphone (Rode NT1): 🤍 🎤 Secondary Microphone (Synco Wireless Lapel System): 🤍 🎤 Third Microphone (Rode NTG4+): 🤍 ☀️ Lights: 🤍 ⌨ Keyboard (Daskeyboard 4Q): 🤍 🖱 Mouse (Logitech MX Master): 🤍 📸 Webcam (Logitech 1080p Pro): 🤍 📢 Speaker (Beats Pill): 🤍 🎧 Headphones (Bose Quiet Comfort 35): 🤍 🌞 Lamp (BenQ E-reading Lamp): 🤍 🌞 Secondary Lamp (BenQ Screenbar Plus): 🤍 💻 Monitor (BenQ EX2780Q): 🤍 💻 Monitor (LG Ultrawide 34WN750): 🤍 🎙 Mic Boom Arm (Rode PSA 1): 🤍 🎚 Audio Interface (Focusrite Scarlet 4i4): 🤍 💸 Donations 💸 💵 One-Time Donations: 🤍 💰 Patreon: 🤍 ◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️ ⭐️ Tags ⭐️ - Build a website - Python tutorial - Flask - Learn Python - How to use Python - HTTP requests - HTML Python - User accounts Python ⭐️ Hashtags ⭐️ #PythonWebsite #TechWithTim

Flask jsonify: Send JSON data

1963
24
0
00:07:41
10.02.2022

Learn how to send requests from your Flask application in JSON format. JSON is the data format for sending information across the web. To respond to outside requests, your Flask app needs to response with data in JSON format. Check out this video explaining how. $$$$$$$$$ #flask #json #jsonify #javascriptobjectnotation #python #webdev #cash #money #community #software $$$$$$$$$ 🤍 $$$$$$$$$ Subscribe to our newsletter to learn more about money and making software. 🤍 We are a money club focused on creating community around smart money strategies and making software to help you make money. See what we are building and let us know what you think! 🤍

Serving HTML, CSS and JavaScript Files in Flask | Flask Series - Ep02

610
13
4
00:10:02
25.08.2021

In this episode we have discussed how to serve HTML, CSS and JavaScript files in Flask and also learned how to connect all these files. In this Flask series we will learn about Flask concepts by building projects and we will also deploy it over cloud. 🎁 Code Link : 🤍 🔍 Playlist : 🤍 ⭐ Visit to our platform ⭐ 🤍 ⭐ Join for discussions and doubts ⭐ Discord Server : 🤍 🔗 Social Media 🔗 LinkedIn : 🤍 Discord : 🤍 Instagram : 🤍 Facebook : 🤍 Twitter : 🤍 Telegram: 🤍 ⭐️ Tags ⭐️ - Python - Flask - Programming - Flask Projects

Flask & React JS using CORS,API building in Python Flask, Mysql Database, API tesing using Postman,

2306
27
1
00:18:47
24.09.2021

In this video we will be using Python Flask as a backend service to create API's and the data will be displayed on the frontend using React Js library. As our backend server and frontend is running on different ports so we wil be using the CORS library of flask to make the API accessible on different ports. Notifications in React using React - Toast, React Table V6 for displaying JSON data. CRUD operations using Flask API on the MySql database with the data fetching in frontend. Softwares used : 1) Anaconda - Flask, MysqlClient, SqlAlchemy, etc 2) Node JS - React JS - React State Hooks 3) XAMPP - Apache, MySql, Phpmyadmin Steps to run : a) Backend 1) Create a new environment in Anaconda and install all the required libraries 2) Copy all the files and run the command in terminal : python app.py 3) python server will be running on http://localhost:5000 b)Frontend 1) Create a new react app 2) Copy all the files and components give the command : npm install to install the libraries in node modules or install required library individually. 3) Enter the command : npm start to start the frontend server, it will be available on http://localhost:3000 by default. Github Link : 🤍

Why Flask is the Best Web Framework #shorts

5695
207
3
00:00:46
12.07.2022

Why Flask is the Best Web Framework #shorts Subscribe: 🤍 On this channel we focus on all things Python. Whether it is a project tutorial/showcase, teaching different Python concepts, or just live coding this is one of the best channels for programmers. Check out my links down below and think about supporting my content on Patreon and joining the discord👇 Links: Patreon: 🤍 Join the discord: 🤍 Github: 🤍

How to Call a Flask API in React

102131
1506
80
00:21:11
09.05.2019

Learn how to build a React frontend that gets data from a Flask API. Code: 🤍 Watch Anthony's video first: 🤍 If you like cooking, checkout my side project: 🤍 Join the Discord: 🤍 Patreon: 🤍 Follow Me Online Here: Twitch: 🤍 GitHub: 🤍 LinkedIn: 🤍 Instagram: 🤍 Twitter: 🤍 #benawad TikTok: 🤍 ​ ​ Follow me online: 🤍 #benawad

Web Microframeworks with Flask and Express.js(Node) -Intro & Basic App

4730
54
1
00:11:52
03.08.2018

Web Microframeworks with Flask and Express.js(Node) (For Rapid Web Development) In this tutorial we will be learning how to build web applications with flask and express.js microframework. The Aim is to see how similar flask is to express.This is not a flask vs express tutorial,it is just to see how similar and simple each are . Code Github:🤍 If you liked the video don't forget to leave a like or subscribe. If you need any help just message me in the comments, you never know it might help someone else too. J-Secur1ty JCharisTech

PYTHON VS NODEJS | HERE'S WHAT WE THINK

105425
2049
144
00:06:22
12.01.2021

Let's review Python vs Node.js pros and cons, and what is the best choice for your project. ▶ Contact Jelvix: hello🤍jelvix.com | jelvix.com We are a technology consulting and software development company eager to share our knowledge and experience. Subscribe for more tech tips and tutorials: 🤍 ▶ LINKS: - Best Nodejs frameworks - 🤍 - Python vs Node.js - 🤍 ▶ Follow us: Facebook - 🤍 Twitter - 🤍 Instagram - 🤍 Linkedin - 🤍 Upwork - 🤍 ▶ About this video: What are the Criteria for Choosing Between Node.js and Python? Well, when we choose the tech stack for our clients, we at Jelvix usually focus on the criteria as: - What kind of project are we dealing with? - What kind of product do we expect to deliver? - What is the project’s reach? - What resources do we currently have? - What is the situation on the market? - What are our main performance criteria?

Python, PostgreSQL & Javascript - Aplicación Web CRUD (Flask y Vanilla JS)

15549
565
42
02:18:46
30.05.2022

Este es un ejemplo práctico en el que crearemos una web completa usando Python y JavaScript. Crearemos un Backend usando el Framework de Python Flask y el frontend lo crearemos usando Javascript puro (Vanilla Javascript) desde cero. Básicamente crearemos una REST API, más un frontend, lo estilizaremos con bootstrap5, y aprenderemos a desplegarlo en servicios gratuitos como son Heroku y Heroku Postgres. Código del Ejemplo: 🤍 Índice del contenido: 00:00 Introducción 01:36 Project/Backend Setup 15:35 REST API Endpoints 20:10 Crear Usuario - Backend 33:51 Obtener Usuarios - Backend 36:25 Obtener Usuario - Backend 40:59 Eliminar Usuario - Backend 44:32 Actualizar Usuario - Backend 50:48 Frontend Setup - Static Files 01:05:22 Crear Usuario - Frontend 01:17:39 Obtener Usuarios - Frontend 01:32:39 Eliminar Usuario - Frontend 01:41:58 Actualizar Usuario - Frontend 01:55:20 Deploy del Proyecto 02:18:08 Outro 🎥 Videos Recomendados: Heroku PostgreSQL ➜ 🤍 Psycopg2 Tutorial ➜ 🤍 PostgreSQL Instalación Windows ➜ 🤍 PostgreSQL Instalación Linux ➜ 🤍 Github Pages npm ➜ 🤍 Mongodb Visual Studio Code ➜ 🤍 Mongoose ➜ 🤍 Curso de Nodejs ➜ 🤍 Thunder Client ➜ 🤍 Variables de Entorno en Nodejs ➜ 🤍 Curso de Git ➜ 🤍 Rest client VSCode ➜ 🤍 Mongodb Atlas ➜ 🤍 👨‍💻 ¿Qué servicios y productos utilizo? Ledger (Hardware Wallet) ➞ 🤍 SiteGround ➞ 🤍 DigitalOcean ➞ 🤍 Expo ➞ 🤍 Cloudinary ➞ 🤍 Namecheap ➞ namecheap.pxf.io/ErDe9 #python #javascript #flask

Aplicação Simples usando Flask e JS

163
9
2
00:10:30
20.01.2020

Meu Git : 🤍 Git da aplicação : 🤍 Meu Linkedin : 🤍

DJANGO VS FLASK - FULL COMPARISON IN 5 MIN

63786
1187
54
00:05:38
13.07.2021

We are comparing Flask vs Django - their pros and cons, use cases, and our experience with them. ▶ Contact Jelvix: hello🤍jelvix.com | jelvix.com We are a technology consulting and software development company eager to share our knowledge and experience. Subscribe for more tech tips and tutorials: 🤍 ▶ LINKS: - Node.js vs Python - 🤍 - More about Django vs Flask - 🤍 ▶ TIME CODES: 00:00 Intro 00:39 Flask review 01:44 Django review 03:31 Difference between Django and Flask 03:51 What's the best choice? ​04:45 Contact Jelvix ▶ Follow us: Facebook - 🤍 Twitter - 🤍 Instagram - 🤍 Linkedin - 🤍 Upwork - 🤍 ▶ About this video: The Python Developer Survey (2019) tells that Django and Flask are the most well-known frameworks among developers. You can hardly go wrong with choosing one of these frameworks to work with a new web app. While picking which one will work best for you and your goals, there are several clear differences to keep in mind. Django has been around for longer – the first edition was in 2005, while Flask was introduced in 2010.

Dynamic Web Pages Without JavaScript? - Intro to HTMX

23304
630
51
00:20:05
30.03.2022

In this video I will intro you to HTMX, a library that extends HTML to make creating dynamic sites easy without any JavaScript. Need one-on-one help with your project? I can help through my coaching program. Learn more here: 🤍 Get the code here: 🤍 Web Development Courses: 🤍 Subscribe: 🤍 Twitter: 🤍 Github: 🤍

Part-1 | Todo list Web App using Python Flask Javascript and Mysql stack | Responsive UI bootstrap

1028
16
0
00:19:09
19.12.2021

Project Title: Todo list Technical Stact: Front-end: Html, CSS, JavaScript, Bootstrap (Matirial), Jquery and Ajax Back-end: Python, Flask Web Developement Framework Database: Mysql, SQLITE In this video we used Jquery and javascript to made the wep app interactive. Tutorial Part1 : 🤍 Tutorial Part2 : 🤍 Source code: 🤍

Python-разработчикам больше не нужен JavaScript. Brython, или Python в браузере

30514
1459
174
00:12:19
13.03.2021

Web-браузер умеет исполнять только код написанный на JavaScript... А вот и нет. Встречай, Brython! 🤍 - официальный сайт библиотеки Brython 🤍 - как создать собственный сервер на Python в домашних условиях #1 🤍 - как создать полноценный сервер на Python в домашних условиях #2 🤍 - декораторы в Python #Python #JavaScript #Brython #web #browser

Learn Python in Arabic #140 - Flask - Adding The JS Files

11093
325
12
00:08:13
13.07.2020

Flask - Adding The JS Files 🤍 = Support Me on Patreon to Help me Create More Videos 🤍 I will be Very Happy if you Support my Channel. 🤍 Join Our Facebook Group: 🤍 Follow My Facebook Profile: 🤍 Like Facebook Page: 🤍 Follow Me On Twitter: 🤍

Назад
Что ищут прямо сейчас на
flask js Office 365 E3 献祭 q mobile g6 imei change code 老犬 수호 OG'ABEK SOBIROV kydonaki cmd pip qarshi moshina bozor parkeunbin jj튜브 grob BEO 은교 贺鹏 remake Mini soldering iron سين скабеева в плену