Table of Contents


#Pybites

Case Study: Developing and Testing Python Packages with uv

Structuring Python projects properly, especially when developing packages, can often be confusing. Many developers struggle with common questions: To help clarify these common challenges, I’ll show how I typically set up Python projects and organise package structures using the Python package and environment manager, uv. The challenge A typical and recurring problem in Python is…
#Tools #Modern Python #Packages
By Michael Aydinbas | Mar 24, 2025



#Real Python

Python Code Quality: Best Practices and Tools

In this tutorial, you'll learn about code quality and the key factors that make Python code high-quality. You'll explore effective strategies, powerful tools, and best practices to elevate your code to the next level.
#intermediate #best-practices #python #tools
By | Mar 24, 2025


Using Python's .__dict__ to Work With Attributes

In this tutorial, you'll dive deeper into the .__dict__ attribute in Python objects. This attribute is a dictionary-like object that holds writable class or instance attributes. It allows you to manage attributes at a low level, making your classes flexible and efficient.
#advanced #python
By | Mar 27, 2025



#PyCoders

Issue #674: – LangGraph, Marimo, Django Template Components, and More

By | Mar 25, 2025



#Medium

My Journey with Terraform: A Beginner’s Perspective

When I first heard about Infrastructure as Code (IaC), I was both scared and curious. Creating cloud stuff with code instead of clicking…
By Manjurul Hoque Rumi | Mar 24, 2025


Exploiting Python’s eval function

What’s up Nerds? Why does Python live on land? Because it’s above C level!
By nuts | Mar 24, 2025


12 Python Tricks to Make Your Code Production-Ready

Hey there, Python coder! Over the past decade of banging out tech articles and tinkering with code, I’ve learned a thing or two about what…
By DataScience Nexus | Mar 24, 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 Aashish Kumar | Mar 24, 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 Aashish Kumar | Mar 24, 2025


🍽️ Tired of Keyword Search? Here’s How I Built a Smarter Recipe Finder with Vectors

“easy chicken dinner in under 30 minutes” → exact matches? Nah. I wanted meaning. That’s why I built a semantic recipe search engine using…
By Shraddha | Mar 24, 2025


User Registration with Email & Role Selection

Why Email-Based Registration?
By Ewho Ruth | Mar 24, 2025


JWT authentication for login

Let’s implement JWT authentication in Django Rest Framework (DRF) so users can log in with their email and receive a token for…
By Ewho Ruth | Mar 24, 2025


Role-Based Permissions (admin, staff, customer access controls)

Let’s implement role-based authentication in Django so different users (admin, staff, customers) can access different parts of the API.
By Ewho Ruth | Mar 24, 2025


Register API + Password Reset

Let’s implement user registration and password reset in Django with JWT authentication.
By Ewho Ruth | Mar 24, 2025


[Backend] How to use Pytest Fixture with Database in Integrate test ?

Utilize pytest fixture and mock to design a robust test flow for API integration. The goal is to effectively manage dependencies…
By Kuan Yu Chen | Mar 24, 2025


Routing for Extra Actions in Django REST Framework ViewSets

In Django REST Framework (DRF), ViewSet classes provide a convenient way to bundle related endpoints into a single class.
By Ewho Ruth | Mar 24, 2025


Comprehensive Guide to DRF Routers and Extra Actions in ViewSets

When building APIs with Django REST Framework (DRF), routers handle mapping your viewsets to URLs automatically.
By Ewho Ruth | Mar 24, 2025


API Guide: Understanding SimpleRouter, DefaultRouter, and Custom Routers in Django REST Framework

When building REST APIs with Django REST Framework (DRF), routers play a crucial role in automatically generating your URL patterns.
By Ewho Ruth | Mar 24, 2025


🔥 Advanced Custom Routers in DRF — Explained

💡 What’s the point of advanced custom routers?
By Ewho Ruth | Mar 24, 2025


From Zero to Deployed: How I Ran My First Python Flask App on AWS Elastic Beanstalk — A Complete…

Deploying a web app to the cloud for the first time can feel overwhelming — especially when you’re just starting out. I recently went…
By Sandhya S | Mar 24, 2025


Pure Python Web App: No Flask, No Django, No Frameworks!

Building the Minimal Python Web Application Using WSGI
By Leapcell | Mar 24, 2025


Mastering Django ORM: From Models to Advanced Queries

Introduction
By DHEERAJ PRAKASH S | Mar 24, 2025


Mastering Django ORM: From Models to Advanced Queries

Introduction
By Dheeraj Prakash S | Mar 24, 2025


Automate Google Sheets with FastAPI in Python — A Simple Guide

Working with spreadsheets manually can be repetitive and time-consuming. But what if you could automate your Google Sheets with just a few…
By Vignaraj Ravi | Mar 24, 2025


NumCpp: The C++ “NumPy” is Here! Goodbye Python’s Performance Limits!

NumCpp is a high-performance C++ library that replicates NumPy’s core functionality, enabling seamless integration and extreme performance…
By Meng Li | Mar 24, 2025


Build, Share, Reproduce — Managing R Environments with renv

Every step toward reproducibility counts. And this is a big one.
By Daniel G. Camblor | Mar 24, 2025


Build Fast, Scale Smart: The Ultimate FastAPI Project Structure Guide

FastAPI has quickly become the go-to choice for modern Python web development. It’s fast, intuitive, and perfect for building…
By Vignaraj Ravi | Mar 24, 2025


🔥 “Dynamic Multi-Tenant, Multi-Region, Shard-Aware API Gateway in Django REST Framework” 🚀

⚠️ Real-World Pain Point
By Ewho Ruth | Mar 25, 2025


🚀 7 Brutally Advanced Custom DRF Router Scenarios from API Hell

1️⃣ Jurisdictional Multi-Layer Router (Legal-Driven API Sharding)
By Ewho Ruth | Mar 25, 2025


🚨 5 Enterprise-Grade, Nightmare-Driven Advanced Router Patterns for DRF — Beyond Senior Level

⚠️ These are not theoretical. These came from actual postmortems in:
By Ewho Ruth | Mar 25, 2025


Structural Distillation for Cross-Dataset Uplift Modeling with Reinforcement Learning

A Novel Approach to Transfer Partial Teacher Model Knowledge from Control to Treatment Data for Rapid AB Testing and Campaign Optimization
By Shenggang Li | Mar 25, 2025


Introducing the Django Appointment Scheduler: Your Ultimate Solution for Managing Appointments

Managing appointments can be a real headache, especially when dealing with a dynamic and evolving schedule. Whether you’re a tutor, doctor…
By Vijjeswarapu Surya Teja | Mar 25, 2025


Why Esmerald is the FastAPI Alternative You Didn’t Know You Needed

FastAPI is one of the most hyped Python web frameworks in recent years. It promised speed, async support, and type safety—all great…
By Tiago Silva | Mar 25, 2025


