- 119
- 637 418
Legion Script
United States
เข้าร่วมเมื่อ 9 ต.ค. 2019
Software engineering tutorials using various languages, frameworks, and other tools. A strong focus on Python and Javascript building full stack web applications. This includes Django, React, NextJs, and the Django Rest Framework. There are also crash courses to build programming skills in specific frameworks or other tools.
FastAPI Crash Course: Building Robust APIs with Python for Beginners
🚀 FastAPI Crash Course: Building Robust APIs with Python for Beginners
Welcome to this comprehensive crash course on FastAPI! In this tutorial, we'll guide you through the process of setting up a powerful API using FastAPI, a modern and high-performance web framework for building APIs with Python. Whether you're a beginner or looking to explore FastAPI's capabilities, this guide is designed to provide a hands-on introduction.
👉 Topics Covered:
Setting up a FastAPI project and creating your first API endpoint.
Handling GET requests to retrieve data from your API.
Creating dynamic routes for flexible API endpoints.
Utilizing URL parameters for more advanced GET requests.
Implementing POST, PATCH, and DELETE requests for data manipulation.
Generating automatic API documentation with FastAPI's built-in capabilities.
🔧 Tools and Technologies:
FastAPI: Dive into the features of this modern and high-performance web framework.
Python: Learn how to leverage Python for building robust APIs.
HTTP Methods: Explore the various HTTP methods for handling different types of requests.
By the end of this crash course, you'll have a solid understanding of FastAPI, enabling you to build efficient and well-documented APIs with ease. Whether you're developing web applications, microservices, or RESTful APIs, FastAPI is a game-changer for Python developers.
🔗 Helpful Links:
FastAPI Documentation:
fastapi.tiangolo.com/
Code For this Video:
github.com/legionscript/FastAPICrashCourse/blob/master/main.py
👍 Don't forget to like, subscribe, and hit the bell icon for more Python and FastAPI tutorials!
Ready to fast-track your API development skills? Let's dive into the world of FastAPI together!
#FastAPI #PythonAPI #APIDevelopment #FastAPICrashCourse #PythonTutorial
Welcome to this comprehensive crash course on FastAPI! In this tutorial, we'll guide you through the process of setting up a powerful API using FastAPI, a modern and high-performance web framework for building APIs with Python. Whether you're a beginner or looking to explore FastAPI's capabilities, this guide is designed to provide a hands-on introduction.
👉 Topics Covered:
Setting up a FastAPI project and creating your first API endpoint.
Handling GET requests to retrieve data from your API.
Creating dynamic routes for flexible API endpoints.
Utilizing URL parameters for more advanced GET requests.
Implementing POST, PATCH, and DELETE requests for data manipulation.
Generating automatic API documentation with FastAPI's built-in capabilities.
🔧 Tools and Technologies:
FastAPI: Dive into the features of this modern and high-performance web framework.
Python: Learn how to leverage Python for building robust APIs.
HTTP Methods: Explore the various HTTP methods for handling different types of requests.
By the end of this crash course, you'll have a solid understanding of FastAPI, enabling you to build efficient and well-documented APIs with ease. Whether you're developing web applications, microservices, or RESTful APIs, FastAPI is a game-changer for Python developers.
🔗 Helpful Links:
FastAPI Documentation:
fastapi.tiangolo.com/
Code For this Video:
github.com/legionscript/FastAPICrashCourse/blob/master/main.py
👍 Don't forget to like, subscribe, and hit the bell icon for more Python and FastAPI tutorials!
Ready to fast-track your API development skills? Let's dive into the world of FastAPI together!
#FastAPI #PythonAPI #APIDevelopment #FastAPICrashCourse #PythonTutorial
มุมมอง: 1 227
วีดีโอ
Python Requests Crash Course: Mastering HTTP Communication for Beginners
มุมมอง 50310 หลายเดือนก่อน
🚀 Python Requests Crash Course: Mastering HTTP Communication for Beginners Welcome to this crash course on Python Requests! In this tutorial, we'll take a deep dive into the powerful "Requests" library, an essential tool for handling HTTP requests in Python. Whether you're a beginner or looking to enhance your skills, this guide is designed to provide a comprehensive overview of Python Requests...
AWS Identity and Access Management (IAM) Fundamentals: Managing Permissions and Security
มุมมอง 23111 หลายเดือนก่อน
🚀 AWS Identity and Access Management (IAM) Fundamentals: Managing Permissions and Security Welcome back to our AWS with Python series! In this tutorial, we're diving deep into the core of AWS security with a focus on Identity and Access Management (IAM). Whether you're new to AWS or seeking to reinforce your knowledge, this guide is designed to provide a comprehensive understanding of IAM funda...
AWS DynamoDB with Python: Creating and Retrieving Items using Lambda
มุมมอง 1.6K11 หลายเดือนก่อน
🚀 AWS DynamoDB with Python: Creating and Retrieving Items using Lambda Welcome back to our AWS with Python series! In this tutorial, we'll explore the power of AWS DynamoDB and AWS Lambda, combining Python and Boto3 to create and retrieve items in a DynamoDB table. Whether you're a beginner or looking to expand your AWS knowledge, this guide is designed to help you master serverless data manage...
AWS API Gateway & Lambda: Building Scalable Python APIs - Integration Tutorial
มุมมอง 90611 หลายเดือนก่อน
🚀 AWS API Gateway and Lambda Integration Tutorial: Building Scalable APIs with Python Welcome to another episode in our AWS with Python series! In this tutorial, we'll guide you through the process of setting up an AWS API Gateway and integrating it seamlessly with AWS Lambda functions. If you're eager to build scalable and secure APIs on Amazon Web Services, you're in the right place! 👉 Topics...
AWS with Python: Invoking Lambda Functions using Boto3
มุมมอง 2.1Kปีที่แล้ว
🚀 AWS Lambda Invocation Mastery: Invoking Lambda Functions from Python 3 Tutorial Welcome to the next installment in the AWS with Python series! In this tutorial, we'll explore the powerful world of AWS Lambda by focusing on invoking Lambda functions from within another Lambda function. Additionally, we'll delve into the crucial aspect of managing environment variables for secure and efficient ...
AWS with Python: Mastering Lambda Basics
มุมมอง 279ปีที่แล้ว
🚀 AWS Lambda Tutorial for Beginners: Python 3, Environment Variables, Testing, and More! Welcome to this beginner-friendly tutorial on creating AWS Lambda functions using Python 3. If you're new to Amazon Web Services (AWS) or serverless computing, you're in the right place! In this comprehensive guide, we'll walk through the basics of AWS Lambda, covering essential concepts and practical examp...
Python Under 5 Minutes: String Formatting
มุมมอง 76ปีที่แล้ว
In this video we will go over how to insert variables into strings. We will look at 3 different ways, using the percent operator, str.format and f strings/string interpolation. At the end of this video, we will have gone over the most common ways to dynamically add values into strings. Code: github.com/legionscript/String-Formatting Free Structured Courses on LegionScript.com: www.legionscript....
Python Under 5 Minutes: Filter Function
มุมมอง 119ปีที่แล้ว
In this video, we will go over how to use the filter function. The filter function is another high order function that will allow us to filter out a collection of elements based on a function returning True/False. If the function returns True for that element, it will be appended to a new list. The new list is then returned at the end. Code: github.com/legionscript/Filter-Function Free Structur...
Python Under 5 Minutes: Floor Division
มุมมอง 193ปีที่แล้ว
In this video, we will go over floor division in Python. We will look at how division is handled in Python and how we can handle just getting a whole number using the Floor Division operator. We will also go over negative numbers and how those results can be slightly different than what might be expected. Code: github.com/legionscript/Python-Floor-Division Free Structured Courses on LegionScrip...
Python Under 5 Minutes: Reduce Function
มุมมอง 160ปีที่แล้ว
In this video, we will go over the reduce function to iterate over a collection of values and compute a final value. We will look at a few different examples and we will go over how to use lambdas with the reduce function. Code: github.com/legionscript/Reduce-Function/blob/master/tutorial.py Free Structured Courses on LegionScript.com: www.legionscript.com/
Python in Under 5 Minutes: The Map Function
มุมมอง 141ปีที่แล้ว
In this video we will go over how to use the map function to replace a for loop. This is another option that is useful to have the ability to use. We will write the code the original way with a for loop before converting it into the map function. Code: github.com/legionscript/Map-Function Free Structured Courses on LegionScript.com: www.legionscript.com/
Getting Started With Pandas
มุมมอง 121ปีที่แล้ว
In this quick guide to Pandas, we'll walk you through the fundamentals of using this powerful Python library for data manipulation and analysis. We'll cover topics such as installing Pandas, importing the library, working with DataFrame data structures, loading and exploring data, manipulation techniques, and mathematical operations. By the end of the video, you'll have a solid understanding of...
Mastering Django Unit Testing: An In-Depth Introduction and Tutorial
มุมมอง 4.5Kปีที่แล้ว
In this comprehensive tutorial on Django unit testing, we cover the basic principles of testing and demonstrate how to write effective tests for models and views. We discuss creating isolated test cases, organizing tests, and provide best practices for readability and maintainability. You'll learn how to test Django models and Django views, including generic class based views, as well as how to...
Flask 101: A Comprehensive Guide to Getting Started with Flask Web Development
มุมมอง 556ปีที่แล้ว
Welcome to Flask 101: A Comprehensive Guide to Getting Started with Flask Web Development! In this tutorial, we'll cover everything you need to know to build powerful web applications with Flask. We'll start by setting up Flask, creating dynamic templates using Jinja2, and validating user input with forms. Then, we'll dive into working with databases using SQLAlchemy and handling errors gracefu...
Build an Inventory Management System with Python and Django: A Step-by-Step Tutorial
มุมมอง 70Kปีที่แล้ว
Build an Inventory Management System with Python and Django: A Step-by-Step Tutorial
Deploy Django with Digital Ocean App Platform
มุมมอง 11Kปีที่แล้ว
Deploy Django with Digital Ocean App Platform
Deploy Django on AWS EC2 Beginners Tutorial
มุมมอง 10Kปีที่แล้ว
Deploy Django on AWS EC2 Beginners Tutorial
Build a Blog using Django, Python, and Bootstrap
มุมมอง 14Kปีที่แล้ว
Build a Blog using Django, Python, and Bootstrap
Build an Investment Calculator in Django
มุมมอง 4.4K2 ปีที่แล้ว
Build an Investment Calculator in Django
Build a Password Generator With Django & Python
มุมมอง 1.2K2 ปีที่แล้ว
Build a Password Generator With Django & Python
File I/O in Python: How to Read & Write to Files
มุมมอง 9822 ปีที่แล้ว
File I/O in Python: How to Read & Write to Files
How to Use List Comprehensions in Python
มุมมอง 872 ปีที่แล้ว
How to Use List Comprehensions in Python
Fetch API Data: Django Rest Framework & React Portfolio Website
มุมมอง 3K2 ปีที่แล้ว
Fetch API Data: Django Rest Framework & React Portfolio Website
Like a dream! So simple.
this is the best channel in youtube bro u have help me build my entire career through this playlist. I've watched it several times and it still helps. thanks
how to add a bootstrap?
Is this a complete project?
How do you set the limit for each of the inventory items if the minimum quantity varies?
How to build a conversation between admin and user in Django
Why cant I deploy my website?i tried using github but it only says 404 or just a normal website title and upside of the website theres "{% extends 'landing/base.html %} {block content}" and then the title then sign in and register buttons then after i click the register button it goes 400 bad request please help me i need to fix it asap please make a tutorial on how to deploy
If possible i only need it on host because i need to let everyone access my created website
If possible if is there any way to host this for free?
All worked. Great video.. thanks!
Hello i solve my problems on the previous part but i have a problem again this part its that everytime im going to socials i cannot view posts unless i commented is there anything i miss?or its separate coding?
I am stuck at the template it keeps saying template doesnt found any solutions?
20:30 Hey please answer my question asap. I have followed everysteps but whenni reload my website it says "could not parse the remainder:'%crsf_token%' from '%crsf_token%' " i followed and doubledbcheck everything but it wouldnt work im sure i did everything right please help me
The createsuperuser part doesnt work on me. The password psrt it keeps saying black passwords arent allowed but i couldnt type anything
you can type on it it won't show password but it working
for some reason I am unable to do this projevt finding so many errors and difficulty as a beginner 1917 181024
As well here you well there where you want frustration is part of the journey sweet lady
09:10 it showed me django loging straight and didnt show me index
Can I do this in vs code?
Thank u so much! The best turtorial💯
Hello there, I have been following through with the tutorial and have encountered a problem with the logout functionality, Method Not Allowed (GET): /logout/ Method Not Allowed: /logout/ [11/Oct/2024 07:51:41] "GET /logout/ HTTP/1.1" 405 0............................ This is the error i'm getting, kindly anyone what might be the problem..
Hello, my logout url is not working, even when I followed your procedures one after the other, I keep getting: Method Not Allowed: /accounts/logout/ "GET /accounts/logout/ HTTP/1.1" 405 0
Starting from the middle of nowhere
Thanks it helps me a lot
Amazing lesson! Thank you for taking the time to create an insightful tutorial. I especially appreciated you showing us how to read documentations for further development.
Hi professor, I have a problem with downloading several photos, it gives me " widget=forms.ClearableFileInput(attrs={ ValueError: ClearableFileInput doesn't support uploading multiple files " with my version of Django 5.1
Good vid man
Please explore html and class explore
what if I have a webapp built using React and Django? what process should I follow?
Hi I just wonder where your mp4 video are stored ?
Thank you for this tutorial. I had to watch it 5 times because of different issues I was facing but it helped me learn a lot and achieve what I needed.
Would this work as a final year project ??
Great tutorial mate!! , keep up the good work, and provide more knowledge to your community❤
Thank you so much
i like to think that the mistake u made in the guni conf was just a clever didactic strat to make people aware of how to debug. thanks for the upload XD <<'3
you are fantastic mate. Thanks a lot.
how does the category get imported into the list that displays, where do i edit the categories itself
Hi can someone teach me how to add existing items towards an inventory. Would I have to manually upload it through the all or where do i add it
Thank you for this brilliant tutorial!
SSH isn't a standard option for me now. In its place I see RDP.
Thank you very much. It was an excellent video and resolved my issues with the deployment. Kudos!
you are my god
I figured out the logout issue, and I am on the newest version of django. At around 49:50, after he has updated navigation.html (or you can pull the completed version from the github) change <li class="nav-item"> <a class="nav-link" href="{% url 'logout' %}">Sign Out</a> </li> to <form method="post" action="{% url 'logout' %}"> {% csrf_token %} <button type="submit" class="nav-link">Logout</button> </form>
Super content. Update: now inflection must also be installed "pip install pyyaml uritemplate inflection" otherwise you will get an error failed to fetch.
Thanks. Helped me a lot..
Fantastic Video.
Enjoyed the Video. You have gained a subscriber❤
Very cool tutorial, thanks for posting!
I have a trouble with moving to logout page, ive written urls and logout.html as in the video, but im getting a 405 error (method is not allowed)
It's because you didn't sign in , don't worry it happened to me also just login, then try to sign out, and everything will be good
Could you solved it I have the same problem please help me
I had a really hard time trying to deploy my project. This is the only video that was simple, well explained and most importantly actually working. Thank you so much man!
just pasted some code in the most confusing part and ran with it 10:17. Does anyone know what that is that he pasted ?
ggg
Heyyy I'm doing my final project of my CS course in school and it's an online multiplayer game (three.js) hosted on a webapp made with Nextjs, Django and Postgres (all running in docker containers) and I absolutely adore this walkthrough since all of these technologies are completely new to me (except Docker). If you're wondering why we have to do something so complex as our very first web project, the goal is to challenge ourselves one last time to learn something entirely new, as it's the school's philosophy. While the content and style is different, you've helped me out a ton with setting up our work environment and things like db initialization, user management, authentication, etc... With that said, has anyone ever told you you kinda sound like Vinny from Vinesauce? 😂
Hello, it doesn't work when I log out. Whenever I go to /logout or when I click logout, the page shows "This page isn’t working." Do you have any ideas on how to fix this?