Table of Contents


#Real Python

Nested Loops in Python

Learn how to use nested loops in Python to iterate over multiple sequences and perform repeated actions efficiently in your programs.
#basics #python
By | May 14, 2025



#Medium

Django REST Framework: ViewSets and Routers Explained (Part 2)

In the previous article, we built a basic API using Django REST Framework (DRF). Now, let’s take the next step: making your…
By Michal Dróżdż | May 12, 2025


📘 Understanding API Parameters in FastAPI: A Beginner-Friendly Guide

FastAPI is one of the fastest and most modern Python frameworks for building APIs. It supports automatic validation, type checking, and…
By Areebayaseen | May 12, 2025


Mastering NumPy: Manual Metadata Manipulation for Memory-Efficient Arrays

Part 3: NumPy Like a Pro: A Deep Dive Into Arrays and Performance
By Sascha Kirch | May 12, 2025


Learning FastAPI — 13: Working With Websockets

A WebSocket is a persistent connection between a client and server to provide bidirectional, full-duplex communication between the two…
By Alen Sabu | May 12, 2025


Refactoring With Purpose: How Design Patterns Improved My Code

I used to refactor my code just to “make it cleaner” — rename some variables, split big functions, maybe move a few files around. It felt…
By Fatih Raditya | May 12, 2025


Mastering Django Application Monitoring with Google Analytics: Tracking User Behavior and…

In this modern world ensuring your Django application runs smoothly, performs well, and meets user needs requires comprehensive monitoring
By Adrial Natanael | May 12, 2025


Building Your First ML Model API with FastAPI: A Step-by-Step Guide

If you have built AI applications, you might have used an API from OpenAI or Anthrophonic. These are models that are made easily accessible…
By Adejumo Ridwan Suleiman | May 12, 2025


Are you SOLID yet? Applying SOLID Principle in my Django Project

Coding is not just about writing line of codes. There are also some kind of “law” to follow for developers. One of the most popular…
By astrialyanda | May 12, 2025


Exploring What Drives Term Deposit Subscriptions: An EDA Story (Part 1)

In the banking world, term deposits are a vital pillar of financial health. But convincing customers to commit their funds is no small feat…
By Abdul Hadi | May 12, 2025


Start a new Django Project

What is Django?
By Haider Ali | May 12, 2025


Start a new Django Project

What is Django?
By Haider Ali | May 12, 2025


Deploying a Django Application on Azure Container Instances (ACI)

This step-by-step guide will walk you through deploying a Django application on Azure Container Instances (ACI) from scratch, including…
By Sibinraziya | May 12, 2025


Django ORM vs Raw SQL in 2025: How to Turbo-Charge Your Queries

A modern Django project collects features the way ships collect barnacles. Add a couple of background tasks, real-time dashboards, fancy…
By Aleksei Aleinikov | May 12, 2025


Plug-and-Play Reinforcement Learning for Real-Time Forecast Recalibration

Updating legacy ARMA sales models with a PPO residual corrector — no full retrain required
By Shenggang Li | May 12, 2025


How to split up a Django monolith without using microservices

Let’s queue(bie) our business logic
By Ronny Vedrilla | May 12, 2025


From Django to FastAPI: A Developer’s Guide to Microservices and Asynchronous Development

Step-by-step Guide to Supercharge Your Python APIs by Transitioning from Django to FastAPI for Scalable Microservices
By Tech Node | May 12, 2025


How I Automate 5 Annoying Tasks with Python (So I Never Have to Do Them Again!)

Here’s how I use Python to automate 5 annoying tasks — so I never have to do them manually again!
By Pythonworld | May 12, 2025


Django REST Framework: Authentication & Permissions

We’ll walk through how to secure your Django REST Framework API using Django’s default cookie-based authentication. You’ll…
By Michal Dróżdż | May 12, 2025


🧠 Common Django Mistakes Almost Every Developer Makes (Yes, Even You)

“Django makes it easy to build web apps!”
 True.
 “Django makes it impossible to mess up!”
 🤣 Nice try.
By Priyanshu Rajput | May 12, 2025


Peewee ORM: The Most Elegant Python ORM Ever

Peewee Query Tutorial: Efficient Data Manipulation with a Lightweight ORM
By Leapcell | May 12, 2025


Song of Silk and Performance

Performance optimization often feels like a late-stage concern in web development — something we address only after users start…
By MRadhitya Utomo (Tomi) | May 13, 2025


Python, Software Development, and Tools — Digest #29

Django tips, Python type hints, Bloom filters, pre-commit with uv, and PDF conversion — practical dev notes from recent reads & posts.
By Denys Volokh | May 13, 2025


Python Radio 38: Laser Beams!

Frickin’ Laser Beams!
By Simon Quellen Field | May 13, 2025


DIY AI & ML: NLP — Tokenization & Text Similarity

A step-by-step guide on how to build an object in Python that preprocesses text, performs tokenization, and calculates cosine similarity.
By Jacob Ingle | May 13, 2025


I Fine-Tuned an LLM on 5 Years of Telegram Chats

What happens when you teach a language model to talk like your group chat?
By Alessandro Romano | May 13, 2025


🕵️‍♂️ The Most Underrated Features in Django You Probably Don’t Use

You know Django for its ORM, admin panel, and authentication system. But hiding in plain sight are features so powerful, they might just…
By Priyanshu Rajput | May 13, 2025


FastAPI 102: How to Build GET, POST, PUT, and DELETE Endpoints

As a second article in our FastAPI, we are gonna learn about API Endpoints and How to handle request and response like a Pro.
By Projects Explained | May 13, 2025


FastAPI 102: How to Build GET, POST, PUT, and DELETE Endpoints

As a second article in our FastAPI, we are gonna learn about API Endpoints and How to handle request and response like a Pro.
By Projects Explained | May 13, 2025


13 Python Scripts To Automate Your Daily Tasks

Real Python Scripts I Use to Save Time, Stay Organized, and Avoid Daily Frustrations
By PURRFECT SOFTWARE LIMITED | May 13, 2025


Matplotlib Alternatives That Actually Save You Time

If you find Matplotlib leaving a lot to be desired, you’re not the only one. While it’s not a bad library, you might find these five…
By Nathan Rosidi | May 13, 2025


FastAPI Task Management API — Complete Guide for Beginners

📄 Overview
By Hafsa Kamali | May 13, 2025


How Can You Bottle a Web App? Let’s Dockerize a Flask App and See the Magic!

Have you ever dreamed of packaging your web app like a lunchbox — ready to go, easy to open, and works anywhere? That’s exactly what…
By Ayushmaan Srivastav | May 13, 2025


Learning FastAPI — 14: Background Task

Background tasks allows you to run function after the response is received without blocking the client. For example, sending an email…
By Alen Sabu | May 13, 2025


How I Built a Fraud Detection System with Machine Learning and FastAPI 🚨

Fraudulent transactions are a massive problem for financial institutions. I wanted to tackle this using machine learning, build a robust…
By Manuel Alejandro Matías Astorga | May 13, 2025


Django Tutorial: Writing a Breadcrumb CBV Mixin

This tutorial will walk you through how to create a new Mixin which will automatically generate breadcrumbs to our CBVs
By Adrien Van Thong | May 13, 2025


Django Tutorial: Writing a Breadcrumb CBV Mixin

This tutorial will walk you through how to create a new Mixin which will automatically generate breadcrumbs to our CBVs
By Adrien Van Thong | May 13, 2025


Getting Started with FastAPI

Your First Step Towards Building High-Performance APIs
By Dua Fatima | May 13, 2025


Unlocking Python’s Potential: Why ‘ty’ Is the Tool You Didn’t Know You Needed

Introducing a lightweight type checker that seamlessly integrates into your workflow, enhancing code quality without added complexity
By Gwang-Jin | May 13, 2025


The Code Ophanim

I like using Vscode — it is easy to set up and equally easy to use. Its side effects of RAM consumption aside, for a beginner or someone…
By Joshua Agar | May 13, 2025


97% of Python Projects Could Be Cleaner With partial()

Discover how functools.partial() can eliminate boilerplate, reduce complexity, and make your Python code cleaner and smarter.
By Aashish Kumar | May 13, 2025


🚀 FastAPI vs Django: Which One Should You Choose for Your Next Project?

