Python/FastAPI/Django – Weekly News Summary – 13/01/2025 to 19/01/2025
#Pybites Creating a Fitness Tracker App with Python Reflex In this post, I will build a simple fitness tracker app using Python Reflex. Reflex is a Python library that allows you to create reactive applications using a functional and declarative approach. We will use Reflex to create a simple fitness tracker app that allows you to log the amount of workouts completed per week.…#Developer #Projects #Tools By Bob Belderbos | Jan 16, 2025 Create Project-Less Python Utilities with uv and Inline Script Metadata The other day I wanted to demo the Google Books API (we use for Pybites Books) to somebody so I started to write some code on the fly to call its endpoints using httpx. Then I thought it would be nice to turn it into a small script to search for books and view details…#Tools #Modules By Bob Belderbos | Jan 17, 2025 #Real Python Build a Personal Diary With Django and Python In this beginner-friendly tutorial, you'll build a personal diary in Django. You'll use the strengths of the Django web framework and learn the basics of web apps.#basics #django #front-end #projects #web-dev By – | Jan 13, 2025 How to Replace a String in Python In this tutorial, you'll learn how to remove or replace a string or substring. You'll go from the basic string method .replace() all the way up to a multi-layer regex pattern using the sub() function from Python's re module.#basics #best-practices By – | Jan 15, 2025 The subprocess Module: Wrapping Programs With Python In this tutorial, you'll learn how to leverage other apps and programs that aren't Python, wrapping them or launching them from your Python scripts using the subprocess module. You'll learn about processes all the way up to interacting with a process as it executes.#intermediate By – | Jan 18, 2025 Python's min() and max(): Find Smallest and Largest Values In this tutorial, you'll learn how to use Python's built-in min() and max() functions to find the smallest and largest values. You'll also learn how to modify their standard behavior by providing a suitable key function. Finally, you'll code a few practical examples of using min() and max().#basics #python By – | Jan 18, 2025 NumPy's max() and maximum(): Find Extreme Values in Arrays In this introduction to NumPy, you'll learn how to find extreme values using the max() and maximum() functions. This includes finding the maximum element in an array or along a given axis of an array, as well as comparing two arrays to find the larger element in each index position.#basics #data-science #numpy By – | Jan 18, 2025 Create and Modify PDF Files in Python In this tutorial, you'll explore the different ways of creating and modifying PDF files in Python. You'll learn how to read and extract text, merge and concatenate files, crop and rotate pages, encrypt and decrypt files, and even create PDFs from scratch.#intermediate #tools By – | Jan 19, 2025 Python Constants: Improve Your Code's Maintainability In this tutorial, you'll learn how to properly define constants in Python. By coding a bunch of practical example, you'll also learn how Python constants can improve your code's readability, reusability, and maintainability.#intermediate #python By – | Jan 19, 2025 Python Class Constructors: Control Your Object Instantiation In this tutorial, you'll learn how class constructors work in Python. You'll also explore Python's instantiation process, which has two main steps: instance creation and instance initialization.#intermediate #python By – | Jan 19, 2025 pandas GroupBy: Your Guide to Grouping Data in Python In this tutorial, you'll learn how to work adeptly with the pandas GroupBy facility while mastering ways to manipulate, transform, and summarize data. You'll work with real-world datasets and chain GroupBy methods together to get data in an output that suits your purpose.#intermediate #data-science By – | Jan 19, 2025 #Django Project – Weblog Django security releases issued: 5.1.5, 5.0.11, and 4.2.18 By Natalia Bidart | Jan 14, 2025 Hello from the new Steering Council; and a quick temporary voting process change By The Steering Council | Jan 16, 2025 Django 5.2 alpha 1 released By Sarah Boyce | Jan 16, 2025 Django earns the CHAOSS DEI Bronze badge 🫶 By Thibaud Colas & Bhuvnesh Sharma | Jan 19, 2025 #Python Insider Python 3.14.0 alpha 4 is out By Hugo | Jan 14, 2025 #PyCoders Issue #664: – Django vs FastAPI, Interacting With Python, Data Cleaning, and More By – | Jan 14, 2025 #Medium The Core of FastAPI: A Deep Dive into Starlette 🌟🌟🌟 FastAPI is essentially an API wrapper for Starlette. To fully grasp FastAPI, one must first understand Starlette. By Leapcell | Jan 13, 2025 Automating Django Deployments: Poetry Setup and Configuration It worked on my machine! By Gauri wankhade | Jan 13, 2025 This Is How I Scrape 99% of Websites (Step-by-Step Guide) “Without data, you’re just another person with an opinion.” — W. Edwards Deming By Kevin Meneses González | Jan 15, 2025 Creating the MongoDB Database Backend for Django Written by Jib Adegunloye (Senior Software Engineer @ MongoDB) By MongoDB | Jan 15, 2025 10 Things to Know About FastAPI Before an Interview FastAPI is one of the most popular modern Python web frameworks due to its simplicity, speed, and developer-friendly features. Preparing… By allglenn | Jan 16, 2025 Think Python Is Slow? Try These Hacks for 3x Faster Scripts Today Why investing time in optimization pays off big By Yash | Jan 16, 2025 Just STOP Checking For NONE Like This in Python!! Instead, use this way…which I am gonna tell you. By Kiran Maan | Jan 17, 2025 5 Exciting Flask Geospatial Projects to Build This Weekend and Sharpen Your Python Skills Tasks for the weekend. By Stephen Chege | Jan 17, 2025 FastAPI: How to Optimize REST API Performance Hello. I’ll discuss optimizing REST API performance with FastAPI and share simple but effective techniques for building faster and more… By Ali Yaman | Jan 18, 2025 Chapter 9: Master Python Compilers in Just 15 Minutes: A