Overviews of Some of the Python Libraries/Modules
- 1 minThe following is a list of published overviews I wrote about some of the interesting Python libraries/modules.
Introduction to FastAPI
This guide should serve you as a starting point for exploring the world of FastAPI.
I took you on a journey to understand FastAPI from the basics, through more advanced topics, all the way to the best practices.
[Read more here]
Hashing Passwords in Python with BCrypt
This guide explains how to hash your passwords in Python using BCrypt.
We’ll cover what hashing is, how hashes are compared, how “salting” works and how hashing even makes passwords secure.
[Read more here]
An Introductory Guide to Brython
Brython is a JavaScript library that enables you to run Python code inside your browser.
You probably guessed, Brython stands for Browser Python
As its name suggests, Brython’s main goal is to replace JavaScript and push Python as the primary scripting language for web browsers.
[Read more here]
Searching and Replacing Words in Python with FlashText
In this tutorial, we explained how to replace words in text sequences, with Python using the FlashText module, which provides one of the most efficient ways of replacing a large set of words in a textual document.
[Read more here]
Validate Email Addresses in Python with email-validator
This guide will go over the basics of the email-validator
library, discover when and why you could use it, as well as when not to.
[Read more here]
How to POST JSON Data Using requests Library in Python
This article will go through how to use the requests
library to send a POST request with JSON data in Python.
We’ll cover everything from the basics of sending a POST request to handling the response received from the server, and even handling errors that may occur along the way.