When it comes to building modern web applications or APIs in Python, two names often come up: Django and FastAPI. Both are powerful…
By Taha Ex | May 13, 2025


5 Hidden Gem Python Libraries You Should Know About!

explore five lesser-known but powerful Python libraries that can enhance your coding efficiency and productivity.
By Pythonworld | May 13, 2025


How I Slashed a DELETE Query from 3 Minutes to 2 Seconds in PostgreSQL

A performance deep dive into foreign keys, trigger costs, and the one index that saved our production environment.
By Ijaz Ur Rahim | May 13, 2025


How to Use Django Models in FastAPI for Scalable Async APIs

Integrate your existing Django models with FastAPI using Autobase for improved performance and seamless data handling across multiple apps.
By Tech Node | May 13, 2025


Smarter multi-label predictions with adaptive few-shot prompting

A modern approach to solving text-based multi-label classification tasks is to leverage large language models (LLMs). In a zero-shot…
By Alexandr Dzhumurat | May 13, 2025


“The Great Table Duplication Heist: How to Catch and Mark Sneaky Repeated Cells in DOCX Tables”

Because copy-paste is the programmer’s best friend… until it isn’t.
By Anzalo Quin | May 13, 2025


Building an Intelligent Vacuum Cleaner Simulator: Architecture and AI Algorithms

Project Overview
By Devendra Parihar | May 13, 2025


Build a Mass Email Sender in Django Using an HTML Form

Sending mass emails is a common requirement for businesses, schools, and developers. In this tutorial, we’ll build a Mass Mailer in Django…
By PRAVESH GREWAL | May 13, 2025


🚀 Boost Your FastAPI App with Redis: A Beginner-Friendly Guide

Learn how to integrate Redis into your FastAPI application for blazing-fast caching, session management, or real-time features.
By Ramesh kannan s | May 13, 2025


🚀 Deploying a Python FastAPI App to Azure App Service

In this blog, we will walk through deploying a sample project built using Python and FastAPI to Azure App Service.
By Anshusingh | May 14, 2025


Step-by-Step Guide: Setting Up a Production-Ready Ubuntu Server and Deploying your FastAPI app

In this guide, you’ll learn how to:
By Vineet Sarpal | May 14, 2025


Strategic Git Setup for FastAPI/Flask Projects: An Architect’s Handbook

When starting a new FastAPI/Flask project, setting up your repository correctly from Day 1 can save a lot of future headaches. In this…
By Tej G | May 14, 2025


🌀 Mastering async/await in Python: The Future of Concurrency

In the ever-evolving world of Python, one paradigm has quietly transformed the way developers handle I/O-bound and high-latency operations…
By Rohan Mistry | May 14, 2025


A Simple Custom JWT Authentication System in FastAPI

Hi everyone! I’d like to share with you my simple authentication system, which is based on access and refresh tokens. I’ll cover how to…
By Ievgen Kviatkivskyi | May 14, 2025


Learning FastAPI —15: Using MongoDB

FastAPI can also use NoSQL databases such as MongoDB, Cassandra, CouchDB, etc. as the backend for the CRUD operations of a REST app. In…
By Alen Sabu | May 14, 2025


Fixing One of Django’s Most Annoying Errors: “The SECRET_KEY must not be empty”

So I was setting up a simple Django project the other day — nothing fancy, just a quick prototype. I had everything ready: models, views…
By Mojtaba Azad | May 14, 2025


Zero-friction FastAPI + Postgres template 2025 for every side-project

Each time I kicked off a fresh front-end experiment I found myself repeating the same backend choreography: install FastAPI, stand up a…
By Aleksei Aleinikov | May 14, 2025


5 Python CLI Tools That’ll Make Your Life So Much Easier

These 5 Python-powered CLI tools can automate tasks, boost productivity, and streamline your daily workflow.
By Aashish Kumar | May 14, 2025


Building an Anonymous Chat App: A Hands-On Guide

This tutorial will walk you through creating a fully anonymous, real-time chat application. We’ll cover everything from setting up the…
By Can Kahraman | May 14, 2025


Building an Anonymous Chat App: A Hands-On Guide, Chapter [2/5]

In this chapter, we develop the backend for our anonymous chat application using Flask, Socket.IO and Redis. The backend manages real-time…
By Can Kahraman | May 14, 2025


💣 Scaling Django to 1 Million Users: The Database Bottleneck No One Warned You About — Part 2

Master database scaling for Django! Learn key strategies for managing 1 million users, from ORM optimizations to connection pooling.
By Sanjay Prajapati | May 14, 2025


Django Student Management App: End-to-End Guide

This guide walks you through building a fully functional Student Management System using Django. It explains models, migrations, views…
By PRAVESH GREWAL | May 14, 2025


Building an MCP server as an API developer

Anthropic released MCP at the end of November 2024. It took a few months for it to catch on, but my, oh my, it feels like the community is…
By Heeki Park | May 14, 2025


Code PiPeLine #10 — Effortless Deployment: Automatic Data Seeding and Migration in Django with…

If you’ve ever worked on a Django project that needed to go into production, you’ve likely run into the challenge of keeping both the…
By Steven Faustin Orginata | May 14, 2025


Django Audit Logging: The Best Libraries for Tracking Model Changes with PostgreSQL

“Don’t trust your memory . Trust your logs.”
 Even a simple audit trail can save hours of debugging and deliver peace of mind during…
By Marília Bontempo | May 14, 2025


FastAPI + WebSockets + React: Real-Time Features for Your Modern Apps

In today’s world, users expect instantaneous experiences — whether it’s chat messaging, live updates, or collaborative tools. To build…
By Suganthi | May 15, 2025


Asynchronous Thumbnail Generation in Django REST Framework Like a Pro

In most web applications, image upload is a fundamental feature. But simply storing original images isn’t enough — we often need optimized…
By Vitaly Sem | May 15, 2025


Lessons about Backend Scalability, part 1

Over the past few months, I’ve had the opportunity to work closely with a developer significantly more experienced than me. This…
By José Sobral | May 15, 2025


Lessons about Backend Scalability, part 1

Over the past few months, I’ve had the opportunity to work closely with a developer significantly more experienced than me. This…
By José Sobral | May 15, 2025


Django Forms vs Serializers

When building a Django backend-only application (no server-rendered HTML), it’s important to choose the right tool for data validation and…
By Daniel Busch | May 15, 2025


MCPs + LangChain: From Zero to Hero

Series on becoming a better Data Scientist
By Andres Felipe Tellez Yepes | May 15, 2025


Effortless Async in Django with a Custom Context Manager

Working with Django’s ORM in an async Python world can be a huge pain. While Django has made strides toward async support, its ORM is…
By Jacob Young | May 15, 2025


FastAPI Responses: A Practical Guide to Customizing API Outputs

When building APIs with FastAPI, one of the most important aspects is how your application responds to clients. Whether you’re returning…
By Ramesh kannan s | May 15, 2025


Ambatuscrum #10: Pushing the Limits: A Guide to Stress Testing and Modern Software Quality…

In the relentless digital race, delivering software that is not just functional but also robust, reliable, and secure is paramount. This is…
By Soros F | May 15, 2025


Deploying a Flask To-Do App with Docker, Nginx, and MySQL

Introduction
By Lahcen Khouchane | May 15, 2025


How I Built a Feedback App That Reduced Manual Reporting by 90% Using Django

In my college, feedback collection was traditionally done through Google Forms. While it was simple to use, it came with some real issues:
By Oviyan S | May 15, 2025


Python Lists vs Arrays: A Comprehensive Comparison

When working with Python, you’ll often need to store and manipulate collections of data. Two common choices for this are Python lists and…
By Singhasouvik | May 15, 2025


❌ Common Mistakes Developers Make While Building FastAPI Applications

FastAPI has earned a stellar reputation for being fast, intuitive, and feature-rich. Its automatic docs generation, async support, and type…
By Ramesh kannan s | May 15, 2025


⚔️ Rust vs Python: A Performance Showdown Between Pandas and Polars

For years, Pandas has been the go-to library for data manipulation in Python. But recently, Polars, written in Rust, has been gaining…
By Matías Salinas | May 15, 2025


From Confusion to Deployment: My First End-to-End Data Science Project