Adaptive Multi-Teacher Distillation for Enhanced Supervised Learning

A Novel Approach for Dynamically Combining Multiple Predictive Models into a Lightweight High-Performance Student Model
By Shenggang Li | Mar 25, 2025


PREVENTING SQL INJECTIONS.

Learn basic ways to mitigate simple SQL injections.
By Noxcodes | Mar 25, 2025


How To: Error Handling in Python

Try … except
By Haden | Mar 25, 2025


Django REST Framework vs FastAPI: Choose the Best API Framework for Your Needs

Performance, Flexibility, and Ease of Use Compared
By Rahul Sharma | Mar 25, 2025


Implementing Custom Filters in Django REST Framework

Filtering is a crucial feature in RESTful APIs as it enables users to retrieve specific subsets of data efficiently. In Django REST…
By Akshat Gadodia | Mar 25, 2025


⚠️ Are You Leaking Secrets in GitHub? Use TruffleHog & GitHub Actions for Secure Django CI

Why Should You Automate CI for Django?
By Am Issath | Mar 25, 2025


9 Underrated Python Features That Can Supercharge Your Code

Writing Python the hard way? These features will make coding more manageable and more fun!
By PURRFECT SOFTWARE LIMITED | Mar 25, 2025


How to Build a Dynamic Sitemap in Django for Your React or Next.js Frontend

Have a React or Next.js frontend but your backend is in Django?
SEO still matters, and one of the key aspects of a search-friendly website…
By Vijjeswarapu Surya Teja | Mar 25, 2025


Django vs FastAPI: Which One Should You Use in 2025?

Explore the key differences between Django and FastAPI to choose the best framework for your 2025 web development projects.
By Jonny Fox | Mar 25, 2025


How I Built a GitHub Profile View Counter (And Why GitHub Won’t Show My Badge)

🚀 Project Motivation
By Zafer KAHRAMAN | Mar 25, 2025


A Detailed Guide to 5 Popular VsCode Plugins for AI Programming with DeepSeek Integration

Explore 5 top VsCode plugins that integrate DeepSeek for AI programming. From free tools like Continue to powerful options like CodeGPT…
By Meng Li | Mar 25, 2025


uv Package Manager for Python

uv is an extremely fast Python package and project manager written in Rust. uv is backed by Astral.
By Dr. Nimrita Koul | Mar 25, 2025


Python 3.14.0 Alpha 6 is Out

What’s New ??
By Rahul Sharma | Mar 25, 2025


Getting Started with FastAPI: Building REST APIs the Right Way

In the fast-moving world of software development, choosing the right tools can define the success of your project. FastAPI, a…
By Aziz Marzouki | Mar 25, 2025


FastAPI Core Features: From Project Structure to Middleware Mastery

FastAPI is more than just a framework for building APIs — it’s a complete toolkit for modern Python web development. In this article…
By Aziz Marzouki | Mar 25, 2025


Mastering Dependency Injection in FastAPI: Clean, Scalable, and Testable APIs

One of FastAPI’s most powerful (but often underutilized) features is its native support for Dependency Injection (DI) — a design pattern…
By Aziz Marzouki | Mar 25, 2025


Mastering Time-Series Data in Django with TimescaleDB 🚀

🚀 Learn how to store & query time-series data in Django using TimescaleDB. Optimize PostgreSQL for real-time analytics! 📊
By Sanjay Prajapati | Mar 25, 2025


Mastering Time-Series Data in Django with TimescaleDB 🚀

🚀 Learn how to store & query time-series data in Django using TimescaleDB. Optimize PostgreSQL for real-time analytics! 📊
By Sanjay Prajapati | Mar 25, 2025


Convert PPTs into PDFs Using Python

Recently, I had to convert a PPT into a PDF file. Fortunately, Python provides a simple way to automate this task using the python-pptx and…
By Riya Sharma | Mar 25, 2025


Deploying Django & Hugo on Hetzner — Part 1/4: Optimizing Your Cloud Server for Web Deployment

Hetzner offers a powerful and affordable cloud hosting solution, but a bare installation isn’t enough for production-ready Django and Hugo…
By Anzalo Quin | Mar 25, 2025


Demystifying OpenAI Function Calling vs Anthropic’s Model Context Protocol (MCP)

Image 1: Comparison of OpenAI function call vs. MCP generated by flux.1
By Evgenii Saurov | Mar 25, 2025


Function Calling in LLMs

Let’s learn how to use function calling in LLMs like Qwen, Mistral, and Llama.
By Ashraff Hathibelagal | Mar 26, 2025


Python Weak References in 2025: A Simpler Way to Work with the Garbage Collector

Weak references (weakref in Python) are a “powerful tool” that will help you to keep track of an object without preventing the garbage…
By Aleksei Aleinikov | Mar 26, 2025


How to Downscale Global Climate Data to Any Region: A Step-by-Step Guide

If you’ve ever tried to analyze global climate data for example CMIP6 data for a specific region, you’ve probably run into a common…
By Kieran Voss | Mar 26, 2025


LangGraph Human-in-the-loop (HITL) Deployment with FastAPI

I recently needed to convert a Human-in-the-Loop (HITL) AI agent, built using LangGraph, to be accessible via APIs from a backend. During…
By Shaveen Silva | Mar 26, 2025


7 Python Libraries That Will Make Your Code Worse — But Your Life Better

Ever found yourself staring at elegant, production-ready code and thinking, “This is beautiful… but it took me three days to write”? You’re…
By Coders Stop | Mar 26, 2025


Back to Basics, Lesson 12: Image Filtering Techniques Using Python: A Comprehensive Guide

In the article we will be discussing about filtering techniques of image processing, it plays a crucial role in enhancing image quality and…
By Naveen Pandey | Mar 26, 2025


🎨 Take Control: Build Your Own AI Image Generation Powerhouse!

Forget just using AI art tools — what if you could create your own? 🤔 Imagine the possibilities… the control… the sheer creative power…
By Unicorn Day | Mar 26, 2025


Hidden in Plain Sight — The Python Features You Use but Don’t Know What They Mean

Python makes you feel smart. You run a one-liner. You toss in a flag. Something works. You move on.
By Py-Core Python Programming | Mar 26, 2025


Real-World Use Cases for Third-Party Renderers in Django REST Framework (DRF)

In real-world applications, choosing the right renderer can optimize performance, improve interoperability, and meet specific business…
By Ewho Ruth | Mar 26, 2025


From Django Monolith to Microservices: A Practical Transition Guide

Most Django apps start small. A single app, a few views, a handful of models, and everything under one roof. And for a long time, that…
By Saad Jamil | Mar 26, 2025


Django vs FastAPI: Which One Should You Use in 2025? (Part 1)

Explore the key differences between Django and FastAPI to choose the best framework for your 2025 web development projects.
By Jonny Fox | Mar 26, 2025


How to Containerize Your Django App with Docker Like a Pro

