REST APIs with Flask and Python in 2024

0dayddl

U P L O A D E R
537368816_que-es-udemy-analisis-opiniones.jpg

2.26 GB | 10min 17s | mp4 | 1280X720 | 16:9
Genre:eLearning |Language:English


Files Included :
01 Introduction to this section.mp4 (2.6 MB)
03 Variables in Python.mp4 (8.46 MB)
04 Solution to coding exercise Variables.mp4 (3.31 MB)
05 String formatting in Python.mp4 (12.27 MB)
06 Getting user input.mp4 (10.19 MB)
07 Writing our first Python app.mp4 (6.64 MB)
08 Lists, tuples, and sets.mp4 (12.65 MB)
09 Advanced set operations.mp4 (9.18 MB)
10 Solution to coding exercise Lists, tuples, sets.mp4 (10.37 MB)
11 Booleans in Python.mp4 (9.84 MB)
12 If statements.mp4 (24.35 MB)
13 The 'in' keyword in Python.mp4 (4.44 MB)
14 If statements with the 'in' keyword.mp4 (19.64 MB)
15 Loops in Python.mp4 (22.79 MB)
16 Solution to coding exercise Flow control.mp4 (7.14 MB)
17 List comprehensions in Python.mp4 (14.8 MB)
18 Dictionaries.mp4 (16.29 MB)
19 Destructuring variables.mp4 (16.36 MB)
20 Functions in Python.mp4 (22.06 MB)
21 Function arguments and parameters.mp4 (16.46 MB)
22 Default parameter values.mp4 (8.22 MB)
23 Functions returning values.mp4 (22.95 MB)
24 Solution to coding exercise Functions.mp4 (4.6 MB)
25 Lambda functions in Python.mp4 (15.22 MB)
26 Dictionary comprehensions.mp4 (9.51 MB)
27 Solution to coding exercise Dictionaries.mp4 (19.81 MB)
28 Unpacking arguments.mp4 (29.76 MB)
29 Unpacking keyword arguments.mp4 (20.83 MB)
30 Object-Oriented Programming in Python.mp4 (55.23 MB)
31 Magic methods str and repr.mp4 (16.82 MB)
32 Solution to coding exercise Classes and objects.mp4 (13.38 MB)
33 @classmethod and @staticmethod.mp4 (46.2 MB)
34 Solution to coding exercise @classmethod and @staticmethod.mp4 (15.12 MB)
35 Class inheritance.mp4 (28.42 MB)
36 Class composition.mp4 (16.4 MB)
37 Type hinting in Python 3 5+.mp4 (12.81 MB)
38 Imports in Python.mp4 (47.27 MB)
39 Relative imports in Python.mp4 (24.22 MB)
40 Errors in Python.mp4 (44.03 MB)
41 Custom error classes.mp4 (18.38 MB)
42 First-class functions.mp4 (20.85 MB)
43 Simple decorators in Python.mp4 (23.89 MB)
44 The 'at' syntax for decorators.mp4 (14.84 MB)
45 Decorating functions with parameters.mp4 (5.54 MB)
46 Decorators with parameters.mp4 (11.96 MB)
47 Mutability in Python.mp4 (9.72 MB)
48 Mutable default parameters (and why they're a bad idea).mp4 (8.96 MB)
02 Overview of the project we'll build.mp4 (7.57 MB)
03 Initial set-up for a Flask app.mp4 (10.35 MB)
04 Your first REST API endpoint.mp4 (8.43 MB)
05 What is JSON.mp4 (8.64 MB)
06 How to interact with and test your REST API.mp4 (9.97 MB)
07 How to create stores in our REST API.mp4 (14.41 MB)
08 How to create items in each store.mp4 (20.44 MB)
09 How to get a specific store and its items.mp4 (12.09 MB)
01 What are Docker containers and images.mp4 (48.17 MB)
02 How to run a Flask app in a Docker container.mp4 (45.16 MB)
04 How to run the Flask REST API with Docker Compose.mp4 (9.29 MB)
05 How to debug Flask applications running on Docker with VSCode.mp4 (37.51 MB)
01 Data model improvements for our API.mp4 (38.73 MB)
02 General improvements to our first REST API.mp4 (20.35 MB)
03 New endpoints for our first REST API.mp4 (36.46 MB)
04 How to run the API in Docker with automatic reloading and debug mode.mp4 (33.37 MB)
05 How to use Blueprints and MethodViews in Flask.mp4 (32.72 MB)
06 How to write marshmallow schemas for our API.mp4 (8.69 MB)
07 How to perform data validation with marshmallow.mp4 (13.58 MB)
08 Decorating responses with Flask-Smorest.mp4 (15.67 MB)
01 start.zip (1.01 KB)
08 section-end-code.zip (3.87 KB)
01 Overview and why use SQLAlchemy.mp4 (5.63 MB)
02 How to code a simple SQLAlchemy model.mp4 (8.03 MB)
03 How to write one-to-many relationships using SQLAlchemy.mp4 (25.08 MB)
04 How to configure Flask-SQLAlchemy with your Flask app.mp4 (40.05 MB)
05 How to insert data into a table using SQLAlchemy.mp4 (27.19 MB)
06 How to find models in the database by ID or return a 404.mp4 (15.91 MB)
07 How to update models with SQLAlchemy.mp4 (20.5 MB)
08 How to retrieve list of all models.mp4 (2.45 MB)
09 How to delete models with SQLAlchemy.mp4 (3.62 MB)
10 Deleting related models with cascades.mp4 (11.42 MB)
11 Conclusion of this section.mp4 (13.3 MB)
02 section-start-code.zip (10.84 KB)
10 section-end-code.zip (16.24 KB)
01 Changes in this section.mp4 (10.05 MB)
02 One-to-many relationship between stores and tags.mp4 (32.48 MB)
03 Many-to-many relationship between items and tags.mp4 (36.98 MB)
02 section-start-code.zip (17.03 KB)
03 section-end-code.zip (22.98 KB)
03 Who uses the JWT.mp4 (17.09 MB)
04 How to set up Flask-JWT-Extended with our app.mp4 (14.68 MB)
05 Coding the User model and schema.mp4 (4.68 MB)
06 How to add a register endpoint to the REST API.mp4 (31.05 MB)
07 How to add a login endpoint to the REST API.mp4 (37.87 MB)
08 Protect endpoints by requiring a JWT.mp4 (26.38 MB)
09 JWT claims and authorization.mp4 (24.17 MB)
10 How to add logout to the REST API.mp4 (29.16 MB)
11 Request chaining with Insomnia.mp4 (10.04 MB)
12 Token refreshing with Flask-JWT-Extended.mp4 (57.88 MB)
04 section-start-code.zip (22.98 KB)
12 section-end-code.zip (23.25 KB)
02 How to add Flask-Migrate to our Flask app.mp4 (6.6 MB)
03 Initialize your database with Flask-Migrate.mp4 (22.37 MB)
04 Change SQLAlchemy models and generate a migration.mp4 (13.6 MB)
05 Manually review and modify database migrations.mp4 (11.47 MB)
02 section-start-code.zip (23.08 KB)
04 section-end-code.zip (55.86 KB)
01 What are Git repositories and commits.mp4 (14.22 MB)
02 Initialize a Git repository for our project.mp4 (21.7 MB)
04 Writing Markdown for documents and commits.mp4 (8.14 MB)
05 Remote repositories and how to use them.mp4 (16.57 MB)
06 Git branches and merging.mp4 (9.42 MB)
07 Merge conflicts and how to resolve them.mp4 (9.09 MB)
08 Overview of the final e-book chapters.mp4 (6.59 MB)
03 Creating a Render com web service.mp4 (16.43 MB)
04 How to run Flask with gunicorn in Docker.mp4 (15.14 MB)
06 Get a deployed PostgreSQL database.mp4 (4.98 MB)
08 Run the app and database locally with Docker Compose.mp4 (39.93 MB)
11 Use PostgreSQL locally and in production.mp4 (65.27 MB)
12 Test the finished production app.mp4 (4 MB)
01 How to send emails with Python and Mailgun.mp4 (30.53 MB)
02 How to send emails when users register.mp4 (43.48 MB)
03 What is a task queue and setting up a Redis database.mp4 (18.1 MB)
04 How to Populate and consume the task queue with rq.mp4 (24.94 MB)
05 How to process background tasks with the rq worker.mp4 (35.42 MB)
06 How to send HTML emails using Mailgun and Python.mp4 (89.97 MB)
07 How to deploy a background worker to render com.mp4 (30.92 MB)
01 section-start-code.zip (33.07 KB)
07 section-end-code.zip (6.53 MB)
]
Screenshot
EBj2k9Ov_o.jpg


