Python/FastAPI/Django – Weekly News Summary – 06/01/2025 to 12/01/2025
#Real Python Iterators and Iterables in Python: Run Efficient Iterations In this tutorial, you'll learn what iterators and iterables are in Python. You'll learn how they differ and when to use them in your code. You'll also learn how to create your own iterators and iterables to make data processing more efficient.#intermediate #python By – | Jan 06, 2025 Image Processing With the Python Pillow Library In this step-by-step tutorial, you'll learn how to use the Python Pillow library to deal with images and perform image processing. You'll also explore using NumPy for further processing, including to create animations.#intermediate By – | Jan 08, 2025 Python's urllib.request for HTTP Requests In this tutorial, you'll be making HTTP requests with Python's built-in urllib.request. You'll try out examples and review common errors encountered, all while learning more about HTTP requests and Python in general.#intermediate #api #web-dev #web-scraping By – | Jan 11, 2025 HTML and CSS for Python Developers There's no way around HTML and CSS when you want to build web apps. Even if you're not aiming to become a web developer, knowing the basics of HTML and CSS will help you understand the Web better. In this tutorial, you'll get an introduction to HTML and CSS for Python programmers.#basics #django #flask #front-end #web-dev By – | Jan 11, 2025 Python's pathlib Module: Taming the File System Python's pathlib module enables you to handle file and folder paths in a modern way. This built-in module provides intuitive semantics that work the same way on different operating systems. In this tutorial, you'll get to know pathlib and explore common tasks when interacting with paths.#intermediate #python By – | Jan 11, 2025 How to Get a List of All Files in a Directory With Python In this tutorial, you'll be examining a couple of methods to get a list of files and folders in a directory with Python. You'll also use both methods to recursively list directory contents. Finally, you'll examine a situation that pits one method against the other.#intermediate By – | Jan 12, 2025 Python's assert: Debug and Test Your Code Like a Pro In this tutorial, you'll learn how to use Python's assert statement to document, debug, and test code in development. You'll learn how assertions might be disabled in production code, so you shouldn't use them to validate data. You'll also learn about a few common pitfalls of assertions in Python.#intermediate #best-practices #python By – | Jan 12, 2025 #PyCoders Issue #663 – DRF, Temp Files, Dataclasses, and More By – | Jan 07, 2025 #Adam Johnson – Blogs Python: test for unraisable exceptions with A few days ago, I blogged about debugging unraisable exceptions with Rich. Here’s a sequel on testing that some block of code doesn’t trigger any unraisable exceptions. By Adam Johnson | Jan 07, 2025 Django: silence “Exception ignored in … OutputWrapper” You might see this message when running pytest on your Django project: By Adam Johnson | Jan 08, 2025 Firefox: disable an extension that’s spamming devtools logs Browser extensions can run JavaScript within the content of your tabs. This means they can trigger messages that appear in the devtools console. For example, one extension I use logs this warning on every tab: By Adam Johnson | Jan 09, 2025 Django: render JavaScript import maps in templates JavaScript’s import statement lets module scripts import objects from other scripts. For example, you can define a script as a module in HTML: By Adam Johnson | Jan 09, 2025 Python: fuss-free use of Homebrew libraries for package dependencies Some Python packages require native libraries to be installed on your system when you install them. For example, mysqlclient requires libssl and libcrypto. If those libraries are missing at install time, clang, the C compiler, fails with a message like: By Adam Johnson | Jan 10, 2025 #Hashnode My Machine Learning Journey: From Python Basics to Building Neural Networks Machine Learning (ML) has always fascinated me. The idea of enabling a machine to "learn" and make decisions intrigued me enough to embark on a journey to understand and implement it. Here, I’ll share my experiences, challenges, and what I’ve achieve… By Himanshu Singh | Jan 06, 2025 Day 3 – Control Flow and Logical Operators Control Flow with if / else and Conditional Operators if / else Statement : If Statement: Checks a condition. If the condition is True, the code inside the if block runs. Else Statement: Runs if the if condition is False Critical Points The condition… By Muniba Amin | Jan 06, 2025 Django in 2025: The Future of the Web Framework Django has been a powerful framework for building scalable, secure web applications for over a decade. But what does the future hold for Django in 2025? In this post, we’ll explore the exciting trends and innovations that could shape Django’s evoluti… By Eurico Santos | Jan 06, 2025 🌤️ Day 1: Setting Up the AWS Weather Dashboard Application Check out the project on GitHub: AWS Weather Dashboard Repository In this post, I’ll walk you through setting up a weather dashboard that fetches weather data from the OpenWeather API and displays it on a dashboard. The app uses AWS services like S3 … By Blessing Aliu | Jan 06, 2025 Using Machine Learning to Predict Fetal Health: A Comprehensive Guide Introduction Did you know that timely diagnosis of fetal health conditions can significantly reduce complications during pregnancy? With technological advancements, machine learning (ML) has emerged as a powerful tool to assist healthcare professiona… By Anand | Jan 07, 2025 30 Days DevOps Challenge – Weather Dashboard Setting Up Your Weather Dashboard with Azure Blob Storage Introduction Hi my Name is Ford and I recently joined a 30daysdevopschallenge. In this article we are Creating a weather dashboard that fetches data from the OpenWeather API and stores it in A… By Wilford Gonzales | Jan 07, 2025 Automate EC2 Instance Creation With Boto3 Library First of all, you have to install AWS CLI from here