By Emmanuel Olafisoye
By Emmanuel Olafisoye | May 15, 2025


Why Your Django Imports Are Slower Than They Should Be

A while ago, I was reviewing a Django project that needed to import a large JSON file containing data for countries, cities, and villages.
By Shima Fallah | May 15, 2025


🚀 Advanced Content Negotiation in DRF

Beyond the basics, you can leverage content negotiation for API versioning, custom headers, and dynamic format selection.
By Ewho Ruth | May 16, 2025


Bulletproof JWT Authentication in FastAPI: A Complete Guide

In modern web applications, securing API endpoints is non-negotiable. JSON Web Tokens (JWTs) have become the industry standard for API…
By Ancilar Technologies | May 16, 2025


🚀 Asynchronous Content Negotiation in DRF

Asynchronous processing in Django REST Framework (DRF) is crucial when dealing with high-performance APIs, streaming data, or long-running…
By Ewho Ruth | May 16, 2025


🔥 WebSockets + GraphQL Over Django Channels (with Async Content Negotiation) 🚀

If you want to combine WebSockets, GraphQL, and async content negotiation, you’re in the right place! This setup allows real-time GraphQL…
By Ewho Ruth | May 16, 2025


🌐 WebSockets + Async Content Negotiation in DRF 🚀

WebSockets remove the need for traditional request-response cycles, allowing real-time communication between clients and servers.
By Ewho Ruth | May 16, 2025


🌐 WebSockets + Async Content Negotiation in DRF 🚀

WebSockets remove the need for traditional request-response cycles, allowing real-time communication between clients and servers.
By Ewho Ruth | May 16, 2025


Building a Dynamic Data Map API with Django and Django REST Framework

In many data-centric applications, we need to represent complex maps enriched with different types of variables — numbers, strings…
By Osirus Djodji | May 16, 2025


Is Django Dead in 2025? The Uncomfortable Truth About This Python Giant

In the fast-paced theater of web development, whispers often turn into narratives, and the buzz around newer, leaner frameworks can…
By Dimas Yoga Pratama | May 16, 2025


Understanding select_related and prefetch_related in Django DRF: A Comparison with SQL Queries

Django, a high-level Python web framework, is renowned for its ORM (Object-Relational Mapping) system, which simplifies database…
By Singhasouvik | May 16, 2025


My 16 Year Old Vibe Coded His School Project With GitHub Copilot

It was a sunny Sunday morning and I was sitting in the garden when suddenly my wife Nicole came out and gave me the looks that can cause an…
By Jan Kammerath | May 16, 2025


Django MongoDB IntegratiCRUD

Introduction to Django with MongoDB
By Sibinraziya | May 16, 2025


Mastering Django Permissions: A Guide to Custom User Access Control

Access control is a fundamental part of building secure web applications. In Django, while the built-in IsAuthenticated and IsAdminUser…
By Shiladitya Majumder | May 16, 2025


Backend Bootcamp in Patna: Learn Django, APIs & Cloud with CIMAGE.AI

Are you a student of BCA, BSc IT, or MCA wondering how to take your backend development skills to the next level? If you’ve been searching…
By CIMAGE College, Patna | May 16, 2025


FastAPI Tutorial for Beginners: Build and Deploy High-Performance Python APIs

🧩 Introduction: Why FastAPI?
By Prabhatzade | May 16, 2025


How to secure your app metrics from public access

Whether you’re building a simple service or a complex distributed system, one truth remains: collecting metrics is an absolute necessity…
By Natalia Maltseva | May 16, 2025


The Ultimate Guide to CORS: Making Your Web Apps Play Nice

Imagine you’re at a party, and your browser is trying to flirt with a server across the room. Being a cautious type, the server says…
By Ashish Pandey | May 16, 2025


FastAPI Users: The Ultimate Registration and Authentication System Built on FastAPI

FastAPI Users: Secure, customizable auth system for FastAPI. Features registration, login, OAuth2 & more. Boost dev efficiency!
By Meng Li | May 16, 2025


Learning FastAPI — 16: Connecting With Frontend

CORS
By Alen Sabu | May 16, 2025


FastAPI Isn’t Flashy : But It Might Be the Future of Intelligent Systems…

Why This Python Framework Is the Secret Weapon Behind GenAI and ML Apps in 2025 🎼
By R. Thompson (PhD) | May 16, 2025


Deploying a FastAPI application on a local cluster of Kubernetes

Deploying FastAPI on a local Kubernetes cluster is a great way to simulate production environments and ensure your API scales reliably. In…
By Santiago Álvarez | May 16, 2025


Automating Deployment of a Flask Application to AWS ECS with GitHub Actions

You don’t have to sit at your terminal for hours waiting to send your app to AWS. Now, with a single git push, you can convert your code…
By Hakan Bayraktar | May 16, 2025


Modelling a Drip Campaign/Automation Workflow with Django

Sequentially and conditionally execute actions for users and tasks in Django? Here’s one way to do it
By Emmanuel Katchy | May 16, 2025


Why Python’s asyncio is a Must Know for Every Developer!

Tired of spaghetti threaded nightmares? asyncio is the future—and it doesn't care if you're scared of change.
By Aysha R | May 16, 2025


Custom Colors in Tailwind CSS v4 with Django-Tailwind

If you like me scouring the web, AI Models, or Stack Overflow trying to find out how to add custom colors to Tailwind, you may have come…
By Heriberto Roman | May 17, 2025


How I Finally Deployed My Flask App on AWS (Without Losing It)

🧐 What You’re Really Learning Here:
By Joseph A Leto | May 17, 2025


Building Enterprise Python Microservices with FastAPI in 2025 (1/10): Introduction

Building an enterprise-grade FastAPI microservice architecture — uv, Docker, Kafka, Debezium, PostgreSQL, Pytest, DynamoDB (AWS), IAM…
By Asbjorn Bering | May 17, 2025


Building Enterprise Python Microservices with FastAPI in 2025 (2/10): Project Introduction

Building an enterprise-grade FastAPI microservice architecture — uv, Docker, Kafka, Debezium, PostgreSQL, Pytest, DynamoDB (AWS), IAM…
By Asbjorn Bering | May 17, 2025


Building Enterprise Python Microservices with FastAPI in 2025 (3/10): Project Setup

Building an enterprise-grade FastAPI microservice architecture — uv, Docker, Kafka, Debezium, PostgreSQL, Pytest, DynamoDB (AWS), IAM…
By Asbjorn Bering | May 17, 2025


A Scalable Approach to FastAPI Projects with PostgreSQL, Alembic, Pytest, and Docker Using uv

FastAPI is a modern, high-performance web framework that makes it easy to build APIs. However, as projects grow, structure matters: a clear…
By Arafat Hussain | May 17, 2025


Dockerizing Django with uv, Postgres, and Redis

uv is that one tool to manage them all in Python. Let’s speed up Docker!
By Hojiakbar Barotov | May 17, 2025


The Benefits of Full Stack Development

In today’s rapidly evolving digital landscape, the demand for versatile and adaptable professionals has never been greater. Among the most…
By Khan | May 17, 2025


Understanding Performance Bottlenecks in FastAPI with CPU-Bound Tasks 🚧

FastAPI has rapidly become one of the most popular Python web frameworks, praised for its speed, simplicity, and excellent support for…
By Ramesh kannan s | May 17, 2025


Understanding FastAPI: Building Production-Grade Asynchronous Applications with MCP

As the demand for real-time, responsive, and scalable AI applications grows, building robust asynchronous APIs becomes essential. In this…
By Riley Learning | May 17, 2025


💻 Should Python Developers Learn AI 🧠? (Here’s the Straight Answer)

Should Python developers learn AI? Here’s the no-hype answer, plus how to get started without changing careers.
By Sanjay Prajapati | May 17, 2025


💻 Should Python Developers Learn AI 🧠? (Here’s the Straight Answer)

Should Python developers learn AI? Here’s the no-hype answer, plus how to get started without changing careers.
By Sanjay Prajapati | May 17, 2025


From Broken APIs to Bulletproof AI Agents: How Pydantic Saves Your Stack

Pydantic is a Python library that makes data validation and parsing not just easy, but elegant. It lets you define schemas using Python’s…
By Vamshi Krishna Ginna | May 17, 2025


