Pinnedasyncio — How to use Async/Await in Python.In this article, we gonna discuss how we can use async/await in Python?Jul 12, 20221Jul 12, 20221
⚡Thunder Client Paywalls? No thanks. EchoAPI is free!You might have heard of Thunder Client, a REST API client extension for Visual Studio Code that allows developers to test APIs. Thanks to…Nov 30, 2024Nov 30, 2024
Published inLevel Up CodingDifferent Ways to Stream Videos on the Frontend in FastAPIFastAPI is a fast and modern web framework known for its support for asynchronous REST API and ease of use.Nov 14, 2024Nov 14, 2024
Difference between eval and exec in PythonBoth functions have a common objective: to execute Python code from the string input or code object. Even though they both have the same…Nov 14, 2024Nov 14, 2024
10 Useful yet Rarely Used OS Functions in PythonYou must have used functions provided by the os module in Python several times in your projects. These could be used to create a file, walk…Nov 10, 2024Nov 10, 2024
Why Slash(/) and Asterisk(*) are Used in Functions?When you read the documentation of some functions you see a slash (/) and an asterisk (*) passed in the function definition. Why are they…Nov 4, 2024Nov 4, 2024
Stuck with circular imports? Use these methods to avoid them…Have you ever come across circular imports in Python? Well, it’s a very common code smell that indicates something’s wrong with the design…Nov 2, 2024Nov 2, 2024
Type Hints for Functions, Return Values, Variables, and More…Python is a dynamically typed language, meaning you do not need to specify the type of variables, parameters, or return values. This is…Oct 25, 2024Oct 25, 2024
Easy Way to Propagate Missing Values in a DatasetThe DataFrame.ffill() (forward fill) propagates missing or NaN values using the previous valid value in a column or row, while…Oct 23, 2024Oct 23, 2024
Disabling GIL Easily in Python3.13The official version of Python 3.13 has been released by the Python organization, and with this, you get many major changes.Oct 10, 20241Oct 10, 20241