RapidGator
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
TurboBit
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
 
Kommentar

99811034bab77a293bde061e442dca98.png

REST APIs with Flask and Python
MP4 | Video: AVC 1280x720 | Audio: AAC 44KHz 2ch | Duration: 13 Hours 43M | 10.6 GB
Genre: eLearning | Language: English​

Are you tired of boring, outdated, incomplete, or incorrect tutorials? I say no more to copy-pasting code that you don't understand. Welcome to one of the best resources online on creating REST APIs. I'm Jose, and I'm a software engineer; here to help you truly understand and develop your skills in web and REST API development with Python. Production-ready REST APIs. This course will guide you in creating simple, intermediate, and advanced REST APIs including authentication, deployments, caching, and much more. We'll start with a Python refresher that will take you from the very basics to some of the most advanced features of Python-for you to never be lost or confused. Using Flask and popular extensions Flask-RESTful, Flask-JWT, and Flask-SQLAlchemy we will dive right into developing complete, solid, production-ready REST APIs. We will also look into essential technologies Git, Heroku, nginx, and Varnish. I pride myself in providing excellent support and feedback to every single student. I am always available to guide you personally, and answer questions for your benefit.Don't wait, and sign up today to take another step toward web services mastery!I'll see you on the inside.

zOnTEZIf_o.jpg



RapidGator
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
AlfaFile
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
TurboBit
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
 
Kommentar

In der Börse ist nur das Erstellen von Download-Angeboten erlaubt! Ignorierst du das, wird dein Beitrag ohne Vorwarnung gelöscht. Ein Eintrag ist offline? Dann nutze bitte den Link  Offline melden . Möchtest du stattdessen etwas zu einem Download schreiben, dann nutze den Link  Kommentieren . Beide Links findest du immer unter jedem Eintrag/Download.

Data-Load.me | Data-Load.ing | Data-Load.to | Data-Load.in

Auf Data-Load.me findest du Links zu kostenlosen Downloads für Filme, Serien, Dokumentationen, Anime, Animation & Zeichentrick, Audio / Musik, Software und Dokumente / Ebooks / Zeitschriften. Wir sind deine Boerse für kostenlose Downloads!

Ist Data-Load legal?

Data-Load ist nicht illegal. Es werden keine zum Download angebotene Inhalte auf den Servern von Data-Load gespeichert.
Oben Unten