How I(WE) Found (and Fixed) First Race Condition Bug in Django

One of the applications had a state that seemed a bit weird. My first instinct — let’s look at the state of the application across its…
By alphaBEE | May 18, 2025


Customizing API Metadata in Django REST Framework (DRF)

The OPTIONS method in DRF provides metadata about API endpoints, such as allowed HTTP methods, available content types, and field…
By Ewho Ruth | May 18, 2025


Third-Party Packages for Metadata Handling in Django REST Framework (DRF)

While Django REST Framework provides basic metadata handling, third-party packages extend its capabilities to make metadata more useful for…
By Ewho Ruth | May 18, 2025


Customizing and Optimizing metadata handling in Django REST Framework (DRF) with a focus on OpenAPI…

1. Enhancing Metadata with OpenAPI Integration
By Ewho Ruth | May 18, 2025


Auto-Recovery for Django and Frappe: Instant Backups, One-Click Restore, and Smart Alerts

Imagine your Django or Frappe app crashes suddenly after a deployment or system update. The database becomes unreachable, the site goes…
By Pranav Dixit | May 18, 2025


6 — Digit Code to Password Reset to in Django

✅ Templates (Basic)
By Kanithkar Baskaran | May 18, 2025


Top 16 Django Questions for Intermediate to Advanced Developers

16 Common Advanced Django Questions
By Leapcell | May 18, 2025


Deploying SegWaste: From PyTorch Model to Cloud Inference with Flask, Docker & Google Cloud

Introduction
By Venkateswarlumopidevi | May 18, 2025


Stress testing for dummies in django

So what even is a stress test, or what the hell is testing anyway? so in software development, testing is essential to ensure that the…
By Fatih Raditya | May 18, 2025


Refactoring with Repository and Service Layer Patterns

Building enterprise applications involves managing complex business logic, data persistence, and user interactions.
By Reza Apriono | May 18, 2025


Software Engineering: Grafana Cloud

In my previous roles, Grafana and Prometheus were staples for monitoring, but they were always pre-configured by Platform or DevOps…
By Den Vashchuk | May 18, 2025


How Decorators Can Break FastAPI Endpoints (And How to Fix It)

As you saw in the code above, we clearly defined:
By Saharsh Solanki | May 18, 2025


If You’re Not Using DRF Serializers Properly, You’re Building a Time Bomb 🧨

Learn how DRF Serializers close real business gaps, boost performance, and protect your API from failure.
By Am Issath | May 18, 2025


Why the Django ORM Is the Beating Heart of Your App (And You’re Probably Underestimating It)

You can survive without templates. You can ditch the admin. But without the ORM, your Django app flatlines. Here’s why it matters more than…
By Am Issath | May 18, 2025


Django API Security Without Compromising Flow

APIs are the backbone of modern applications, and Django, with its REST framework (DRF), makes it incredibly easy to build powerful APIs…
By Abin M | May 18, 2025


Build a Complete Django Form with CSS Styling and Data Display

In this article, you’ll learn how to build a complete Django project where users can submit their name and email using a form. We’ll store…
By PRAVESH GREWAL | May 18, 2025



#PyCoders

Issue #681: – Loguru, GeoDjango, flexicache, and More

By | May 13, 2025



#Adam Johnson – Blogs

GitHub Actions: avoid double runs from

I’ve often seen a GitHub Actions workflow defined with a trigger like:
By Adam Johnson | May 14, 2025



#Dev.to

Render "GFM"-likely HTML in Sphinx with MyST-Parser

#sphinx #markdown #github #python
By kAZUYA tAKEI | May 12, 2025


Secure, Swift, and Smart: A Basic Guide to Building AI Agentic Workflows with Local Models

#ai #tutorial #python #mcp
By maverick tr | May 12, 2025


Optimizing SQL queries for your AI Agents.

#ai #sql #python #database
By Stephen Nwankwo | May 12, 2025


10 Django Packages You Should Be Using in 2025 (But Probably Aren’t)

#django #python #webdev #programming
By CodeWithDhanian | May 12, 2025


Revise Python in 15 days for ML (2025) : Day 3

#python #machinelearning #programming #beginners
By Ridwan Ahmed Arman | May 12, 2025


How to Compute the DFT of a Sine Wave in Python?

#python
By Generatecode | May 12, 2025


How to build a scalable crawler with Prefect v3 (PokeAPI Example)

#crawler #scraper #programming #python
By Yigit Konur | May 12, 2025


How to Resolve Python 401 Unauthorized Error with API

#python
By Generatecode | May 12, 2025


SQLModel & Alembic Tutorial

#sqlmodel #alembic #python #tutorial
By Marwan Chawa | May 12, 2025


How I Solved a Server-Side Template Injection Challenge (picoCTF Write-up)

#cybersecurity #ctf #python #github
By 00xtrkh | May 12, 2025


How to Efficiently Use JAX for Numerical Pipelines

#python
By Generatecode | May 12, 2025


Uso da programação assíncrona em Python visando um sistema responsivo e performático

#python #programming #performance #discord
By wguii | May 12, 2025


How to Resolve Django DISTINCT ON Order By Error

#python
By Generatecode | May 12, 2025


Creating an MCP server with Anthropic

#python #mcp #ai #api
By codecowboydotio | May 12, 2025


[] & () for variables in Python variable assignment

#python #list #tuple #variable
By Super Kai (Kazuya Ito) | May 12, 2025


How to Change Text Color in Messenger Bot with Python?

#python
By Generatecode | May 12, 2025


Anaconda vs Miniconda: Which one should you use for DS

#anaconda #python #ai #aitool
By vijay | May 12, 2025


How to Document Constants in Python Effectively?

#python
By Generatecode | May 12, 2025


Quark’s Outlines: Python Forbidden Characters

#programming #history #python #beginners
By Mike Vincent | May 12, 2025


How to Fix Input Type Checks in Python Age Calculator

#python
By Generatecode | May 12, 2025


urllib4-enhanced Lib

#urllib4 #python #urlib3 #http
By Zied | May 12, 2025


Fail Fast, Recover Smart: Timeouts, Retries, and Recovery in Orkes Conductor

#timeout #retries #recovery #python
By Orkes Developers | May 12, 2025


Task-Level Resilience in Orkes Conductor: Timeouts and Retries in Action

#python #timeout #retries #resilience
By Orkes Developers | May 12, 2025


Workflow-Level Resilience in Orkes Conductor: Timeouts and Failure Workflows

#timeout #resilience #retries #python
By Orkes Developers | May 12, 2025


How to Detect Your Own Reactions in Telethon with Python?

#python
By Generatecode | May 12, 2025


Best Practices for Odoo ERP Maintenance & Support

#odoo #erp #software #python
By Nirav Parmar | May 12, 2025


How to Resolve ImportError in Flask with Proper Structure?

#python
By Generatecode | May 12, 2025


⚡ Lightning-Fast REST APIs: Python & FastAPI

#webdev #programming #javascript #python
By Resource Bunk | May 12, 2025


Python Puzzles: Digging Up Those Elusive 4-Letter Words Starting With…

#python #algorithms #beginners #wordle
By bytecrafter | May 12, 2025


How I Built a $3K/Month No-Code Agency with $10 in 48hrs

#webdev #programming #javascript #python
By 0x7B Shop | May 12, 2025


Got Paid $500 for 5 Hours of Simple Web Dev

#webdev #programming #javascript #python
By 0x7B Shop | May 12, 2025


I Built a Real-Time Web Scraping Dashboard with Python

#webdev #programming #javascript #python
By Resource Bunk | May 12, 2025


I Turned My Terminal Into a Browser Using Python

#webdev #programming #javascript #python
By Abubaker Siddique | May 12, 2025


🕹️ I Turned My Flask App Into a Game — Every API Call Is a Level

#webdev #programming #python #beginners
By Abubaker Siddique | May 12, 2025


I just want to be friends with AI

#ai #productivity #python
By UKA | May 12, 2025


How I Let AI Mentor Me in Python One Script at a Time

#webdev #programming #python #ai
By Snappy Tuts | May 12, 2025


How I Built Micro Startups with GPT as My Co-Founder

#programming #python #ai #chatgpt
By Snappy Tuts | May 12, 2025


