REST APIs with Flask and Python in 2022

Posted on 28 Nov 20:27 | by AD-TEAM | 30 views
REST APIs with Flask and Python in 2022


REST APIs with Flask and Python in 2022
Language: English
Files Type: mp4, srt, html| Size: 2.05 GB
Video: 11:53:52 | 1280X720 | 1053 Kbps
Audio: mp4a-40-2 | 62 Kbps | AAC
Genre:eLearning





Videos Files :
001 Introduction to this section.mp4 (20.55 MB)
003 Variables in Python.mp4 (32.09 MB)
004 Solution to coding exercise Variables.mp4 (3.31 MB)
005 String formatting in Python.mp4 (27.9 MB)
006 Getting user input.mp4 (21.54 MB)
007 Writing our first Python app.mp4 (6.44 MB)
008 Lists, tuples, and sets.mp4 (12.25 MB)
009 Advanced set operations.mp4 (8.84 MB)
010 Solution to coding exercise Lists, tuples, sets.mp4 (10.36 MB)
011 Booleans in Python.mp4 (9.52 MB)
012 If statements.mp4 (23.37 MB)
013 The 'in' keyword in Python.mp4 (4.31 MB)
014 If statements with the 'in' keyword.mp4 (19.09 MB)
015 Loops in Python.mp4 (22.04 MB)
016 Solution to coding exercise Flow control.mp4 (6.92 MB)
017 List comprehensions in Python.mp4 (14.32 MB)
018 Dictionaries.mp4 (15.71 MB)
019 Destructuring variables.mp4 (15.86 MB)
020 Functions in Python.mp4 (21.31 MB)
021 Function arguments and parameters.mp4 (15.88 MB)
022 Default parameter values.mp4 (7.92 MB)
023 Functions returning values.mp4 (19.5 MB)
024 Solution to coding exercise Functions.mp4 (4.43 MB)
025 Lambda functions in Python.mp4 (14.66 MB)
026 Dictionary comprehensions.mp4 (9.22 MB)
027 Solution to coding exercise Dictionaries.mp4 (16.94 MB)
028 Unpacking arguments.mp4 (24.27 MB)
029 Unpacking keyword arguments.mp4 (20.04 MB)
030 Object Oriented Programming in Python.mp4 (39.32 MB)
031 Magic methods str and repr.mp4 (16.31 MB)
032 Solution to coding exercise Classes and objects.mp4 (13.38 MB)
033 @classmethod and @staticmethod.mp4 (37.09 MB)
034 Solution to coding exercise @classmethod and @staticmethod.mp4 (15.12 MB)
035 Class inheritance.mp4 (22.45 MB)
036 Class composition.mp4 (15.92 MB)
037 Type hinting in Python 3.5+.mp4 (12.48 MB)
038 Imports in Python.mp4 (54.71 MB)
039 Relative imports in Python.mp4 (23.61 MB)
040 Errors in Python.mp4 (42.46 MB)
041 Custom error classes.mp4 (14.27 MB)
042 First class functions.mp4 (20.34 MB)
043 Simple decorators in Python.mp4 (19 MB)
044 The 'at' syntax for decorators.mp4 (12.31 MB)
045 Decorating functions with parameters.mp4 (5.38 MB)
046 Decorators with parameters.mp4 (11.66 MB)
047 Mutability in Python.mp4 (9.37 MB)
048 Mutable default parameters (and why they're a bad idea).mp4 (8.7 MB)
002 Overview of the project we'll build.mp4 (15.22 MB)
003 Initial set up for a Flask app.mp4 (20.35 MB)
004 Your first REST API endpoint.mp4 (15.64 MB)
005 What is JSON.mp4 (8.17 MB)
006 How to interact with and test your REST API.mp4 (9.57 MB)
007 How to create stores in our REST API.mp4 (13.92 MB)
008 How to create items in each store.mp4 (19.74 MB)
009 How to get a specific store and its items.mp4 (11.69 MB)
001 What are Docker containers and images.mp4 (53.43 MB)
002 How to run a Flask app in a Docker container.mp4 (43.34 MB)
001 Data model improvements for our API.mp4 (37.72 MB)
002 General improvements to our first REST API.mp4 (19.75 MB)
003 New endpoints for our first REST API.mp4 (30.34 MB)
004 How to run the API in Docker with automatic reloading and debug mode.mp4 (28.68 MB)
005 How to use Blueprints and MethodViews in Flask.mp4 (25.37 MB)
006 How to write marshmallow schemas for our API.mp4 (15.28 MB)
007 How to perform data validation with marshmallow.mp4 (10.64 MB)
008 Decorating responses with Flask Smorest.mp4 (12.06 MB)
001 Overview and why use SQLAlchemy.mp4 (5.46 MB)
002 How to code a simple SQLAlchemy model.mp4 (7.82 MB)
003 How to write one to many relationships using SQLAlchemy.mp4 (20.34 MB)
004 How to configure Flask SQLAlchemy with your Flask app.mp4 (45.03 MB)
005 How to insert data into a table using SQLAlchemy.mp4 (20.96 MB)
006 How to find models in the database by ID or return a 404.mp4 (11.87 MB)
007 How to update models with SQLAlchemy.mp4 (15.46 MB)
008 How to retrieve list of all models.mp4 (2.42 MB)
009 How to delete models with SQLAlchemy.mp4 (3.58 MB)
010 Conclusion of this section.mp4 (12.76 MB)
001 Changes in this section.mp4 (9.56 MB)
002 One to many relationship between stores and tags.mp4 (31.26 MB)
003 Many to many relationship between items and tags.mp4 (29.23 MB)
003 Who uses the JWT.mp4 (16.63 MB)
004 How to set up Flask JWT Extended with our app.mp4 (14.15 MB)
005 Coding the User model and schema.mp4 (4.58 MB)
006 How to add a register endpoint to the REST API.mp4 (29.85 MB)
007 How to add a login endpoint to the REST API.mp4 (31.66 MB)
008 Protect endpoints by requiring a JWT.mp4 (21.95 MB)
009 JWT claims and authorization.mp4 (23.48 MB)
010 How to add logout to the REST API.mp4 (24.23 MB)
011 Request chaining with Insomnia.mp4 (9.68 MB)
012 Token refreshing with Flask JWT Extended.mp4 (33.82 MB)
002 How to add Flask Migrate to our Flask app.mp4 (14.35 MB)
003 Initialize your database with Flask Migrate.mp4 (21.8 MB)
004 Change SQLAlchemy models and generate a migration.mp4 (13.26 MB)
005 Manually review and modify database migrations.mp4 (9.22 MB)
001 What are Git repositories and commits.mp4 (13.72 MB)
002 Initialize a Git repository for our project.mp4 (21.1 MB)
003 Writing Markdown for documents and commits.mp4 (6.46 MB)
004 Remote repositories and how to use them.mp4 (15.95 MB)
005 Git branches and merging.mp4 (9.1 MB)
006 Merge conflicts and how to resolve them.mp4 (8.74 MB)
007 Overview of the final e book chapters.mp4 (5.39 MB)
002 Creating a Render.com web service.mp4 (13.11 MB)
003 How to run Flask with gunicorn in Docker.mp4 (22.24 MB)
004 Get a deployed PostgreSQL database.mp4 (4.86 MB)
005 Use PostgreSQL locally and in production.mp4 (59.7 MB)
006 Test the finished production app.mp4 (3.86 MB)
001 How to send emails with Python and Mailgun.mp4 (25.39 MB)
002 How to send emails when users register.mp4 (36.1 MB)
003 What is a task queue and setting up a Redis database.mp4 (15.16 MB)
004 How to Populate and consume the task queue with rq.mp4 (24.38 MB)
005 How to process background tasks with the rq worker.mp4 (20.95 MB)
006 How to send HTML emails using Mailgun and Python.mp4 (82.59 MB)
007 How to deploy a background worker to render.com.mp4 (16.21 MB)



Related News

Tkinter Python & Python GUI with Real Tkinter Applications Tkinter Python & Python GUI with Real Tkinter Applications
Tkinter Python & Python GUI with Real Tkinter Applications Language: English Files Type:mp4,...
The Complete Python and JavaScript course for Development The Complete Python and JavaScript course for Development
The Complete Python and jаvascript course for Development Language: English Files Type:mp4, srt|...
Python 3 Fundamentals  Learn Python With Real World Coding Python 3 Fundamentals Learn Python With Real World Coding
Python 3 Fundamentals Learn Python With Real World Coding Language: English Files Type: mp4, pdf,...
UDEMY Python Demonstrations For Practice Course UDEMY Python Demonstrations For Practice Course
UDEMY.Python.Demonstrations.For.Practice.Course. Language: English Files Type:mp4, nfo| Size:1.97...

System Comment

Information

Error Users of Visitor are not allowed to comment this publication.

Facebook Comment

Member Area
Top News