Containerization is becoming an essential part of modern web development.
By IndustryFinder | Mar 26, 2025


The Evolution of HTTP 1.0 vs 1.1 vs 2.0: A Clear Comparison

The Evolution of the HTTP Protocol: From 1.0 to 2.0
By Leapcell | Mar 26, 2025


Django Query Optimizations: How to Make Your App Faster

Django is a powerful and easy-to-use web framework based on Python. Developers can quickly perform database operations using Django’s ORM…
By Erdi Mollahüseyinoğlu | Mar 26, 2025


Toolz: Boost Code Efficiency and Ditch For Loops

Boost your data processing with Toolz, a lightweight library that simplifies complex tasks, reduces memory usage, and accelerates…
By Meng Li | Mar 26, 2025


Django Signals Not Working in Production? Here’s Why and How to Fix It.

Django’s signals are a powerful tool for executing code in response to specific events, such as saving a model (post_save) or deleting an…
By Wilfried GOEH | Mar 26, 2025


Building Your First REST API with Flask in 10 Minutes

Flask is one of the most popular micro web frameworks in Python. It is lightweight, simple to use, and highly customizable, making it a…
By Priyanshu Rajput | Mar 26, 2025


All you need to know about password storage in a Django application (Encryption or Hash)?

Introduction
By Joydip Nath | Mar 26, 2025


I Struggled With Python Time Zones… Until I Learned This Trick

Don’t make these mistakes that most of the developers made…
By Kiran Maan | Mar 26, 2025


Understanding Flask Routing: The Backbone of Web Applications

Flask, a lightweight web framework in Python, provides a simple yet powerful way to define routes that handle user requests. Routing is the…
By Priyanshu Rajput | Mar 26, 2025


Implementing Custom JWT Authentication in Django Rest Framework (DRF)

When building APIs with Django Rest Framework (DRF), authentication is a critical component. While many developers opt for popular JWT…
By Osirus Djodji | Mar 26, 2025


Implementing Custom JWT Authentication in Django Rest Framework (DRF)

When building APIs with Django Rest Framework (DRF), authentication is a critical component. While many developers opt for popular JWT…
By Osirus Djodji | Mar 26, 2025


FastAPI vs Flask: A Practical Code Comparison for Building Python APIs

In the world of Python web frameworks, FastAPI and Flask have gained significant attention for building APIs. Each framework offers unique…
By Ramesh kannan s | Mar 26, 2025


Handle column names by replacing special characters ,Duplicate columns gets appended with sequence…

In our real-time projects, we often encounter scenarios where we need to handle column names by replacing special characters and adding an…
By rohit shingare | Mar 26, 2025


8 Insanely Powerful Custom Router Tricks Every Django REST Developer Needs to Know

🚀 Introduction
By Ewho Ruth | Mar 27, 2025


Mastering Advanced Custom Routers in Django REST Framework — Beyond DefaultRouter

When working with Django REST Framework (DRF), the DefaultRouter is often where most developers stop.
By Ewho Ruth | Mar 27, 2025


🚀 Mastering Advanced Custom Routers in Django Rest Framework (DRF)

If you’ve spent time with Django Rest Framework, you’ve probably used its DefaultRouter or SimpleRouter to auto-generate your API…
By Ewho Ruth | Mar 27, 2025


8 Advanced Custom Router Techniques for Surviving Real-World DRF APIs

🚀 Introduction
By Ewho Ruth | Mar 27, 2025


Understanding Parsers in Django REST Framework: A Practical Guide

Introduction
By Ewho Ruth | Mar 27, 2025


Understanding Parsers in Django REST Framework: A Practical Guide

Introduction
By Ewho Ruth | Mar 27, 2025


Understanding Renderers in Django REST Framework

Renderers in Django REST Framework (DRF) play a crucial role in determining how API responses are formatted and delivered to the client.
By Ewho Ruth | Mar 27, 2025


Implementing Soft Delete in Django (Including Cascade Relations)

Once more I searched a lot and didn’t find an appropriate and complete solution for soft delete, especially with cascade relation.
By ehsan shafiei | Mar 27, 2025


Automate Repetitive Tasks at Work with AI Agents: A Step-by-Step Guide

Discover how AI agents can streamline your workflow, boost productivity, and free up valuable time.
By ZéFino, o reprodutor. | Mar 27, 2025


Celery Beat: The Best Solution for Background Tasks in Django + Memory Optimization Tips

Have you ever felt like your Django app is slowing down because it has to wait for heavy tasks like sending mass emails, processing large…
By Alfin Fanther | Mar 27, 2025


Rapid Django Project w/SQLite

A full stack web app boilerplate in minutes
By Colleen Dunlap | Mar 27, 2025


I’m Doing It…I’m Building a Python SIP Softphone

It started a couple of weeks ago as an example for Python’s pyaudio. I was writing a short article to show how to use pyaudio — a seed…
By Py-Core Python Programming | Mar 27, 2025


Find Django Bugs Faster: The Complete Guide to the Django Debug Toolbar

Are you a Django developer who often feels like your application is running slowly or has bugs that are hard to track down?
By Alfin Fanther | Mar 27, 2025


10 Insanely Useful Python Libraries You Haven’t Heard Of (Yet!)

Here are 10 insanely useful Python libraries that can supercharge your projects — yet most developers don’t know about them!
By Aashish Kumar | Mar 27, 2025


10 Insanely Useful Python Libraries You Haven’t Heard Of (Yet!)

Here are 10 insanely useful Python libraries that can supercharge your projects — yet most developers don’t know about them!
By Aashish Kumar | Mar 27, 2025


A Comprehensive Step-by-Step Guide to Django Fixtures

Django provides an excellent way to load and dump data using fixtures. Fixtures are a simple way to serialize and deserialize data in your…
By Akshat Gadodia | Mar 27, 2025


Build Scalable Microservices with FastAPI: Architecture, Logging, and Config Made Simple

Modern applications demand more than just working APIs — they need to be scalable, modular, and easy to deploy. This is where FastAPI…
By Aziz Marzouki | Mar 27, 2025


The “Django Is Dying” Rumors: Where’s the Smoke Coming From? 🔥

image generated using grok ai
By Sreeved Vp | Mar 27, 2025


Embracing Modern SQLAlchemy 2.0: DeclarativeBase, Mapped[], and Beyond

SQLAlchemy 2.0 has ushered in a wave of modernization that aligns the powerful ORM with Python’s latest features, such as static typing…
By Aziz Marzouki | Mar 27, 2025


Best-of-Python: 390+ Top Python Projects with 1.8M+ Stars

Discover Best-of-Python, a curated list of over 390 top Python projects with 1.8M+ stars. Explore categorized, high-quality tools for data…
By Meng Li | Mar 27, 2025


Stop Writing Python Functions the Wrong Way! Do This Instead!