The Power of `yield from` in Python Generators

#python #learning #programming
By Heval Hazal Kurt | May 12, 2025


Using Ollama with Python: A Simple Guide

#howto #ollama #ai #python
By Jonathan Gastón Löwenstern | May 12, 2025


Why Python’s zip() Is More Powerful Than You Think

#devstory #datascience #python #cleancode
By BHUVANESH M | May 12, 2025


Why Python’s zip() Is More Powerful Than You Think

#devstory #datascience #python #cleancode
By BHUVANESH M | May 12, 2025


How to Calculate FID Score for Single-Channel MNIST Images?

#python
By Generatecode | May 12, 2025


#Q: Do you need a Zip Here?Let's see by solving this : Longest Common Prefix

#python #leetcode #dsa
By Thivyaa Mohan | May 12, 2025


Longest Common Prefix When Do You Need a Zip? Let's see by solving this : Pythonic Solution

#python #leetcode #dsa
By pythonic_solutions | May 12, 2025


Tired of using pprint to debug nested lists? Try visual structure tracing.

#programming #python #opensource
By mtur2007 | May 12, 2025


Building Virtus: How I Fine-Tuned a Vision Transformer to Spot Deepfakes

#machinelearning #ai #python #hackathon
By Rupam Golui | May 12, 2025


Intro to Machine Learning: A Practical Guide for Curious Coders

#machinelearning #python #tutorial #ai
By Kaemon Lovendahl | May 12, 2025


Check if All Characters Have Equal Number of Occurrences

#programming #python #dsa #leetcode
By Thivyaa Mohan | May 12, 2025


Check if All Characters Have Equal Number of Occurrences

#programming #python #dsa #leetcode
By pythonic_solutions | May 12, 2025


[] & () for variables in Python `for` statement

#python #brackets #parentheses #forloop
By Super Kai (Kazuya Ito) | May 12, 2025


Solving Modern Problems with AI and Automation: A Developer’s Guide

#ai #javascript #python #webdev
By Haleem safi | May 12, 2025


How I Clean My Messy Downloads Folder with Python — Automatically

#webdev #programming #python #productivity
By 0x3d Site | May 12, 2025


How to Properly Indent C++ Code Generated from Python?

#python
By Generatecode | May 12, 2025


Why Programming Languages Feel Like Pokémon

#javascript #programming #python #rust
By Coursedia | May 12, 2025


Peewee ORM: The Most Elegant Python ORM Ever

#python #django #flask #fastapi
By Leapcell | May 12, 2025


In the Programming World, There Are SIMPs Too

#discuss #programming #javascript #python
By Leon Martin | May 12, 2025


Why Are SHAP and Model Predictions Different in Python?

#python
By Generatecode | May 12, 2025


Finding the Row Containing a Target in a Sorted Matrix in Python

#webdev #programming #beginners #python
By Peter Muthama | May 13, 2025


Testing Paystack Webhooks with Ngrok and Django: A Hands-On Tutorial

#webdev #django #stripe #paystack
By Abdul | May 13, 2025


Graph Python data while debugging

#debugging #python
By Bas Terwijn | May 13, 2025


Building a Deep research agent with Qwen3 using LangGraph and Ollama

#webdev #programming #ai #python
By Developer Harsh | May 13, 2025


How to Convert Multidimensional Coordinates to Standard Coordinates in Xarray?

#python
By Generatecode | May 13, 2025


InterpolationMode in PyTorch (2)

#python #pytorch #interpolationmode #v2
By Super Kai (Kazuya Ito) | May 13, 2025


What is Python? Exploring the Versatile Language Behind AI, Web Dev, and More

#python #whatspython #pythontutorial #tutorial
By Python Tutorial | May 13, 2025


The Role of Automation in Email Marketing Using Python

#automation #python #webdev #programming
By Haleem safi | May 13, 2025


Issue Tracker Using Jira and Smartsheet

#programming #python #githubactions #opensource
By Nitish k | May 13, 2025


🛠️ From Python Script to Micro SaaS: Build a Monetizable Web App with Flask, Stripe, and SQLite

#webdev #javascript #python #startup
By Resource Bunk | May 13, 2025


🚀 DRF ViewSets & Routers Explained – Build REST APIs Faster with Django

#python #django #restapi #tutorial
By NJOKU SAMSON EBERE | May 13, 2025


⚡ Real-Time Data Dashboards with Python: Build a Lightning-Fast Web App for Live Metrics

#programming #javascript #productivity #python
By Resource Bunk | May 13, 2025


🧑‍🏫 How to Teach GPT to Code Python your way

#chatgpt #ai #python #coding
By Snappy Tuts | May 13, 2025


🧱 I Built My Python Web App Like a City (Not an App)

#python #webdev #programming #productivity
By Abubaker Siddique | May 13, 2025


What is Back-end engineering

#programming #backend #techtalks #python
By I'm Just a Guy with a Computer | May 13, 2025


Python Mutability

#python #data
By Bas Terwijn | May 13, 2025


3. Longest Substring Without Repeating Characters Solved

#programming #leetcode #python
By pythonic_solutions | May 13, 2025


Revise Python in 15 days for ML (2025) : Day 4 (Loop)

#programming #machinelearning #python #beginners
By Ridwan Ahmed Arman | May 13, 2025


"Motivation"? What even is that?

#motivation #productivity #python
By UKA | May 13, 2025


How to Scrape YouTube Comments Using Python

#javascript #python #tutorial #learning
By member_960fb7a7 | May 13, 2025


Escape Learning Loops and Build Projects for Profit

#sideprojects #startup #programming #python
By 0x4c | May 13, 2025


🧠 I Built a Python Script That Finds Duplicate Files So I Can Stop Wasting Storage

#programming #beginners #productivity #python
By 0x3d Site | May 13, 2025


🚀 Revolutionizing HR: Building a Smart, Engaging HR Assistant Chatbot with OpenAI

#opensource #openai #webdev #python
By Ramandeep Singh | May 13, 2025


beeware trouble

#discuss #beginners #python #cli
By Aragon YH J | May 13, 2025


How Async/Await Evolved from Generator-Based Coroutines

#python #learning #programming #async
By Heval Hazal Kurt | May 13, 2025


Compiled Programming Language- Part1 (Compiler)

#python #programming #compiling
By datatoinfinity | May 13, 2025


The Silent Power of join() in Concatenating Set Strings in Python

#programming #python #devops #tips
By BHUVANESH M | May 13, 2025


Flask API com DeepSeek-R1 via Ollama with Python

#deepseek #python #ai #ollama
By Jocimar Lopes | May 13, 2025


YouTube Video Manager (JSON-based) in Python

#python #json #programming #productivity
By Nivesh Bansal | May 13, 2025


# HumanFuzz

#programming #python #beginners
By Zied | May 13, 2025


Conversion with PIL Image, PyTorch tensor & NumPy array

#python #pytorch #numpy #conversion
By Super Kai (Kazuya Ito) | May 13, 2025


Why FastAPI Will Supercharge Your Next Python Project 🚀

#python #fastapi #webdev #api
By Emanuel Lopez | May 13, 2025


Interpreted Programming language- Part 2 (Interpreted)

#python #programming #compiling
By datatoinfinity | May 13, 2025


How to Filter DataFrame Columns in Python Based on Substrings?

#python
By Generatecode | May 13, 2025


Growth is the only evidence of life

#programming #python
By Anjan Paul | May 13, 2025


How to Set Album Art for MP3 Files using Python?

#python
By Generatecode | May 13, 2025


You Asked, I Coded: How I Turned AWS Architecture into a Diagram Using Code

#aws #architecture #documentation #python
By Romina Mendez | May 14, 2025


🚀 How I Deployed a Python Flask App with Docker and Troubleshot My Way to Victory 🛠️🐍🐳

#aws #docker #python #pythonflask
By BAKRE JAMIU | May 14, 2025


Recursion in Python

#recursion #python
By Bas Terwijn | May 14, 2025


How to Fix 403 Errors When Patching Asset Statuses in Python

#python
By Generatecode | May 14, 2025


Meet uv: The Lightning-Fast Python Toolchain That JS Devs Will Love 🚀

#python #javascript #tooling #programming
By AILI Fida Aliotti Christino | May 14, 2025


