Implement OAuth 2.0 Authorization Flow With FastAPI
https://python.plainenglish.io/implement-oauth-2-0-authorization-flow-with-fastapi-7365385862e9
https://python.plainenglish.io/implement-oauth-2-0-authorization-flow-with-fastapi-7365385862e9
Medium
Implement OAuth 2.0 Authorization Flow With FastAPI
Get access to Google APIs for your web application
🎉 Day 82 of #100DaysOfCode in Python: Celebrating Your Milestone
https://elshad-karimov.medium.com/day-82-of-100daysofcode-in-python-celebrating-your-milestone-b309dd8f73a3
https://elshad-karimov.medium.com/day-82-of-100daysofcode-in-python-celebrating-your-milestone-b309dd8f73a3
Medium
🎉 Day 82 of #100DaysOfCode in Python: Celebrating Your Milestone
Welcome to Day 82! Today isn’t just another day in your coding journey; it’s a celebration of the dedication, effort, and passion you’ve invested in mastering Python. Let’s take a moment to…
Creating an Arbitrage Alert System from Scratch using Python and Supabase Day 11 — Project…
https://paulconnollywriter.medium.com/creating-an-arbitrage-alert-system-from-scratch-using-python-and-supabase-day-11-project-831504633562
https://paulconnollywriter.medium.com/creating-an-arbitrage-alert-system-from-scratch-using-python-and-supabase-day-11-project-831504633562
Medium
Creating an Arbitrage Alert System from Scratch using Python and Supabase Day 11 — Project…
Welcome back, its Day 11 and today we are going to focus on the projects structure at a high level. The repository which I spent yesterday…
PYTHON — Is Operator in Python
https://medium.com/paulacy-pulse/python-is-operator-in-python-fd374faa71cb
https://medium.com/paulacy-pulse/python-is-operator-in-python-fd374faa71cb
Medium
PYTHON — Is Operator in Python
In Python, the is operator is used to compare the identities of two objects, while the is not operator is its counterpart. Identity, in the context of Python, refers to the memory address at which an…
PYTHON — Python Filter Function Summary
https://medium.com/paulacy-pulse/python-python-filter-function-summary-d8b741882de0
https://medium.com/paulacy-pulse/python-python-filter-function-summary-d8b741882de0
Medium
PYTHON — Python Filter Function Summary
The Python filter() function is a powerful tool for performing filtering operations on iterables. With filter(), you can apply a Boolean function to the items in an iterable and retain only the…
PYTHON — Miscellaneous Functions in Python
https://medium.com/paulacy-pulse/python-miscellaneous-functions-in-python-21ddca06fd57
https://medium.com/paulacy-pulse/python-miscellaneous-functions-in-python-21ddca06fd57
Medium
PYTHON — Miscellaneous Functions in Python
In this article, we’ll explore various miscellaneous functions in Python, including exec(), eval(), and hash(). These functions offer powerful capabilities, but it's important to understand their…
PYTHON — Debugging Part 2 in Python
https://medium.com/paulacy-pulse/python-debugging-part-2-in-python-7156d1bd529a
https://medium.com/paulacy-pulse/python-debugging-part-2-in-python-7156d1bd529a
Medium
PYTHON — Debugging Part 2 in Python
In the previous lesson, you learned that FilePathField() might not be the best choice for your model. The alternative is to change it to a CharField. Here's a step-by-step guide: However, after…
PYTHON — Authentication in Python A Comprehensive Guide
https://medium.com/paulacy-pulse/python-authentication-in-python-a-comprehensive-guide-8f12b795f96a
https://medium.com/paulacy-pulse/python-authentication-in-python-a-comprehensive-guide-8f12b795f96a
Medium
PYTHON — Authentication in Python A Comprehensive Guide
Authentication is an important aspect of building secure and reliable applications, especially when it comes to APIs. In this comprehensive guide, we will explore different authentication methods in…
PYTHON — Python Sorting Guide
https://medium.com/paulacy-pulse/python-python-sorting-guide-6dfbf47ce607
https://medium.com/paulacy-pulse/python-python-sorting-guide-6dfbf47ce607
Medium
PYTHON — Python Sorting Guide
Sorting is a fundamental operation in programming and Python provides versatile ways to sort iterables. In this guide, we’ll explore how to use the sorted() built-in function and the .sort() method…
PYTHON — Documenting Your Python Projects Part 1
https://medium.com/paulacy-pulse/python-documenting-your-python-projects-part-1-1a1b189d20e3
https://medium.com/paulacy-pulse/python-documenting-your-python-projects-part-1-1a1b189d20e3
Medium
PYTHON — Documenting Your Python Projects Part 1
Documentation is a vital aspect of any Python project, and its nature can vary based on whether it is private, shared, or public. In this tutorial, we will explore the recommended documentation…
PYTHON — Files and Directories in Python
https://medium.com/paulacy-pulse/python-files-and-directories-in-python-45b5a1b534f7
https://medium.com/paulacy-pulse/python-files-and-directories-in-python-45b5a1b534f7
Medium
PYTHON — Files and Directories in Python
In this article, you will learn how to work with files and directories in Python. You will be introduced to context managers and the with statement, which are commonly used in the Python standard…
PYTHON — Formatting Numbers as Strings in Python
https://medium.com/paulacy-pulse/python-formatting-numbers-as-strings-in-python-edc09cb9199a
https://medium.com/paulacy-pulse/python-formatting-numbers-as-strings-in-python-edc09cb9199a
Medium
PYTHON — Formatting Numbers as Strings in Python
Formatting numbers as strings in Python is a common task when you want to present numerical data in a readable and attractive way. Python provides a powerful method of accomplishing this using…
PYTHON — Implement Healing in Python
https://medium.com/paulacy-pulse/python-implement-healing-in-python-71920a118fbc
https://medium.com/paulacy-pulse/python-implement-healing-in-python-71920a118fbc
Medium
PYTHON — Implement Healing in Python
In this tutorial, we will be implementing a healing mechanism in a text-based role-playing game using Python. The goal is to allow the player to heal and regain 30 health points, with a maximum cap…
PYTHON — Default Methods in Python
https://medium.com/paulacy-pulse/python-default-methods-in-python-59249f99d744
https://medium.com/paulacy-pulse/python-default-methods-in-python-59249f99d744
Medium
PYTHON — Default Methods in Python
In Python, default methods are inherited by all objects. They provide default behavior for certain operations and can be overridden to customize their functionality. In Python, the __str__ method is…
PYTHON — Iterating Over Containers Directly in Python
https://medium.com/paulacy-pulse/python-iterating-over-containers-directly-in-python-28afa45ce3be
https://medium.com/paulacy-pulse/python-iterating-over-containers-directly-in-python-28afa45ce3be
Medium
PYTHON — Iterating Over Containers Directly in Python
In Python, you can use for loops to iterate over items from a container or sequence directly, without the need to look up each item by index. This makes your code more Pythonic and helps simplify the…
PYTHON — Step Two Python Breakpoint
https://medium.com/paulacy-pulse/python-step-two-python-breakpoint-dba9592bb199
https://medium.com/paulacy-pulse/python-step-two-python-breakpoint-dba9592bb199
Medium
PYTHON — Step Two Python Breakpoint
In the previous lesson, you made an educated guess about where the bug might be in your code. Now, you will set a breakpoint and inspect the code by stepping through it with your debugger. You…
PYTHON — Append Arrays in Python
https://medium.com/paulacy-pulse/python-append-arrays-in-python-753e1c3aaa5d
https://medium.com/paulacy-pulse/python-append-arrays-in-python-753e1c3aaa5d
Medium
PYTHON — Append Arrays in Python
In Python, the .append() method is commonly used to add elements to lists. However, it's not limited to only lists. Many other structures in Python also have an .append() method. In this tutorial…
PYTHON — Common Tracebacks in Python
https://medium.com/paulacy-pulse/python-common-tracebacks-in-python-656052887629
https://medium.com/paulacy-pulse/python-common-tracebacks-in-python-656052887629
Medium
PYTHON — Common Tracebacks in Python
When writing Python code, it’s common to encounter tracebacks, which are reports of errors that occur during the execution of a program. Understanding these tracebacks is essential for debugging and…