Avoid common mistakes and learn best practices to make your Python functions more efficient and readable.
By Aashish Kumar | Mar 27, 2025


Stop Writing Python Functions the Wrong Way! Do This Instead!

Avoid common mistakes and learn best practices to make your Python functions more efficient and readable.
By Aashish Kumar | Mar 27, 2025


JWT Authentication in Flask: A Complete Guide

Authentication is a fundamental aspect of securing web applications. JSON Web Tokens (JWT) have become the go-to solution for managing…
By Priyanshu Rajput | Mar 27, 2025


How to Fix Django’s Port-Switching Problem: Ensuring Your Server Always Runs on Port 8000

If you’re a Django developer, you’ve likely encountered the frustrating scenario where your development server unexpectedly changes ports…
By Seungchul Jeff Ha | Mar 27, 2025


Dj-stripe Webhooks: What Changed from 2.8 to 2.9?

The jump from dj-stripe 2.8 to 2.9 brought some much-needed cleanup and modernization around webhooks. If you’re still relying on…
By Marília Bontempo | Mar 27, 2025


How to build MCP server in python using FastAPI

Building an MCP server for your Python application doesn’t need to be complicated at all.
By Miki Makhlevich | Mar 27, 2025


List — Python Data Types

Characteristic, number of items, membership, combine and duplicate
By Trisna Sunawar | Mar 27, 2025


Deploying Django & Hugo on Hetzner — Part 2/4: Configuring SSH Authentication & GitHub Access

After setting up your Hetzner Cloud instance, the next step is configuring SSH authentication and ensuring seamless access to your GitHub…
By Anzalo Quin | Mar 27, 2025


Deploying Django and Hugo on Hetzner: A Complete Guide

1/6 — Setting Up the Development Environment for Django and Hugo
By Anzalo Quin | Mar 27, 2025


Stop Writing Ugly Python Code! 7 Refactoring Tricks to Make It Beautiful

Learn 7 powerful refactoring tricks to improve readability, maintainability, and performance in your Python code.
By Aashish Kumar | Mar 28, 2025


Stop Writing Ugly Python Code! 7 Refactoring Tricks to Make It Beautiful

Learn 7 powerful refactoring tricks to improve readability, maintainability, and performance in your Python code.
By Aashish Kumar | Mar 28, 2025


Practical Guide to Django REST Framework Renderers for Senior Developers

Django REST Framework (DRF) provides various renderers to control how API responses are formatted. Whether you’re building JSON APIs, HTML…
By Ewho Ruth | Mar 28, 2025


Advanced Custom Renderers in Django REST Framework

In real-world projects, APIs need custom renderers when dealing with non-standard content types, performance optimizations, or security…
By Ewho Ruth | Mar 28, 2025


Advanced Practical Guide to Django REST Framework Renderers

For developers with years of experience, understanding Django REST Framework (DRF) renderers goes beyond just picking JSON or HTML.
By Ewho Ruth | Mar 28, 2025


Advanced Custom Renderers in Django REST Framework 🚀

For high-performance, secure, and enterprise-level APIs, custom renderers allow you to optimize API responses. Let’s dive into next-level…
By Ewho Ruth | Mar 28, 2025


Flask Middleware: What It Is and How to Use It

Middleware is an essential concept in web development, acting as an intermediary between the client request and the server response. In…
By Priyanshu Rajput | Mar 28, 2025


🔥 Hybrid Renderer Approach in Django REST Framework

🛠 Key Features of a Hybrid Renderer Setup
By Ewho Ruth | Mar 28, 2025


Advanced Usage of Renderers in Django REST Framework 🚀

Django REST Framework’s renderers give you powerful flexibility when handling responses. Here are some advanced use cases to take your API…
By Ewho Ruth | Mar 28, 2025


Introduction to Testing in Django REST Framework: Part 1

I will be implementing tests in one my pet project from here https://github.com/manjurulhoque/django-job-portal. In this first part, I will…
By Manjurul Hoque Rumi | Mar 28, 2025


Boosting Data Pipeline Reliability with AI and Minimal Costs

A practical guide on how to leverage AI (Ollama) in data pipelines
By Danilo Pinto | Mar 28, 2025


Deploying a Django Project on AWS EC2: A Three-Part Guide

Deploying Your Django Project on AWS EC2
By Adedolapo | Mar 28, 2025


Django Class based views: Method call sequence

View:
By Sumit goyal | Mar 28, 2025


Flask-RESTful: The API Microframework That Could

Ah, Flask-RESTful. The duct tape of Python APIs. Elegant as a penguin in a tuxedo, yet scrappy enough to survive in the wild world of web…
By Dave LumAI | Mar 28, 2025


371. Deep Dive into Fraud Detection 🚀

Detecting fraud in real-time requires robust feature engineering, handling class imbalance, and efficient deployment strategies. Let’s…
By Ilakkuvaselvi (Ilak) Manoharan | Mar 28, 2025


I Built AI Agents for Code Generation & Review with DeepSeek Coder Model

Generate Code with AI Agents — For Free!
By Anand | Mar 28, 2025


372. Auto Feature Engineering

Auto Feature Engineering is the process of automatically generating, selecting, and transforming features to improve model performance…
By Ilakkuvaselvi (Ilak) Manoharan | Mar 28, 2025


Deploying Machine Learning Models with FastAPI

Machine learning models are powerful, but their true potential is realized when they can be accessed by applications, users, or other…
By Abhishek Shaw | Mar 28, 2025


Python 3.13: The Coolest New Features Every Developer Should Know

Explore the coolest new features in Python 3.13 that will make your coding experience faster, cleaner, and more efficient!
By Aashish Kumar | Mar 28, 2025


FastAPI Performance: Understanding Synchronous vs.

Introduction
By Prathapa Belli | Mar 28, 2025


Stop Using These 8 Python Libraries in 2025 (If You Want Faster Code)

Python’s ecosystem continues to evolve rapidly, with many libraries that were once considered best-in-class now becoming performance…
By Coders Stop | Mar 28, 2025


Flask’s current_app results in “out side of app context” issue in a different thread