Conversion with PIL image, PyTorch tensor & NumPy array

#python #pytorch #numpy #conversion
By Super Kai (Kazuya Ito) | May 14, 2025


How to Accurately Extract Data from Subimages in Python?

#python
By Generatecode | May 14, 2025


Why Does My Python API Request Fail After Six Hours?

#python
By Generatecode | May 14, 2025


My Go-To Setup: Python Virtual Environments in VS Code for Multiple Projects

#vscode #python #poetry
By Parthiv Kativarapu | May 14, 2025


How to Select Rows from a DataFrame in Pandas Based on Column Values?

#python
By Generatecode | May 14, 2025


How to generate dynamic invoices for SaaS applications in Python 💸

#webdev #programming #python #tutorial
By Ethan from reportgen.io | May 14, 2025


How to Write Python Code Compatible with Both Python 2 and 3?

#python
By Generatecode | May 14, 2025


DIY Python Web Scraping Tool: Proxy IP Management and Optimization Tips

#webscraping #proxy #webdev #python
By member_960fb7a7 | May 14, 2025


5x Faster Email Testing with Python: A Complete Guide

#webdev #python #testing
By 晓杰 游 | May 14, 2025


GRPO to get structured data

#ai #llm #python
By Mayank Laddha | May 14, 2025


I Stopped a Mechanic From Getting Scammed by a Web Agency — and Built Him a Better Site in 5 Hours

#webdev #programming #startup #django
By 0x7B Shop | May 14, 2025


🌌 I Dreamt My Web App and Then I Built It Exactly As It Appeared

#python #react #webdev #javascript
By Abubaker Siddique | May 14, 2025


Most Overpowered Python Scripts You’ve Never Heard Of

#python #programming #coding #beginners
By Snappy Tuts | May 14, 2025


How to Download a File from Google Drive to a Linux Server using gdown (Python CLI)

#python #pip #googledrive #linux
By Rahul Suryavamshi | May 14, 2025


Top 7 Frameworks To Integrate MCP With LLMs

#mcp #ai #python #typescript
By Amos Gyamfi | May 14, 2025


🧠 Building Xion Apex as a Solo Dev: No Fancy Stack, Just Grit

#webdev #python #startup #devjournal
By Xion Apex Academy | May 14, 2025


What is a server?

#programming #javascript #productivity #python
By I'm Just a Guy with a Computer | May 14, 2025


How to Write a Simple Spam Bot in Python?

#python
By Generatecode | May 14, 2025


What is the difference between a spammer and a bot?

#python
By Generatecode | May 14, 2025


How to Avoid Creating Useless AI-Generated Content in Python?

#python
By Generatecode | May 14, 2025


How Does GenerateCode.dev Work? A Python Example

#python
By Generatecode | May 14, 2025


How I Learned Generative AI in Two Weeks (and You Can Too): Part 3 – Prompts & Models

#beginners #ai #learning #python
By Julia Zhou | May 14, 2025


FastAPI + SQLAlchemy: Full CRUDL App Tutorial

#webdev #programming #fastapi #python
By Ozee | May 14, 2025


Stop Overcomplicating Input Parsing

#python #programming #codequality #tutorial
By BHUVANESH M | May 14, 2025


InterpolationMode in PyTorch (3)

#python #pytorch #interpolationmode #v2
By Super Kai (Kazuya Ito) | May 14, 2025


How to Fix Undefined Preview Values in Streamlit-AgGrid

#python
By Generatecode | May 14, 2025


How to Post on DEV.to Using Python

#api #python #webdev
By Palak Singla | May 14, 2025


Building Agent-based GUIs: The Future of Human-Computer Interaction

#ai #python #vibecoding #programming
By Rakshith Dharmappa | May 14, 2025


🤖Building an Anime Recommender with Langchain Agents and A Custom Tool

#python #langchain #rag #tutorial
By Ngonidzashe Nzenze | May 14, 2025


💡Can ethical IP usage actually scale — or is it just another buzzword?

#cybersecurity #datascience #python #tooling
By Astro | May 14, 2025


Let’s Build the Future of Global Education – Together!

#webdev #opensource #community #django
By Ibrahim Abu Alroos | May 14, 2025


InterpolationMode in PyTorch (1)

#python #pytorch #interpolationmode #v2
By Super Kai (Kazuya Ito) | May 14, 2025


InterpolationMode in PyTorch (2)

#python #pytorch #interpolationmode #v2
By Super Kai (Kazuya Ito) | May 14, 2025


InterpolationMode in PyTorch (3)

#python #pytorch #interpolationmode #v2
By Super Kai (Kazuya Ito) | May 14, 2025


Using OCR for Data Extraction from Forms and Invoices

#ocr #machinelearning #python #tutorial
By Calum | May 14, 2025


How Order Changes Behavior in Chained Decorators

#python #learning #programming
By Heval Hazal Kurt | May 14, 2025


🧨 Python Scripts That Shouldn’t Exist — But Do

#programming #python #tutorial #opensource
By Snappy Tuts | May 15, 2025


Problem Solving with Python + Web Development

#webdev #javascript #python #tutorial
By Resource Bunk | May 15, 2025


🕵️‍♂️ I Solved a Murder Using Python, Flask, and HTML

#webdev #python #html #beginners
By Abubaker Siddique | May 15, 2025


Created an MCP Server for Trello (100% Open Source) 🚀

#webdev #python #mcp #ai
By Ramandeep Singh | May 15, 2025


Learning Python by Teaching Your Computer to Be Petty and Petty Good at It

#programming #beginners #python #tutorial
By 0x3d Site | May 15, 2025


Stock Market Price Prediction MODEL

#machinelearning #datascience #python #programming
By Sanjeev Deori | May 15, 2025


How to Perform Simple Addition with Nested Lists in Python?

#python
By Generatecode | May 15, 2025


Automatiser la récupération des repos github grace à python et Crontab

#automation #linux #python
By Nicolas OHLIN | May 15, 2025


Build Your Own Voice Chatbot From Scratch — A PocketFlow Tutorial!

#ai #python #programming #chatgpt
By Zachary Huang | May 15, 2025


What Are Today’s Top Movie Plots? I Wrote a Python Scraper to Find Out

#python #webscraping #movies #datascience
By Ahmad Azeez | May 15, 2025


How to Add a Custom Button in Odoo 18 CRM Module View Switcher?

#python
By Generatecode | May 15, 2025


How to Fix Common Errors When Using BERT with TensorFlow

#python
By Generatecode | May 15, 2025


Envoie des performances d'un système linux par mail avec python et crontab. Tuto rapide!

#linux #python #crontab #automation
By Nicolas OHLIN | May 15, 2025


How to Fix PydanticSchemaGenerationError with Nested DefaultDict in Python?

#python
By Generatecode | May 15, 2025


Automatiser l’envoi par mail de données fictives depuis MariaDB avec un script exécuté chaque minute

#mariadb #linux #crontab #python
By Nicolas OHLIN | May 15, 2025


Moving Away from Debian, Trying WSL, and Coming Back to Linux the Right Way

#linux #programming #python
By João Maranhão | May 15, 2025


🚀🧠💼The Ultimate AI & ML Career Roadmap for 2025: A Personal Journey

#ai #programming #python #roadmap
By Furqan Ahmad | May 15, 2025


7 MCP Sites Every AI Dev Should Bookmark

#python #javascript #ai #beginners
By Nomadev | May 15, 2025


Folder Monitor in Python with ntfy.sh Notifications

#python #files #watchdog #ntfysh
By Developer Service | May 15, 2025


🧑‍💻 Best First Programming Language to Learn in 2025

#programming #python #javascript #react
By Red9SysTech | May 15, 2025


📊 How to Become a Data Scientist from Scratch in 2025

#datascience #python #machinelearning #deeplearning
By Red9SysTech | May 15, 2025


How to Use Redis GET Command in Python

#python
By Generatecode | May 15, 2025


Why Do Submodules Fail to Import in Pytest for Subfolders?

#python
By Generatecode | May 15, 2025


What kind of “happy” is this?

#watercooler #python #json
By UKA | May 15, 2025


How to Control an Already Opened Chrome Browser with Python?

#python
By Generatecode | May 15, 2025


Never get caught off guard: Receive your server's health every minute by Email

#linux #python #automation #monitoring
By Philippe borribo | May 15, 2025


🔧 Monitoring Server Health with a Python Script That Runs Every Minute

#python #crontab #linux #automation
By Emmanuel Onesime | May 15, 2025


I Replaced Bash Scripts With Python One-Liners

#bash #python #programming #beginners
By Snappy Tuts | May 15, 2025


Why You Should Use Python — No Bullshit

#programming #python #webdev #velvosoft
By Velvosoft | May 15, 2025


How AI Is Transforming Telegram Bot Development

#programming #ai #python #discuss
By Ivan Lysak | May 15, 2025


Electricity Bill Program in Java

#programming #javascript #python #career
By khushi | May 15, 2025


Start of a beautiful journey

#webdev #programming #beginners #python
By Abdulsamad Adebayo | May 15, 2025


Creating Declarative APIs with Class Decorators in Python

#python #oop #learning #programming
By Heval Hazal Kurt | May 15, 2025


Why Use train() in nn.Module When forward() is Called?

#python
By Generatecode | May 15, 2025


Mastering Advanced Async Patterns in Python: Building High-Performance Applications

#programming #devto #python #softwareengineering
By Aarav Joshi | May 15, 2025


OCR for Historical Documents and Unusual Fonts

#ocr #machinelearning #python #tutorial
By Calum | May 15, 2025


Python Tutorial for Beginners: Learn Python from Scratch

#python #webdev #programming #beginners
By Tpoint Tech | May 15, 2025


Automating Linux User Management with Python: Create and Delete Users

#tutorial #productivity #python #aws
By Mechack Onopese | May 15, 2025


Building Your First Agentic AI Workflow with OpenRouter API

#ai #python #beginners #tutorial
By Allan Niñal | May 15, 2025


Advanced Array Manipulation Techniques in Python

#python #programming #beginners #tutorial
By Peter Muthama | May 15, 2025


The Reason pip Suddenly Refuses to Install Globally

#python #pip #linux #devtools
By Saadman Rafat | May 15, 2025


YouTube-Video-Manager-with-SQLite3

#python #sqlite #beginners #viral
By Nivesh Bansal | May 15, 2025


Why is it so hard to forecast the Dollar rate? An attempt with Python

#datascience #economics #math #python
By José Thomaz | May 15, 2025


How to Fix RuntimeError When Running YOLOv8 Inference on CPU?

#python
By Generatecode | May 15, 2025


Mastering Flask Blueprints: The First Step to Scalable Web Apps

#webdev #flask #programming #python
By shravan jain | May 15, 2025


Batch OCR Processing for Large Document Collections

#ocr #machinelearning #python #tutorial
By Calum | May 15, 2025


Revise Python in 15 days for ML (2025) : Day 5 (Dic)

#python #machinelearning #tutorial #100daysofcode
By Ridwan Ahmed Arman | May 15, 2025


Your Code is a Money Printer: Trading Prop Firm Capital

#cryptocurrency #datascience #algorithms #python
By Funded Sim | May 15, 2025


Multiple Django apps on same port

#python #django #networking #devops
By Harnoor Puniyani | May 15, 2025


Using OpenAI’s Assistants API with LiveKit in Real-Time — Any Best Practices?

#openai #python #ai #llm
By Aman Tank | May 15, 2025


Step-by-Step Guide to Set Up a Cron Job to Run a Report

#sql #python #analytics #automation
By Seth Keddy | May 16, 2025


🎮 Choose Your Dev Character: The AI Startup RPG

#programming #python #ai #beginners
By 0x5A Live | May 16, 2025


How to Set Stop Loss and Take Profit in Python for Trading

#python
By Generatecode | May 16, 2025


Automating My Docker Apache Server with Python

#docker #python #aws #automation
By Jude Wakim | May 16, 2025


Jugando un poco con estadística y Python.

#programming #mathematica #python #spanish
By Hermann Pollack (hpollack95) | May 16, 2025


Decorator Patterns in Practice: Python, Java, JavaScript, Ruby, and Scala

#python #java #javascript #ruby
By Leapcell | May 16, 2025


🚀 Just launched EnvGuard! Type-safe environment variable validation for Python (Pydantic) & Node.js (Zod).

#python #node #serverless
By C.S. Chanh Niem | May 16, 2025


TimeCraft: Simplificando Análise de Séries Temporais e Automação

#datascience #automation #ai #python
By Rafael Mori | May 16, 2025


Python chatbot under 10 lines of code.

#python #gemini
By Shelwyn Corte | May 16, 2025


TimeCraft: Simplifying Time Series Analysis and Automation

#datascience #automation #ai #python
By Rafael Mori | May 16, 2025


Django Proxy Models: The Secret Weapon for Cleaner, Simpler Code

#webdev #architecture #django #python
By Vlad Ogir | May 16, 2025


Run Code in Your Browser: Best Online Compilers for C++, PHP, Python, Java, C#, Go & More

#programming #javascript #python #react
By Crypto.Andy (DEV) | May 16, 2025


5-Layer Windows Registry Anomaly Detection Using Python

#security #cybersecurity #python #career
By Shreyas Hainalkar – | May 16, 2025


My Journey Through Python Virtual Environments

#python #programming #virtualenvironments
By Sajad Jalilian | May 16, 2025


How I Used Python and Time-Series Data to Detect Energy Spikes from EV Chargers

#python #datascience #timeseries #programming
By Sriram M | May 16, 2025


Real-Time Data Processing with Apache Spark Structured Streaming

#programming #apache #analytics #python
By FOLASAYO SAMUEL OLAYEMI | May 16, 2025


Can we make AI feel excited?

#ai #ux #architecture #python
By UKA | May 16, 2025


What is Nginx ?

#python #programming #writing #coding
By Vincent Tommi | May 16, 2025


Selenium with Python Interview Questions and Answers (2025)

#selenium #python #interviewquestions
By Morris | May 16, 2025


Improving OCR Accuracy for Better Text Recognition

#ocr #machinelearning #python #tutorial
By Calum | May 16, 2025


Python 101:The Ultimate Beginner’s Guide

#python #dataengineering #learning
By Doreen Jerotich | May 16, 2025


This Week In Python

#python #thisweekinpython
By Bas Steins | May 16, 2025


[Hack] PicoCTF: Low Level Binary Intro – Intro to Debuggers

#cybersecurity #ctf #assembly #python
By Falme Streamless | May 16, 2025


Real-Time API Token Leak Detection & Response with Python

#python #security #devops #automation
By Pranav Dixit | May 16, 2025


Parameters & Arguments in Python function

#python #parameter #argument #function
By Super Kai (Kazuya Ito) | May 16, 2025


Positional-Only Parameters in Python function

#python #parameter #argument #function
By Super Kai (Kazuya Ito) | May 16, 2025


Keyword-Only Parameters in Python function

#python #parameter #argument #function
By Super Kai (Kazuya Ito) | May 16, 2025


Positional & Keyword-Only Parameters in Python function

#python #parameter #argument #function
By Super Kai (Kazuya Ito) | May 16, 2025


Flask y MVC: Conceptos e Instalación.

#spanish #flask #python #webdev
By Hermann Pollack (hpollack95) | May 16, 2025


Converting Scanned Documents to Searchable PDFs

#ocr #machinelearning #python #tutorial
By Calum | May 16, 2025


Real-time, offline, voice conversations with custom chatbots

#ai #opensource #python
By Joe Curlee | May 17, 2025


Python Variables Explained for Beginners

#beginners #programming #python #career
By Nagachinmay KN | May 17, 2025


Syncing Obsidian Notes to Notion by Python Script (Part 2) – Create New Pages Based on Tags

#notion #obsidian #python
By koshirok096 | May 17, 2025


Code Less, Prompt Better: Unlocking Python's Built-in LLM Enhancers

#llm #python #programming
By angu10 | May 17, 2025


Transcribing mp3 files locally with OpenAI's whisper model

#python #mp3 #openai
By Talles L | May 17, 2025


How AI and Python Helped Modernize a Legacy Insurance System

#programming #ai #python #discuss
By Balakrishna Sudabathula | May 17, 2025


Why Wait for CI? Shift Left with Pre-commit Hooks