I encoutered RuntimeError: Working outside of application context. when I tried to pass flask’s current_app in a new thread (Timer()…
By Paul Chuang | Mar 28, 2025


I Learned This Python Secret After 1 Year of Coding!!!

It will be very interesting to know about it….don’t miss this out!!!
By Kiran Maan | Mar 28, 2025


Serving Angular SSR with Django

How to keep your app inside one container
By Boris Haviar | Mar 28, 2025


Django Class based views: 01 View

View:
By Sumit goyal | Mar 28, 2025


Introducing The Pythonworld – The Ultimate Hub for Python Developers

New Publication Account for Python Developers
By Aashish Kumar | Mar 28, 2025


How to Create Scheduled Background Tasks in FastAPI + Memory Leak Optimization Tips

FastAPI, a fast and powerful Python framework, could be your secret weapon.
By Alfin Fanther | Mar 28, 2025


Understanding Django QuerySet Laziness: When Does Your Database Get Queried?

Django’s Object-Relational Mapper (ORM) is a powerful tool that allows developers to interact with databases without writing raw SQL…
By Zahra Zolfaghari | Mar 28, 2025


Deploying Django & Hugo on Hetzner — Part 3/4: Cloning & Managing Your GitHub Repository

After configuring SSH authentication, it’s time to manage your GitHub repository efficiently on your Hetzner server. This guide covers…
By Anzalo Quin | Mar 28, 2025


Middleware Magic: Understanding Django’s Request/Response Lifecycle

A Developer’s Guide to Django Middleware: Hooks, Logic, and Power
By Okan Yenigün | Mar 28, 2025


🚀 Advanced Real-World Use Cases for Third-Party Renderers in Django REST Framework

When building enterprise-level APIs, different clients (mobile apps, frontend frameworks, third-party integrations) require various data…
By Ewho Ruth | Mar 29, 2025


📌 When to Use & When Not to Use Third-Party Renderers in Django REST Framework

Using third-party renderers in Django REST Framework (DRF) can enhance performance, improve interoperability, and enable specialized data…
By Ewho Ruth | Mar 29, 2025


Bridging LangGraph and Streamlit: A Practical Approach to Streaming Graph State

While implementing LangGraph for a recent project, I encountered a significant challenge: how to effectively stream both reasoning states…
By Yiğit Bekir Kaya, Ph.D. | Mar 29, 2025


Using GraphQL in AI & LLM Applications: A Practical Developer’s Guide

Streamlining Data Retrieval, Reducing Token Overhead and Building Smarter Applications
By Pankaj | Mar 29, 2025


Python’s __slots__ – The Hidden Memory Optimization Trick 🚀🐍

When working with Python classes, you might not realize how much extra memory each object consumes due to its default dictionary storage…
By Elshad Karimov | Mar 29, 2025


🚀 Third-Party Renderers in Django REST Framework

Django REST Framework (DRF) supports various third-party renderers to extend the API’s output formats beyond JSON and HTML.
By Ewho Ruth | Mar 29, 2025


Building a Dynamic Form Builder with Django Rest Framework…..

Introduction
By Bhushan Chaudhari | Mar 29, 2025


Building a Secure JWT Authentication System with FastAPI and Next.js

Log in with JWT
By Sebastien M. Laignel | Mar 29, 2025


7 Ways to boost your PostgreSQL Performance! 🚀

Collated all the thing which I learned and experimented at Qure.ai
By Aayush Ostwal | Mar 29, 2025


Guide to develop web application using Django Part 4: Django Models

After change model we need to migrate
By Chain13 | Mar 29, 2025


Guide to develop web application using Django Part 5: Views

What are Django Views?
By Chain13 | Mar 29, 2025


Guide to develop web application using Django Part 6: Template

Django Template Language: Variables, Tags, and Filters
By Chain13 | Mar 29, 2025


Deploying Flask Applications with Docker and Kubernetes

Flask, a lightweight and powerful Python web framework, is an excellent choice for building scalable applications. But to truly leverage…
By Priyanshu Rajput | Mar 29, 2025


🚀 Django-PGTrigger: The Hidden Power You’re Not Using!

Enforce soft deletes in Django the right way! 🚀 Learn how to replace signals with PostgreSQL triggers for better efficiency.
By Sanjay Prajapati | Mar 29, 2025


🚀 Django-PGTrigger: The Hidden Power You’re Not Using!

Enforce soft deletes in Django the right way! 🚀 Learn how to replace signals with PostgreSQL triggers for better efficiency.
By Sanjay Prajapati | Mar 29, 2025


Why I Stopped Using Django Admin in Production

By The CodeCrafter | Mar 29, 2025


A Master-Slave story with SQLAlchemy

implementing a write-read group of databases
By Aitor Gastaminza | Mar 29, 2025


Mastering Python: From Beginner to Pro in Under 30 Days — Part 1

Python introduction
By Gokulkrishna | Mar 30, 2025


Documenting and unit-testing APIs with the client in mind

“Write once, use everywhere: How shared examples made our API docs bulletproof.”
By Sergey Sazonov | Mar 30, 2025


How Python Is Revolutionizing Tech Industry Through Innovation and Efficiency

A quick notes on Python Usage by Muhammad Naveed Arshad,MSc |Writer|Editor| AI Engr
By Muhammad Naveed Arshad,MSc |Writer|Editor| AI Engr | Mar 30, 2025


Predicting Terrorist Activities Using Machine Learning: A Data-Driven Approach

Terrorism remains one of the most pressing threats to global security. Governments, security agencies, and international organizations…
By Veerkavya | Mar 30, 2025


QuantCoder FS Devlog

Building a Full-Stack AI Research Assistant
By Sebastien M. Laignel | Mar 30, 2025


From Home Lab to Telecom Innovation : How Automation Solves Real-World Network Problems

A Student’s Battle With Unstable Wi-Fi :
By Marwa_khlifi | Mar 30, 2025


Why I Didn’t Need FastAPI — Rethinking .NET and Elasticsearch for Aggregations

While developing VillaNoNo, I faced a critical challenge: how to efficiently process and aggregate real estate transaction data. Initially…
By imissyoubrad | Mar 30, 2025


Flask Middleware: What It Is and How to Use It

If you’ve ever wanted to modify requests before they reach your Flask views or tweak responses before they leave the server, middleware is…
By Priyanshu Rajput | Mar 30, 2025


From Text to Meaning: Building a Semantic Search Engine with FastAPI, Hugging Face, and DuckDB…

In today’s data-driven world, the ability to search through large collections of text efficiently and meaningfully has become increasingly…
By Mbaye SENE | Mar 30, 2025


Building Responsive Real-Time Features in Django: Signals, Django Channels, and HTMX vs JavaScript

In modern web applications, real-time interactivity is crucial for providing users with seamless and engaging experiences. Whether it’s…
By Rodrigo Muñoz Delaporte | Mar 30, 2025


How AI + Django Can Automate Smart Freeze-Drying Workflows

Part 2 of the “Freeze-Drying Meets AI + Django” series
By Code fusion Lab | Mar 30, 2025


Flask Blueprints: How to Structure Large Applications Efficiently

As your Flask application grows, managing routes, views, and logic in a single file quickly becomes a nightmare! 😱 Luckily, Flask provides…
By Priyanshu Rajput | Mar 30, 2025


An Introduction to Django Views

Views are central to Django’s architecture pattern, and having a solid grasp of how to work with them is essential for any developer…
By Gajanan Rajput💚 | Mar 30, 2025


Django Signals: Automating Actions Without Modifying Views

Introduction
By Ankita Patel | Mar 30, 2025



#testdriven.io

Building a Real-time Dashboard with FastAPI and Svelte

Create a real-time analytics dashboard using FastAPI and Svelte with server-sent events.
#API #FastAPI #Front-end
By Amir Tadrisi | Mar 26, 2025



#Dev.to

FastFill – My First Open-Source Project! A Text Snippet Manager for Windows

#beginners #python #opensource #software
By PaulK6803 | Mar 24, 2025


Usando IA em Python: um guia para criar uma web app simples

#ai #python #webdev #promptengineering
By Thais Soares | Mar 24, 2025


Escreva seu próprio menu ATM em 🐍

#python #braziliandevs #programming #cli
By Rodrigo_Mars | Mar 24, 2025


3 Ways Lazada Sellers Can Elevate Their E-Commerce

#lazada #discuss #tutorial #python
By Lambdadd | Mar 24, 2025


deepseek with 1 line of code

#ai #designpatterns #deepseek #python
By owly | Mar 24, 2025


Build AI Agent Memory From Scratch — Tutorial For Dummies

#ai #rag #llm #python
By Zachary Huang | Mar 24, 2025


Top 10 Python Developer Skills You Must Master in 2025

#python #programming #developer #development
By Sharvin Shah | Mar 24, 2025


How to develop a web project with local files?

#webdev #python #tutorial
By MUHAMMED YILMAZ | Mar 24, 2025


How I Started My First Open Source

#webdev #programming #python #potterhead
By Rishit Nanda | Mar 24, 2025


Building a Project Budget Manager with Django – Part 6: Advanced Features

#django #python #javascript #tailwindcss
By ngemuantony | Mar 24, 2025


Building a Project Budget Manager with Django – Part 5: Templates and Documentation

#django #python #webdev #documentation
By ngemuantony | Mar 24, 2025


Building a Project Budget Manager with Django – Part 4: Deployment and Production Setup

#django #python #devops #deployment
By ngemuantony | Mar 24, 2025


Building a Project Budget Manager with Django – Part 3: Views and Templates

#django #python #webdev #tutorial
By ngemuantony | Mar 24, 2025


Building a Project Budget Manager with Django – Part 2: Authentication and Models

#django #python #webdev #tutorial
By ngemuantony | Mar 24, 2025


Building a Project Budget Manager with Django – Part 1: Project Setup and Structure

#django #python #webdev #tutorial
By ngemuantony | Mar 24, 2025


Integrating LlamaIndex and DeepSeek-R1 for reasoning_content and Function Call Features

#ai #rag #llm #python
By Peng Qian | Mar 24, 2025


JSONcon

#json #txt #python #javascript
By james | Mar 24, 2025


Basic Beginner MATLAB For Engineers

#beginners #machinelearning #datascience #python
By Dumebi Okolo | Mar 24, 2025


Pure Python Web App: No Flask, No Django, No Frameworks!

#python #django #flask #fastapi
By Leapcell | Mar 24, 2025


Accessing the Google API Discovery API and its Associated Discovery Documents

#google #api #webdev #python
By Suman Chatterjee | Mar 24, 2025


How prompt tuning works

#webdev #ai #machinelearning #python
By IBM Developer | Mar 24, 2025


How prompt tuning works

#webdev #ai #machinelearning #python
By IBM Developer | Mar 24, 2025


Quark’s Outlines: Python Code Blocks

#python #programming
By Mike Vincent | Mar 24, 2025


Python Notes #3 – Control Flow

#python
By Elvin Seyidov | Mar 24, 2025


Exploring Different LLM Models: A Hands-on Guide – Part 2

#ai #llm #nlp #python
By Harsha S | Mar 24, 2025


NumPy: Understanding NumPy python library

#python #datascience #learning #productivity
By Liz_decoder | Mar 24, 2025


Building Secure Applications with Permguard and FastAPI

#fastapi #permguard #python
By Antonio Radesca | Mar 25, 2025


Understanding Awaitables: Coroutines, Tasks, and Futures in Python

#python #asynchronousprogramm #tutorial #asyncio
By Choon-Siang Lai | Mar 25, 2025


An overview of rules based ingestion in DataBridge

#rag #ai #python #opensource
By Adityavardhan Agrawal | Mar 25, 2025


Automating WordPress Site Creation in Laravel Herd Environments

#wordpress #laravel #python #automation
By Rustamjon Akhmedov | Mar 25, 2025


Building a RAG System With Claude, PostgreSQL & Python on AWS

#tutorial #ai #python #rag
By Team Timescale | Mar 25, 2025


🚀 Slash Your WordPress Setup Time to Seconds with Python Automation

#python #wordpress #automation #herd
By Rustamjon Akhmedov | Mar 25, 2025


Machine Learning Guide

#machinelearning #python #beginners #kaggle
By Youssof Naghibi | Mar 25, 2025


How to Add Google OAuth to Django REST API

#api #python #django #backenddevelopment
By kihuni | Mar 25, 2025


My Blackjack Terminal Game

#python #beginners #portfolio
By AaronASB | Mar 25, 2025


Smart Tech: The Future of Pet Care

#webdev #ai #tutorial #python
By Shireen Cheng | Mar 25, 2025


Building an AI Agent for Hands-Free Software Control Using Python and OpenCV

#ai #python #development #softwareengineering
By BigBang001 | Mar 25, 2025


How to Contact Lazada Customer Service via Email: A Quick Guide

#tiktok #programming #python #devops
By Doriana | Mar 25, 2025


When Not to Use AI: A Developer’s Perspective

#ai #react #django #beginners
By DivyanshuLohani | Mar 25, 2025


Solving SSL Certificate Verification Issues with pip on macOS

#python #macos #pip #ssl
By Geoffrey Kim | Mar 25, 2025


Configuring LazyVim and Python on Windows with WSL

#programming #neovim #tutorial #python
By Oresztesz Margaritisz | Mar 25, 2025


Tutorial: Deploying a User-Authenticated Streamlit App in Just 5 Minutes.

#infrastructure #python #streamlit #morph
By Naoto Shibata | Mar 25, 2025


Master Functional Programming in Python: 7 Essential Techniques for Cleaner Code

#programming #devto #python #softwareengineering
By Aarav Joshi | Mar 25, 2025


Hyperparameter Tuning in Deep Learning: Best Practices for Optimizing Your Model

#datasciencecourse #machinelearning #python #sql
By Devraj More | Mar 25, 2025


Vibe Coding: Future of programming?

#programming #ai #vibecoding #python
By Chris | Mar 25, 2025


What is ERPNext?

#erpnext #developers #python #programming
By [email protected] | Mar 25, 2025


Analyzing Pixar’s 30 years of Movies, Milestones & Magic

#analytics #tableau #beginners #python
By Harshee Pitroda | Mar 25, 2025


25+ Essential Python One-Liners You Need to Know in 2025

#webdev #programming #python #beginners
By Marco Pineda | Mar 25, 2025


User Friendly Syntax

#python #programming #beginners
By hinamurme | Mar 25, 2025


SQLAchemy-iris with the latest version Python driver

#python #sql #programming #opensource
By InterSystems Developer | Mar 25, 2025


Python Notes #4 – Functions

#python
By Elvin Seyidov | Mar 25, 2025


Orchestrating Models: Machine Learning with Docker Compose

#docker #api #flask #python
By Yhary Arias | Mar 25, 2025


Building a Hands-Free Website Monitor with Python

#programming #webdev #javascript #python
By 0x3d Site | Mar 26, 2025


Introducing Peacy – An AI Agent built around the Non-Violent Communication principles

#ai #python #programming #git
By Canberk Varli | Mar 26, 2025


JInja

#python #tutorial #softwaredevelopment
By Anjali Gurjar | Mar 26, 2025


ServBay Launches Educational Program for Students and Teachers

#webdev #programming #beginners #python
By ServBay | Mar 26, 2025


I Built a Chess AI That Plays Like Me—Here’s How It (Almost) Failed

#gamedev #csharp #python #chess
By Adam | Mar 26, 2025


The Great Developer Debate: Tabs vs. Spaces – Does It Really Matter? 🤔

#webdev #programming #python #discuss
By Vaibhav thakur | Mar 26, 2025


Snowflake

#python #cloud #softwaredevelopment #aws
By Developer213 | Mar 26, 2025


Building an AI Agent Powered Elderly Care System: A Developer's Journey

#iot #ai #llm #python
By Ivo Brett | Mar 26, 2025


The Evolution of HTTP 1.0 vs 1.1 vs 2.0: A Clear Comparison

#go #django #springboot #nextjs
By Leapcell | Mar 26, 2025


oh my beautiful

#ai #react #python #devops
By Vũ Phan Hoài Nam | Mar 26, 2025


How to Keep Your Python Package Metadata in Sync with GitHub Release Tags

#programming #python #github #git
By Tosin Akinosho | Mar 26, 2025


🚀 Boost Your Django App's Performance with Query Optimizations!

#django #python #softwareengineering
By Erdi MOLLAHÜSEYİNOĞGLU | Mar 26, 2025


Do Primeiro Hello World à Carreira em Tecnologia

#programming #webdev #python #react
By Leticia Resina | Mar 26, 2025


🚀 Introducing HashX – The Lightweight & Fast Hashing Library! 🔥

#python #developers #hashing #encryption
By Prog. Kanishk Raj | Mar 26, 2025


what is python?

#python #programming
By sandy110-abc | Mar 26, 2025


Open Source – Let Ai to tell the Ai's Trend?

#opensource #ai #machinelearning #python
By Yedan Li | Mar 27, 2025


How to Scrape TikTok to Obtain Video Information?

#programming #ai #python #beginners
By Scraper0024 | Mar 27, 2025


AugMix in PyTorch (8)

#python #pytorch #augmix #v2
By Super Kai (Kazuya Ito) | Mar 27, 2025


What are the different file opening modes in Python, and how do they work?

#python #tutorial #learning #discuss
By Aadiguru Prodigy | Mar 27, 2025


GUI Weather App using python

#python #api #programming #opensource
By Sripadh Sujith | Mar 27, 2025


A 2-Approximation Algorithm for Dominating Sets

#programming #algorithms #computerscience #python
By Frank Vega | Mar 27, 2025


Freezing Issue for Internal Tools in Pyqt

#pyqt5 #python #qt #discuss
By mukkanti | Mar 27, 2025


Deepseek v3 0324: Finally, the Sonnet 3.5 at Home

#ai #webdev #programming #python
By Sunil Kumar Dash | Mar 27, 2025


EdTech Innovation Services

#python #news #api #linux
By Faizan Saiyed | Mar 27, 2025


OpenVoice added to AI Runner

#ai #opensource #python
By Joe Curlee | Mar 27, 2025


How do you train your dataset for your video with Python YOLOv5 in the shortest way?

#python #yolov5 #programming #computervision
By Tyrell Wellicq | Mar 27, 2025


Create Tkinter GUI’s using Tkinter GUI Builder — PyUiBuilder

#python #tkinter #frontend #pyuibuilder
By Paul | Mar 27, 2025


5 practical Python scripts for 2025

#python #script #coding #programming
By ScrapeStorm | Mar 27, 2025


Sort Dictionary

#python #sorting #programming #tutorial
By ETHAN LEONG _ | Mar 27, 2025


reaktiv: Reactive State Management for Python

#programming #webdev #python #backend
By buiapp | Mar 27, 2025


How to build MCP server in python using FastAPI

#mcp #ai #fastapi #python
By Miki Makhlevich | Mar 27, 2025


Recursion Power Sum

#programming #python #recursion #algorithms
By ETHAN LEONG _ | Mar 27, 2025


Stop flattening your JSON just to export it to Excel

#python #excel #programming #dataengineering
By Alexandre Manuel | Mar 27, 2025


Understanding Collection Data Types in Python – A Beginner’s Guide

#python #programming #beginners #tutorial
By Enthusiast | Mar 27, 2025


Mastering Primitive Data Types in Python – What Every Beginner Should Know

#python #programming #beginners #tutorial
By Enthusiast | Mar 27, 2025


Why I Regret Learning Python First?

#python #programming #java #discuss
By Leon Martin | Mar 28, 2025


Tower Attack Game!

#console #codecademy #python #gamedev
By oscarmroag | Mar 28, 2025


Python’s 10 Insane Underground Scripts: You Didn’t Know Exist

#programming #tutorial #python #beginners
By Snappy Tuts | Mar 28, 2025


How I Built a Python Compiler (Yes, Really!)

#programming #webdev #ai #python
By Resource Bunk | Mar 28, 2025


Python vs. C for Microcontrollers — Which One Wins?

#programming #python #c #ai
By Coursedia | Mar 28, 2025


Stopping the Stream: A Pythonic Guide to Controlling OpenAI Responses

#python #ai #openai #fastapi
By Bia Silva | Mar 28, 2025


AI Runner: now with Pygame support

#ai #python #pygame
By Joe Curlee | Mar 28, 2025


Django 2FA With Google Authenticator

#django #webdev #programming #python
By Steve Yonkeu | Mar 28, 2025


🚀 Power BI MySQL Integration: The Ultimate No-Code Guide to Real-Time Analytics

#react #ai #tutorial #python
By Albert Kavin | Mar 28, 2025


How to Scrape Walmart How to Scrape Walmart Product Page Details with Python?

#tutorial #ai #python #programming
By Scraper0024 | Mar 28, 2025


Boost Your Testing with FactoryBoy! 🏭🐍

#python #django #testing
By Erdi Mollahüseyinoğlu | Mar 28, 2025


How Second Me Hit 6K+ Stars on GitHub in Just 1 Week (and Why You Should Join)

#programming #ai #opensource #python
By Second Me | Mar 28, 2025


Prime Function

#python #programming #algorithms
By ETHAN LEONG _ | Mar 28, 2025


Building an AI-Powered Language Learning App at UofT: My CSC491 Experience So Far

#python #programming #ai #softwaredevelopment
By Parth Vats | Mar 28, 2025


How to use FastAPI for microservices in Python

#python #fastapi #architecture #microservices
By Łukasz Żmudziński | Mar 28, 2025


Code Runner MCP Server is coming, supports 39 Programming Languages!

#vscode #ai #python #mcp
By Jun Han | Mar 28, 2025


models

#codenewbie #programming #python #beginners
By rahul d | Mar 28, 2025


Day 1 at payilagam "Intro To Python"

#python #programming #opensource #linux
By Kuhanraja A R | Mar 28, 2025


From Data to Decisions: The Role of AI in Business Intelligence

#datasciencecourse #machinelearning #python #artificialintelligene
By Devraj More | Mar 28, 2025


Hướng dẫn cài đặt Python 3.12 trên EC2 (Amazon Linux) với OpenSSL và Pip

#webdev #programming #python #aws
By Định Trương Quang | Mar 28, 2025


10 Opensource Projects Using Raspberry Pi and Python

#beginners #ai #python #opensource
By Vishnu kumar | Mar 28, 2025


10 Open-Source Projects Using Raspberry Pi and Python

#beginners #ai #python #opensource
By William George | Mar 28, 2025


Python for Data Visualization: Best Tools and Practices

#python
By Nithya Iyer | Mar 28, 2025


DevLog #1: Why I’m Building 14 Projects (and What Comes After)

#beginners #python #learning #coding
By Trevor Browning | Mar 28, 2025


Thiw Week In Python

#python #thisweekinpython
By Bas Steins | Mar 28, 2025


Debugging S3's Pre-signed URLs with Boto3 and Python – Dealing with Unexpected Region Behavior

#webdev #aws #programming #python
By Amanda Quint | Mar 28, 2025


Python for DevOps is becoming a hot topic on Internet! 🚀

#pythonfordevops #devops #python #puppet
By Varghese Chacko | Mar 28, 2025


A Comprehensive Guide to Installing Pairtools

#bioinformatics #python
By SHIGRAF SALIK | Mar 28, 2025


Why Python Is a Terrible First Language

#python #programming #java #discuss
By Leon Martin | Mar 28, 2025


Supercharge your Django App with caching.

#django #cache #redis #webdev
By Uttam | Mar 29, 2025


Playwrite – Basics

#playwright #python #testing #tutorial
By KIranuknow | Mar 29, 2025


Django under the hood: How Form validation works ?

#django #python
By guzmanojero | Mar 29, 2025


Software Design Principles: Practical Implementation with User Roles

#python #solidprinciples
By Jhon Thomas Ticona Chambi | Mar 29, 2025


The Single Post You Need to Learn the Basics of Flyte

#mlops #devops #python
By Sam | Mar 29, 2025


Role-Based Access Control in Django

#django #python #identity #webdev
By Steve Yonkeu | Mar 29, 2025


𝗘𝘃𝗼𝗹𝘂𝘁𝗶𝗼𝗻 𝗼𝗳 𝗔𝗜 𝗦𝘁𝗿𝗮𝘁𝗲𝗴𝗶𝗲𝘀: looking at the future

#ai #programming #discuss #python
By Chris | Mar 29, 2025


DeepSeek V3-0324 vs. Claude 3.7 Sonnet Base: Which AI Codes Better?

#deepseek #ai #python #coding
By Developer Harsh | Mar 29, 2025


10 Useful Tools and Libraries for Python Developers

#python #programming #tkinter #pythonlibraries
By Paul | Mar 29, 2025


Intro to Data Analytics

#python #datascience #dataanalytics #webdev
By teddy | Mar 29, 2025


Automate Discord Messages

#automaton #discord #opensource #python
By Yash Kumar Saini | Mar 29, 2025


How to setup simple flask application

#programming #beginners #python #tutorial
By MATHIVATHANA S | Mar 29, 2025


Deploying FastAPI Application to AWS Fargate using Serverless Container Framework

#aws #python #fastapi #serverless
By Michael Villaverde | Mar 29, 2025


Explore Golang Metaprogramming: A Deep Dive

#go #gin #ruby #python
By Leapcell | Mar 29, 2025


Html lessons

#beginners #tutorial #react #python
By Victor Ogey | Mar 29, 2025


Implementing SSO In Your Django Project

#python #webdev #programming #django
By Steve Yonkeu | Mar 29, 2025


Mastering LinkedIn API: Step-by-Step Guide for Seamless Integration

#programming #beginners #python #ai
By Mayank Gupta | Mar 29, 2025


Synchronous vs. Asynchronous in Python: Understanding the Key Differences

#programming #python #flask #fastapi
By Adeniyi Olanrewaju | Mar 29, 2025


AWS Cost Categories with OU Structure

#aws #awsorganizations #cloudfinops #python
By Shuichi Takahashi | Mar 30, 2025


Python for Beginners: How to Go from Basics to Advanced in 2025

#webdev #programming #javascript #python
By anjula wiraj rathnayaka | Mar 30, 2025


Mortgage Calculator

#python #showdev #learning
By David Rush | Mar 30, 2025


Black Jack game in python

#python #gamedev
By Reshma | Mar 30, 2025


GitHub Issue Importer

#python #github #programming
By Farai Bvuma | Mar 30, 2025


AugMix in PyTorch (9)

#python #pytorch #augmix #v2
By Super Kai (Kazuya Ito) | Mar 30, 2025


On Usable Documentation

#documentation #python #webdev
By Tomislav Maricevic | Mar 30, 2025


I need help on Epson Scanner Control uing Python twain.

#help #epson #python #scanner
By Ricky Feli | Mar 30, 2025


🔐 Secure Password Manager: A Modern Tkinter-Based Solution for Safeguarding Your Credentials

#programming #python #learning #github
By Srijan Kumar | Mar 30, 2025


Machine Learning Simplified

#beginners #ai #python #machinelearning
By Anushka Bandyopadhyay | Mar 30, 2025


Neural DSL v0.2.5 Update: Explore Multi-Framework HPO Features

#machinelearning #deeplearning #python #opensource
By NeuralLang | Mar 30, 2025


Weekly Challenge: Sorted equally

#perl #python #theweeklychallenge
By Simon Green | Mar 30, 2025


cv2 webcame🔥🔥

#python #discuss
By Ali Sulaiman | Mar 30, 2025


Google Sheets Integration with Python: A Step-by-Step Guide

#programming #beginners #ai #python
By Mayank Gupta | Mar 30, 2025


Building My Own Google (Sort of)

#google #nlp #javascript #python
By Aditya Raj | Mar 30, 2025


DevLog #2: When APIs Finally Clicked

#beginners #python #learning #api
By Trevor Browning | Mar 30, 2025