#ci #python #git
By Ashok Nagaraj | May 17, 2025


Back-End Web Development Outsourcing (Node.js, Django, Laravel)

#backenddevelopment #outsourcing #node #django
By Bridge Group Solutions | May 17, 2025


Variable assignment in Python

#python #variable #assignment #value
By Super Kai (Kazuya Ito) | May 17, 2025


Shallow Copy & Deep Copy in Python

#python #list #shallowcopy #deepcopy
By Super Kai (Kazuya Ito) | May 17, 2025


📄 Automate your .docx workflow in 2025 — no more copy‑paste marathons.

#python #programming #webdev #beginners
By Aleksei Aleinikov | May 17, 2025


🐚 Bash vs Python in 2025: Which Script Wins Your Workflow?

#python #bash #programming #automation
By Aleksei Aleinikov | May 17, 2025


🧠 Launch AI Agents in 2025 With LangChain (No PhD Needed)

#ai #aiagent #python #programming
By Aleksei Aleinikov | May 17, 2025


Django ORM vs Raw SQL in 2025: When to Drop Down and Why

#python #django #webdev #programming
By Aleksei Aleinikov | May 17, 2025


Async I/O + CPU Tasks in 2025: Keep the Loop Fast and Cores Busy

#python #webdev #programming #beginners
By Aleksei Aleinikov | May 17, 2025


Pandas vs Polars in 2025: Who Wins the Data Speed Race?

#pandas #polars #python #programming
By Aleksei Aleinikov | May 17, 2025


🐍 FastAPI + Postgres Template 2025: One Command to Launch Any Side Project

#python #postgres #fastapi #programming
By Aleksei Aleinikov | May 17, 2025


Day 4 of Learning: Switching Between Golang and Deep Learning

#go #programming #beginners #python
By Shivam Chhuneja | May 17, 2025


🔐 Control Cloudflare Infrastructure Using AI + MCP (with Python Example)

#mcp #python #tutorial #ai
By Aditya | May 17, 2025


Process to Create a Movie Recommender in the Terminal

#python
By DouglasG98 | May 17, 2025


Introducing a new command to the Python Polylith tool

#polylith #python #opensource #architecture
By David Vujic | May 17, 2025


Write Less, Reuse More: Template Inheritance in Flask Explained

#flask #programming #webdev #python
By shravan jain | May 17, 2025


🛠️ Currently Learning:

#learning #frappe #python #erpnext
By Nimo Ali | May 17, 2025


Explore Space with Python: Using CosmoTalker Library

#python #cosmotalker #programming #opensource
By BHUVANESH M | May 17, 2025


Python for Oracle – oracledb driver for ARM Linux | Getting Started – Part 1 : Essentials

#oracle #python #linux #arm
By Abhilash Kumar | Oracle ACE ♠ | May 17, 2025


Why Queues Obliterate Lists in the Digital Battlefield

#codereview #code #coding #python
By owly | May 17, 2025


"Fetch Random User Data Using Python and Free Public API"

#python #api #beginners #tutorial
By Nivesh Bansal | May 17, 2025


NLP: Deep dive Term Frequency

#nlp #ai #programming #python
By Rishi Agrawal | May 17, 2025


Surfgram – new era of Telegram Bots

#programming #python #rust
By idk | May 17, 2025


How to Build an AI Reporting App with Python, LLM, and Model Context Protocol (MCP)

#python #ai #llm #mcp
By Dandi Pangestu | May 17, 2025


Introducing ShadowBox: A Privacy-First Cloud Storage App

#opensource #flutter #python #privacy
By Dillion Huston | May 17, 2025


Iterable unpacking in Python variable assignment

#python #iterableunpacking #variable #assignment
By Super Kai (Kazuya Ito) | May 17, 2025


`*` iterable unpacking in Python variable assignment

#python #asterisk #iterableunpacking #variableassignment
By Super Kai (Kazuya Ito) | May 17, 2025


`*` iterable unpacking for Python function

#python #asterisk #iterableunpacking #function
By Super Kai (Kazuya Ito) | May 17, 2025


Python ↔ JavaScript? HTML ↔ JSX? Explore These Code Converters

#python #html #javascript #development
By beautifyyourcode | May 17, 2025


PyWebCopy: Your New Best Friend for Offline Web Archiving

#python #web #offline #website
By GitHubOpenSource | May 17, 2025


Building a Sentiment Analysis App with React, Flask, and Hugging Face Transformers

#ai #nlp #huggingface #python
By Allan Niñal | May 17, 2025


AI-Ready Congressional Data: Building a Python Tool for Plaintext Extraction

#python #webscraping #government #ai
By Bryan Doss | May 17, 2025


From SaaS to Self-Hosted: Unlocking On-Prem Power with Authentik

#programming #beginners #tutorial #python
By Shrijith Venkatramana | May 17, 2025


How I Improved My Coding Skills by Building Small Projects

#webdev #programming #devops #python
By Ammar souleiman | May 18, 2025


Lambda in Python

#python #lambda #expression #function
By Super Kai (Kazuya Ito) | May 18, 2025


`**` dictionary unpacking in Python

#python #asterisk #dictionaryunpacking #function
By Super Kai (Kazuya Ito) | May 18, 2025


VideoSnap Vision: Real-Time Object Recognition PWA Architecture

#webdev #javascript #python #machinelearning
By Tejasvi | May 18, 2025


*args & **kwargs in Python function

#python #args #kwargs #function
By Super Kai (Kazuya Ito) | May 18, 2025


🚨 Say hello to EvoAgentX — The World’s First Self-Evolving AI Agent Framework

#programming #ai #python #opensource
By EvoAgentX | May 18, 2025


The Basics of Python and Cybersecurity: A Beginner’s Guide

#python #security #cybersecurity #privacy
By HexShift | May 18, 2025


Top 16 Django Questions for Intermediate to Advanced Developers

#django #flask #fastapi #python
By Leapcell | May 18, 2025


🧠 Difference Between pydantic and mypy

#webdev #programming #python #beginners
By Muskan Fatima | May 18, 2025


Building a No-Code Quant Backtesting Platform — My Journey Begins

#react #python #quant #reactflow
By Chair | May 18, 2025


Passionate begginer

#python #programming #discuss #beginners
By Asra_woww | May 18, 2025


perfometrics: A Lightweight Python Package for URL Performance Metrics

#pypi #performance #python #loggingandmonitoring
By Ali Esmaeili | May 18, 2025


Python Monorepos & the Polylith Developer Experience

#python #polylith #fosdem #opensource
By David Vujic | May 18, 2025


Python for Oracle on ARM Linux | Part 2 – "shell like" SQL scripts

#oracle #python #linux #arm
By Abhilash Kumar | Oracle ACE ♠ | May 18, 2025


Introducing slidize Plugins for Python

#python #pptx #presentation #api
By Slidize Team | May 18, 2025


Weekly Challenge: Compare the Average

#perl #python #theweeklychallenge
By Simon Green | May 18, 2025


transform vs target_transform vs transforms in PyTorch (1)

#python #pytorch #transform #target
By Super Kai (Kazuya Ito) | May 18, 2025


transform vs target_transform vs transforms in PyTorch (2)

#python #pytorch #transform #target
By Super Kai (Kazuya Ito) | May 18, 2025


transform vs target_transform vs transforms in PyTorch (3)

#python #pytorch #transform #target
By Super Kai (Kazuya Ito) | May 18, 2025


🚨 We EvoAgentX need your GitHub Star Kindly Support — and we need it now now now!

#programming #ai #python #opensource
By EvoAgentX | May 18, 2025


Why I still use Django for my Saas Projects in 2025

#python #django #beginners #programming
By Mangabo Kolawole | May 18, 2025


Ahhhh The trailer for Python: The Documentary is out

#python #discuss
By sc0v0ne | May 18, 2025



#Daniel Roy Greenfeld Blogs

TIL: Exception.add_note

Adding extra info to exceptions the easy way.
By Daniel Roy Greenfeld | May 13, 2025


Farewell to Michael Ryabushkin

In early May of 2025 Michael Ryabushkin (aka Goodwill) passed away. He was a great friend and an even better person. I will miss him dearly.
By Daniel Roy Greenfeld | May 16, 2025