Table of Contents


#Pybites

The Mutable Trap: Avoiding Unintended Side Effects in Python

Ever had a Python function behave strangely, remembering values between calls when it shouldn’t? You’re not alone! This is one of Python’s sneakiest pitfalls—mutable default parameters. Recently someone asked for help in our Pybites Circle Community with a Bite exercise that seemed to be behaving unexpectedly. It turned out that this was a result of modifying a mutable parameter…
#Best Practices #Concepts
By Craig Richards | Feb 03, 2025



#Real Python

Python for Loops: The Pythonic Way

In this tutorial, you'll learn all about the Python for loop. You'll learn how to use this loop to iterate over built-in data types, such as lists, tuples, strings, and dictionaries. You'll also explore some Pythonic looping techniques and much more.
#intermediate #best-practices #python
By | Feb 03, 2025


How to Split a String in Python

This tutorial will help you master Python string splitting. You'll learn to use .split(), .splitlines(), and re.split() to effectively handle whitespace, custom delimiters, and multiline text, which will level up your data parsing skills.
#basics #python
By | Feb 05, 2025


How to Join Strings in Python

In this tutorial, you'll learn how to use Python's built-in .join() method to combine string elements from an iterable into a single string with a specified separator. You'll also learn about common pitfalls, and how CPython makes .join() work efficiently.
#basics #python
By | Feb 06, 2025



#Django Project – Weblog

Django bugfix releases issued: 5.1.6, 5.0.12, and 4.2.19

By Natalia Bidart | Feb 05, 2025



#Python Insider

Python 3.13.2 and 3.12.9 now available!

By Thomas Wouters | Feb 05, 2025



#PyCoders

Issue #667: – String Templates, Missing Data, Dynamic Forms, and More

By | Feb 04, 2025



#Medium

Just STOP Using Python Generators Like This!!!

Do you really know Python Generators???
By Kiran Maan | Feb 03, 2025


Collection of 10 Awesome Python Libraries!

[ALERT] Your Coding Workflow Just Got Easier!
By Rishabh Agarwal | Feb 03, 2025


How I Learned to Love `__init__.py`: A Simple Guide😊

💡 Heads Up! Click here to unlock this article for free if you’re not a Medium member!
By Dhruv Ahuja | Feb 03, 2025


Testing API Security on a Django DRF Backend: A Comprehensive Guide (Following OWASP Guidelines)

APIs are the backbone of modern web applications, enabling seamless communication between frontend and backend systems. However, with…
By Philip Wawazi | Feb 03, 2025


If You Can Answer These 7 Concepts Correctly, You’re Decent at Python

Perfect for anyone wanting to prove their Python expertise!
By Sabrina Carpenter 🐍 | Feb 03, 2025


Secure Your FastAPI Application: Implementing JWT Authentication for Login & Signup

In the last article, we learned how to create a simple fast API and then how to add a database (PostgreSQL) to our FastAPI project.
By Saurabh Pandey | Feb 03, 2025


when, why and how use cases about views in Django Rest Framework (DRF)

Certainly! Here’s a structured overview of the different types of views in Django Rest Framework (DRF), including definitions, when to use…
By v2jarvis | Feb 03, 2025


Building Chatbot API Using FastAPI and GPT-2 Model

Introduction
By Gema Akbar | Feb 03, 2025


How to add tools to the Django Admin detail page top toolbar

This will be a real quick post as a note to myself that others might find useful!
By Chase Adams | Feb 03, 2025


You Should Really Take Care of “That Old Email Address”… It’s Time.

Identity theft occurs every twenty-two seconds — there is a decent chance it will happen to you too. Addressing old email accounts and…
By Will Keefe | Feb 04, 2025


Mastering Django Query Optimization with Select Related, Prefetch Related, and Fixing N+1

If you’re building a Django app, you may notice that database queries can slow it down. Managing these queries well is important for making…
By Mwangi Anthony | Feb 04, 2025


Python Voila in Jupyter Notebooks for Quick and Dirty Data Visuals

A simple dashboard on data storytelling global happiness
By John Loewen, PhD | Feb 04, 2025


Coding the Brain of an LLM to See How It Thinks

Debugging One layer Transformer
By Fareed Khan | Feb 04, 2025


🎯 Mastering Django Model Choices: From Tuples to Enums 🚀

Django provides multiple ways to define choices for model fields, ensuring data integrity and better readability.
By Sanjay Prajapati | Feb 04, 2025


User Authentication and Authorization in NiceGUI & FastAPI

Creating an auth pipeline for your own web app is a pain. When it comes to auth the last thing I would recommend is reinventing the wheel…
By Soumit Salman Rahman | Feb 04, 2025


Boolean Conversion in Python APIs: A Concise Approach

When working with APIs in Python, we often receive input parameters as strings, even if they are meant to represent boolean values. For…
By Akhilvp | Feb 05, 2025


Which Python Dashboard Is Better? Dash, Panel And Streamlit Showdown

Prompting GPT-4 for multi-visual interactive dashboard creation
By John Loewen, PhD | Feb 05, 2025


Exploring ASGI: Python’s Async Protocol for Web Apps

Understanding ASGI and Uvicorn in FastAPI Development
By Leapcell | Feb 05, 2025


Efficiently Scheduling Celery Tasks in Django: Solving Unacked Queue Growth and Memory Leaks

📝 Memory Leaks and Excessive Server Load
By Mahendra Singh Choudhary | Feb 05, 2025


Creating a Tiny Word2Vec Model Using PyTorch

Let’s build a lightweight word embedding model from scratch
By Ashraff Hathibelagal | Feb 05, 2025


Data Engineering Startup code: Flask Appbuilder

There are levels of Data Engineering projects: The ones that only require a couple of scripts to pull data from source, simple transforms…
By Wambui Gitau | Feb 06, 2025


The New and Improved Flask Mega-Tutorial

by Miguel Grinberg
By Margaret Eldridge | Feb 06, 2025


FastAPI Security: How I Nailed JWT, Role-Based Access & More for Bulletproof APIs 🔐🚀

💡 Heads Up! Click here to unlock this article for free if you’re not a Medium member!
By Dhruv Ahuja | Feb 07, 2025


Complete Guide to Add Daphne to Your Django Server

Why Use Daphne?
By PAWANJOT KAUR BAWEJA | Feb 07, 2025


Experience WebForms Core Technology in Python

The WebForms Core technology continues to evolve, and with the release of WebFormsJS 1.6, the Python implementation of the WebForms class…
By Mohammad Rabie | Feb 07, 2025


Mastering Vector and Similarity Search: Advanced Tools, Best Practices and Cutting-Edge Features

A Deep Dive into Vector Search — Learn How to Avoid Common Pitfalls, Optimize Search Performance and Leverage the Latest Technologies for…
By Pankaj | Feb 08, 2025


Building Multi-Tenant Applications in Django

Introduction
By Ankita Patel | Feb 08, 2025


Bloom Filters Made Easy: Python Code & Explanation 🐍

Bloom Filter: Principles, Usage, Advantages, Disadvantages and Python Implementation
By Leapcell | Feb 08, 2025


Python’s memoryview – The Most Underappreciated Python Feature! 🚀

When optimizing Python performance, developers often focus on multi-threading, NumPy, or Cython, but have you ever heard of memoryview?
By Elshad Karimov | Feb 08, 2025


Unbreakable Django DRF: Advanced Security & Encryption Strategies for Enterprise APIs

Introduction to the Series
By NihilByte | Feb 08, 2025


Deploying ColBERT in Docker: Lessons Learned

Basic starting point for containerizing ColBERT that you can build upon and customize to fit your needs, can be found here.
By Тарасов Максим | Feb 08, 2025


🔍 Visualizing Your Django Database with django-schema-viewer 🎨🚀

Visualize your Django database with django-schema-viewer! Explore models, customize colors & exclude models easily. 🚀🎨
By Sanjay Prajapati | Feb 08, 2025


Automate uploading files to remote servers with Python 🐍

When I was a third-year student of the bachelor’s degree, my university friends and I studied parallel programming. Back these days, we…
By Sviat Zastavskyi | Feb 08, 2025


Artificial Intelligence and Software Development: Collaboration or Competition?

We must be optimistic that Artificial Intelligence (AI) is a friend, not a competitor.
By Alfin Fanther | Feb 09, 2025


Python’s functools: The Secret Weapon for Writing Better Code 🚀

Most Python developers don’t fully explore the functools module, even though it contains some of the most powerful features for improving…
By Elshad Karimov | Feb 09, 2025


Repository Design Pattern in Django: A Clean and Scalable Approach

By selim mohamed selim | Feb 09, 2025


Build Your Own DeepSeek-R1 ChatBot That Can Search Web

This article was initially posted in my Substack newsletter: “The Semi-Expert.” That newsletter is meant for my readers who are not as…
By Dylan Oh | Feb 09, 2025


Integrating Macroeconomic Indicators in Predicting Stock Market Trends with AI

Stock market trends are like ocean waves — sometimes calm, sometimes volatile, and often influenced by deeper undercurrents. These…
By Zhong Hong | Feb 09, 2025


Python Metaprogramming Unleashed: Full Control Over Everything

Leapcell: The Best Serverless Platform for Web Hosting
By Leapcell | Feb 09, 2025


Heard About Python Virtual Environment ?

The Ultimate Guide for Developers
By Rahul Sharma | Feb 09, 2025


Benchmarking PDF to Markdown Document Converters

Testing 5 different Python Markdown converters on a benchmark PDF document for better RAG results with LLMs
By Dr. Leon Eversberg | Feb 09, 2025


The Best Way to Loop a list “Infinitely” in Python

When working with sequences in Python, you might encounter situations where you need to loop through a list repeatedly without manually…
By Allwin Raju | Feb 09, 2025


Python program: “List” related Questions

Data types :
By Vikas kumar | Feb 09, 2025


Valentine’s Day Is Coming and You’re Single?

It’s 2025 and Valentine’s Day is coming, so you decide to take action to end your days of being single. You download Tinder and wonder if…
By Wilmer León | Feb 09, 2025


Mastering Django GeneratedField: Enhance Your Models Efficiently

Django’s new GeneratedField is a game-changer for developers tired of repetitive calculations and manual data synchronization. By letting…
By syscrews | Feb 09, 2025


The Ultimate Guide to Deploying Django Applications with uWSGI

Learn how to deploy Django with uWSGI and Nginx for maximum performance. Step-by-step configuration, security tips, and best practices for…
By syscrews | Feb 09, 2025


HOW TO STAY FOCUSED WHEN YOU GET BORED WORKING ON YOUR GOALS

HOW TO STAY FOCUSED WHEN YOU GET BORED WORKING ON YOUR GOALS
By AbdulRahman Gurmani | Feb 09, 2025


Python’s inspect Module: The Ultimate Debugging Superpower 🚀

Ever wondered how Python itself sees your code?
By Elshad Karimov | Feb 09, 2025



#Hashnode

My Experience With a Raspberry Pi Pico

Four weeks into the semester, my Internet of Things Systems class has quickly become a favourite. Right off the bat we got into working with a Raspberry Pi Pico which has been really exciting. Outside of our first two labs I have been experimenting w…
By Denton | Feb 03, 2025


Build a (Docker) container from scratch in Python

(Docker) Container technology is popular to the degree of being standard in software development today, since it is so useful in making applications isolated, portable, and easily deployed across different environments.
This article assumes basic fu…
By Li-Heng Chang | Feb 03, 2025


Learning Python in 2025 🐍

Around January 19, 2025, I began learning Python programming. I'm not entirely new to programming since I have some experience with JavaScript, which is also a great programming language.
For learning resources, I chose the excellent Python series ta…
By Ashmin Bhujel | Feb 03, 2025


African Agility First Article

As an accountant, transitioning into the 'Tech' world is an interesting one for me with Backend development as my starting point. Here is a short summary of what I have learnt so far from my first week at the African Agility Tech training program.
In…
By Veronica Chime | Feb 03, 2025


How to Check for an Armstrong Number in Python

A number that equals the sum of its own digits raised to the power of the number of digits is called an Armstrong Number, sometimes referred to as a narcissistic number.
Definition :An n-digit number is considered an Armstrong number if the sum of it…
By Sanchit Shah | Feb 03, 2025


Understanding CSRF Tokens: How to Protect Your Website from Cross-Site Request Forgery Attacks

Introduction
In today's world of online applications, security is one of the top priorities. One common yet dangerous attack is Cross-Site Request Forgery (CSRF). But don't worry—CSRF tokens are here to protect your website and its users. In this art…
By Rohit Ranjan | Feb 03, 2025


Python Data Types & Data Structures

You ever wonder why Python’s a go-to for so many developers? It’s not a mystery—it’s the data types and structures. Simple but powerful. You’ve got two groups: atomic types and composed types. One holds a single value, the other, a collection. This g…
By Mike Vincent | Feb 03, 2025


🚀 Stepping into Python: A Beginner's Guide 🐍

Hey everyone! 🎉 I’ve taken my first step into the world of Python, and I’m excited to share what I’ve learned so far. Python is known for being simple, powerful, and widely used in various fields like web development, data science, and automation. L…
By Manav Rastogi | Feb 03, 2025


Simplify Authentication with Microsoft Identity: Azure AD Device Code Flow for Python Apps

Modern applications depend on secure user authentication and data access. Azure Active Directory (Azure AD) delivers enterprise-grade authentication for apps targeting Microsoft resources. In this blog, we’ll explore how to leverage Azure AD Device C…
By Xavier Medina | Feb 03, 2025


Day 6: File I/O in Python

Python can be used to perform operations on a file (read and write data)
Types of all files

Text files: .txt, .docx, .log etc (data is stored in character form)

Binary Files: .mp4, .mov, .png, .jpeg etc

Basic operations on a file – Open, read and…
By Rishitha | Feb 03, 2025


Python for Machine learning

Python is a simple programming language, and its most used in Machine Learning, due to its tools availability like numpy library that can do complex mathematical operations in seconds. We can use other programming languages like java, c++ but python …
By David singh | Feb 03, 2025


🚀 DevOps CI/CD: A Complete Guide Using Jenkins

📌 Introduction to DevOps CI/CD
DevOps CI/CD (Continuous Integration and Continuous Deployment) is a crucial process that ensures seamless software development, testing, and deployment. Jenkins, a widely used automation tool, plays a vital role in or…
By Laxmiputra | Feb 03, 2025


Stay Updated on NBA Games in Real-Time with AWS Event-Driven Architecture

Introduction
Context and Background
In the fast-paced world of sports, timely updates are crucial for fans and stakeholders alike. The NBA Game Day Notification Alert project was initiated to address the need for real-time notifications about NBA gam…
By Vijay Kumar Singh | Feb 03, 2025


Advanced Adapter Merging Strategies in LLMs

In the rapidly evolving landscape of Large Language Models (LLMs), the ability to efficiently customize and adapt these models for specific tasks has become increasingly crucial. This comprehensive guide explores two sophisticated adapter merging str…
By Harsha Mangena | Feb 03, 2025


Python Type Annotations (part 1)

Python's dynamic typing is one of its core strengths. The low friction
allows for rapid development that makes it a popular choice for new
developers. However, as projects grow and evolve, the lack of type
annotations makes code difficult to understa…
By Cristina Ferrer | Feb 03, 2025


Control Flow in Python for DevOps Automation

Welcome back, Now that we’ve mastered Python Data Types, it’s time to level up and take control—literally! Control Flow is the backbone of decision-making in Python, and for us DevOps folks, it’s a game-changer for automation. So, no more waiting—fir…
By Rajratan Gaikwad | Feb 04, 2025


Key Concepts to Understand While Using Django

In this discussion, I am excited to introduce you to Django – a powerful Python backend framework used in web application development. Django is one of many server-side languages and frameworks available, but it stands out for its versatility and sca…
By Aaditya Champaneri | Feb 04, 2025


Why I Started My AI Journey & My Roadmap for the Next 6 Months

🚀 My AI & Machine Learning Journey – Roadmap & Goals
Why AI? 🤖
AI is transforming the world, from self-driving cars to personalized recommendations.I started my journey in AI because of its ability to solve real-world problems and automate tasks th…
By Harminder | Feb 04, 2025


Pandas cheatsheet

Basic Pandas Commands for Data Loading, Exploration, and Manipulation

import pandas as pd #To import pandas library in notebook

df = pd.read_csv('filename.csv') or pd.read_csv(r’location/folder/filename.csv’) or pd.read_excel(’filename.xlsx’) #To L…
By David singh | Feb 04, 2025


Understanding Python Virtual Machine: A Beginner’s Guide

In simple terms, the Python Virtual Machine (PVM) is just a software program that acts as the brain behind Python code execution. Think of it as a system where a continuous loop runs, and every Python file you embed into it gets executed from the fir…
By Mansi Vashistha | Feb 04, 2025


Mastering CSV File Handling with Pandas: A Beginner's Guide

🔰Introduction
In the world of data analysis, CSV ( comma-separated values) files are like the bread and butter of data exchange. Whether you are dealing with financial records, survey results, or large datasets scraped from the web, CSV files provid…
By Santwan pathak | Feb 04, 2025


Flask: A Lightweight Web Framework

Flask is a micro web framework for Python that makes it easy to build web applications quickly. It is lightweight, flexible, and comes with essential tools needed for web development. Flask is widely used in modern web development, especially for bui…
By Rohit | Feb 04, 2025


Building an AI-Powered Chatbot with Django, React, and OpenAI's GPT API

Data is changing how we interact with technology, and chatbots are at the forefront of this transformation. Today, I’m excited to share a hands-on guide for building an AI-powered chatbot using Django for the backend, React for the front end, and Ope…
By TemiTope Kayode | Feb 04, 2025


Introducing Oumi: The Open-Source Platform for Foundation Models

Artificial Intelligence (AI) and Machine Learning (ML) have seen groundbreaking advancements in recent years, particularly in the domain of foundation models. However, building and deploying these models efficiently is often a complex, resource-inten…
By LOVISH GOYAL | Feb 04, 2025


Understanding Python’s Compilation Process: Bytecode, PVM, and .pyc Files

Introduction: Is Python Compiled or Interpreted?
Python is often labeled an "interpreted" language, but this oversimplification misses its hybrid nature. In reality, Python combines compilation and interpretation to execute code. Let’s dive into how …
By Dawood-UR-Rahman | Feb 04, 2025


Golang Echo vs. Python Django: Which One is Right for Your Next Project?

When building a web application or API, one of the first decisions you’ll face is choosing the right framework. In this article I will be going through Golang Echo and Python Django. Echo is all about speed and efficiency, while Django provides a mor…
By Rijul Rajesh T P | Feb 04, 2025


Python Type Annotations (part 2)

Table of contents

Generics
Variadic Generics
Parameter Specification
Overloads
Final notes
References

Generics
Generics provide a powerful way to create flexible and reusable code components that can
work with multiple data types while maintaining…
By Cristina Ferrer | Feb 04, 2025


Lessons Learned While Building a Python ToDo List Project

IntroductionRecently, I embarked on a journey to build a simple ToDo List application using Python. What started as a fun project quickly turned into an invaluable learning experience. I deepened my understanding of Python’s core concepts and discove…
By Etiene James | Feb 05, 2025


Day 7: Object-Oriented Programming (OOP) in Python: Class and Objects

Introduction
Object-Oriented Programming (OOP) is a programming paradigm that allows developers to structure their code using objects and classes. Python, being an object-oriented language, makes it easy to work with OOP principles.
What is a Class?

By Rishitha | Feb 05, 2025


5 Things I Wish I Knew Before Learning Django

When I started learning Django, I thought it would be easy because I already knew some Python. But I quickly realized that Django isn’t just about writing Python—it’s about understanding how web applications work, managing databases, and structuring …
By Devu Anil | Feb 05, 2025


5 Things I Wish I Knew Before Learning Django

When I started learning Django, I thought it would be easy because I already knew some Python. But I quickly realized that Django isn’t just about writing Python—it’s about understanding how web applications work, managing databases, and structuring …
By Devu Anil | Feb 05, 2025


Mastering Web Scraping: Extract Data from Websites Easily with Python

Web scraping has become an essential tool for automating the extraction of large amounts of data from websites. Python, with its wide range of libraries, makes it easy to access and work with web content. In this blog, we'll explain how web scraping …
By Dimpal Khatri | Feb 05, 2025


2025 Sangaku (算額) Puzzle

Happy New Year and welcome to the first Casual Chronicle of 2025. This one combines the number 2025 with some Japanese history and culture, in particular, mathematics. We will take a short dive into the world of Sangaku: Japanese geometry material fr…
By carl ek | Feb 05, 2025


Software Development Using Python: A Complete Guide

Python is one of the most popular programming languages for software development, thanks to its simplicity, versatility, and extensive library support. Whether you're building web applications, AI-powered solutions, data analysis tools, or automation…
By James Snow | Feb 05, 2025


Accelerate Your Coding Workflow with Docker and Django

In this tutorial, we will explore two popular tools that are very helpful in your software development journey: Django, a powerful and well-tested web framework, and Docker, a tool for managing your applications. If you haven't heard of them, it's li…
By Mukul Mantosh | Feb 05, 2025


Step-by-Step Guide to Remote Development in PyCharm with Google Cloud Code

In this tutorial, you’ll learn how to build and run your applications in both a local Kubernetes cluster (using Docker Desktop or Minikube) and remotely in Google Kubernetes Engine. This setup lets you focus on coding while the Google Cloud Code plug…
By Mukul Mantosh | Feb 05, 2025


Data Cleaning and Transformation with Python

Data cleaning and transformation are an integral part of the data science workflow, but often one of the most underappreciated. As data scientists in India continue to face complex datasets, mastering the art of cleaning and transforming raw data int…
By Devraj More | Feb 05, 2025


How to Build a Chatbot Using Python and OpenAI API

Chatbots have transformed how businesses interact with customers. They provide instant responses, automate customer support, and enhance user engagement. With artificial intelligence, chatbots can understand queries, generate human-like responses, an…
By Arjun Solanki | Feb 05, 2025


The Impact of AI Agents on Employment: Automating Repetitive Tasks and Shaping the Future of Work

Introduction
Artificial Intelligence (AI) agents are increasingly becoming integral to modern workplaces, automating repetitive tasks and transforming job roles across various industries. While this technological advancement promises increased effici…
By Deus Etrnl | Feb 05, 2025


Exploring the Must-Have Tools and Technologies in Data Science Today

IntroductionData science is revolutionizing industries at a pace never seen before. From predicting customer behavior to improving healthcare outcomes, the power of data-driven decision-making is undeniable. However, data science is only as effective…
By Aditya Tripathi | Feb 05, 2025


WebAssembly and Python Ecosystem

WebAssembly (WASM) is transforming how we run code in lightweight, secure, and cross-platform environments. Initially designed for browsers, WASM has now expanded into serverless computing and sandboxed environments. While languages like Rust and Go …
By Ani | Feb 05, 2025


Comprehending List Comprehension

List Comprehension has easily been one of the best features that I’ve encountered while learning python. It is more readable and looks more cleaner in my opinion, in this blog I will be explaining the way I understand List Comprehension.
First lets s…
By Adrian Garza | Feb 05, 2025


The Art (and Pain) of Generating Invoice Numbers That Scale

There’s something strangely humbling about a problem that looks trivial on the surface but slowly morphs into an existential crisis at 3 AM while you’re drowning in your 4th cup of tea.
Invoice number generation? How hard could it be?
I mean, it’s ju…
By Ahmad W Khan | Feb 05, 2025


Leetcode Coding Journey: Mastering Problem-Solving Techniques

Leetcode #10 Regular Expression Matching
📌 Problem Statement
Given an input string s and a pattern p, implement regular expression matching with support for:- . Matches any single character.- Matches *zero or more of the preceding element**.- The ma…
By Geetha Haveela | Feb 05, 2025


Object-Oriented Programming: Your Path to Better Code

Simula 67
Simula 67 is a general-purpose programming language that was developed at the Norwegian Computing center. It was built and designed to be a framework for Object-oriented programming languages. And considered as the first object-oriented pro…
By Lawani Elyon John | Feb 05, 2025


Tools for LLM Tuning

Training large language models (LLMs) can feel like trying to tame a dragon: powerful, resource-hungry, and intimidating. But with the right tools, even beginners can achieve impressive results. In this guide, we’ll explore three popular frameworks—U…
By Harsha Mangena | Feb 05, 2025


Beyond CRUD

Last week, I wrote about customizing Git commands and shell functions to streamline the mechanics of submitting coursework. That article grew from my experience with Harvard's “CS50: Introduction to Artificial Intelligence with Python” course. Yester…
By Seth Derrick | Feb 05, 2025


Do What I Meant

Tests are crucial to reliable code. I’ve found I do a better job writing tests if I think of them as specifications and write them before I write code. I find I think more clearly about what I want to get done, rather than how I’ll do it, and then th…
By Joshua Marker | Feb 05, 2025


From Code to Cloud: Building and Deploying a Smart Number Classification API with FastAPI

Number Classification API
Overview
The Number Classification API is a FastAPI-powered web service that classifies numbers based on their mathematical properties and provides a fun fact. It determines whether a number is prime, perfect, Armstrong, eve…
By Favour Onyeneke | Feb 06, 2025


Day 8: OOPS in Python, Class Attributes vs Instance Attributes and Static Methods

In Object-Oriented Programming (OOP), attributes are used to store data related to a class or an instance of that class. Python provides two types of attribute.
1. Class Attributes (Shared by all instances)
2. Instance Attributes (Unique to each obje…
By Rishitha | Feb 06, 2025


Django and Tailwind CSS ✨

Tailwind CSS is a modern, highly customizable CSS framework that pairs well with component or template-based web frameworks. When using Django, I missed the convenience of quickly styling web pages with Tailwind CSS. Unfortunately, there isn't an off…
By Ashmin Bhujel | Feb 06, 2025


Discover the Basics of Python: A Comprehensive Introduction

Variables :

A variable is a named reference to a value that is stored in memory.

Variables are used to store data so that it can be used later in the program.

Example : x=5 , age=35

Rules to Declare a variable :
➛ Variable names must start with …
By Rani Kumari | Feb 06, 2025


Python Functions and Recursion for DevOps Automation

Hey folks! Today, we’re diving into Functions and Recursion—two powerful concepts that will level up your Python skills. But before we get started, let’s set the right expectations. Some examples might look a bit tricky at first, but trust me, they’r…
By Rajratan Gaikwad | Feb 06, 2025


Web Session

What is a Web Session?
A web session refers to the period of time a user is active on a web application. A session starts when a user visits a website and usually ends when they leave the site (either by closing the browser or after a period of inact…
By Shubham Agrawal | Feb 06, 2025


Does Flask Generate a Session If No Session Data Is Set?

In this article, I will answer this question with the help of python (flask) code.

No, Flask does not generate a session unless you explicitly store something in the session.
How Flask Handles Sessions

When a request is made on a web app, Flask doe…
By Shubham Agrawal | Feb 06, 2025


Implementing Client-side and Server-side Session in Flask

Let’s first create a simple web app. Our app will look like:-

Flow of the app will be:-

When you visit ‘/’ or ‘/home’, you will land at the home page.

‘/about‘ and ‘/contact‘ are protected endpoints. When you visit ‘/about‘ or ‘/contact‘

If you a…
By Shubham Agrawal | Feb 06, 2025


Implementing Non-persistent and Persistent Session in Flask

Let’s first create a simple web app. Our app will look like:-

Flow of the app will be:-

When you visit ‘/’ or ‘/home’, you will land at the home page.

‘/about‘ and ‘/contact‘ are protected endpoints. When you visit ‘/about‘ or ‘/contact‘

If you a…
By Shubham Agrawal | Feb 06, 2025


Implementing Session Timeout in Flask

What is session timeout in web application?
A "session timeout" in a web application refers to period of inactivity where a user's session automatically expires if they don't interact with the application for a certain amount of time, effectively log…
By Shubham Agrawal | Feb 06, 2025


Authentication in Backend

What is Authentication in Backend?
Authentication in the backend is the process of verifying the identity of a user or system trying to access a service or resource. It ensures that only authorized users can log in and interact with the application.

By Shubham Agrawal | Feb 06, 2025


The Interpreters

So, over the last few weeks, I have started to learn about Programming. Oh, that is an Antithesis. Something else should have come first. My mentor on this technical writing journey, Sunkanmi Fafowora, advised me to learn about Programming. The reaso…
By Moshood Akinleye | Feb 06, 2025


Pip Install vs Python -m Pip Install

Sự khác biệt giữa pip install package và python -m pip install package nằm ở cách Python và pip được gọi trong môi trường hệ thống.
1. pip install package

Khi bạn chạy lệnh này, hệ thống sẽ tìm kiếm pip trong PATH và thực thi nó.

Nếu có nhiều phiên…
By Hoàng Anh Nguyễn Bá | Feb 06, 2025


Stored Procedures vs. Modern Data Platforms

For years, stored procedures have been a go-to solution for handling business logic inside databases. They help automate tasks, improve performance, and ensure security. But as data systems grow more complex, stored procedures have started showing th…
By Rohail Iqbal | Feb 06, 2025


War Has Changed: Google’s AI Ethics Shift Sparks a New Battlefield

Google Drops Its AI Weapons Ban
Anyone who's played the Metal Gear Solid franchise, especially Metal Gear Solid 4: Guns of the Patriots, has seen a vivid portrayal of AI's potential as a weapon. In the game, the Patriots' AI system, known as "The Sys…
By Eric Maddox | Feb 06, 2025


Attributes and properties…as I understand them…

Article.introduction
If you’ve ever had to google “What’s the difference between an attribute and a property in Python?”, well…you’re not alone—I’ve been there, squinting at the screen, flipping through docs, trying to figure out exactly why some var…
By Aidan Hildebrand | Feb 06, 2025


What is Polymorphism in Python? Explained with Example

Polymorphism is an object-oriented programming (OOP) principle that helps you write high quality, flexible, maintainable, reusable, testable, and readable software. If you plan to work with object-oriented software, it is crucial to understand polymo…
By Danny | Feb 06, 2025


Building an Automated Skincare Price Tracker with Python and Selenium: A Step-by-Step Guide

Hello and welcome to my blog. I have procrastinated doing this for a little while.
I am a skincare junkie. To say the least
So every month, i have to search and buy skincare products and i decided to make my life easier. The goal was to build a scrip…
By Olivia Akabogu | Feb 06, 2025


The Future of AI Chatbots: Exploring Applications, Trends, and Opportunities

Introduction: How AI Chatbots Are Revolutionizing Digital Interaction 🤖
Artificial intelligence (AI) is transforming industries, and one of the most exciting advancements is in AI chatbots. From customer service to healthcare, AI-driven conversation…
By Binshad Ap | Feb 06, 2025


NumPy : Introduction and Cheatsheet

NumPy or Numerical python is a python library used for “numerical computing” in python.

It that provides a multidimensional array object

Numpy cheatsheet
1. import numpy as np # Import numpy library
2. arr = np.array([1, 2, 3]) # Create a numpy …
By David singh | Feb 06, 2025


Deploying a Flask Web Application on AWS EC2

Introduction
Deploying a Flask web application on an AWS EC2 instance allows you to make your app accessible. In this tutorial, we'll complete the complete setup, from launching an EC2 instance to running your Flask app with Gunicorn and Nginx.
1. La…
By Manya khede | Feb 06, 2025


🚀 FastAPI vs Flask: Choosing the Right Framework for Your Use Case 🐍⚡

When building web applications or APIs in Python, Flask and FastAPI are two of the most popular choices. But which one should you use? Let’s break it down!
🌟 Flask: The Battle-Tested Classic
Flask is a lightweight, flexible micro-framework that has …
By Anirudra Choudhury | Feb 06, 2025


Jupyterhub + Nginx Installation

Prerequisites

Ubuntu server (x86_64 architecture)

Root access

Domain name pointing to server IP

SSL certificates (recommend Let's Encrypt)

Basic firewall configuration (ports 80/443 open)

Python Installation
apt update && apt install python3


By Sidharth Shambu | Feb 06, 2025


Implementing Data Structures in code.

In earlier articles in this series, we thoroughly explored data structures, their significance, real-life applications, and how to select appropriate data structures for different tasks. In this article, you will code various types of data structures…
By Ikegah Oliver | Feb 06, 2025


🚀 Build Your Own Local RAG Researcher with DeepSeek R1

You’ve probably heard of DeepSeek R1, the powerful Chinese reasoning LLM that’s detouring OpenAI’s dominance in the AI world. And let’s be honest—you’ve likely seen tons of tutorials on chatting with PDFs using its local versions. But… that’s where m…
By Aymen K | Feb 06, 2025


Reading Test Driven Development with Python by Harry Percival, Part 5

Today I finally have some time to proceed to the next chapter of TDD with Python.
Recently I was doing a group project that involves Django and although I really wanted to implement TDD, I never really had the change. My fellow group members (awesome…
By Victor | Feb 07, 2025


Reading Test Driven Development with Python by Harry Percival, Part 4

Today I finally have some time to proceed to the next chapter of TDD with Python.
Recently I was doing a group project that involves Django and although I really wanted to implement TDD, I never really had the change. My fellow group members (awesome…
By Victor | Feb 07, 2025


Structuring DevOps Automation with Python Modules, Packages, and Libraries

Hey folks! Today, we’re diving into one of the most powerful aspects of Python—especially in the world of DevOps automation. Python isn’t just a language; it’s a game-changer for automating workflows, integrating with cloud services, and making life …
By Rajratan Gaikwad | Feb 07, 2025


Kubernetes Technology: A DevOps Perspective (With Python)

Introduction
Kubernetes (K8s) is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications. In DevOps, Kubernetes enhances CI/CD workflows by providing scalability, automation…
By mazen sayyed | Feb 07, 2025


Using Hashnode For Technical Blogging

I have blogged on and off for the past fifteen years. So I am relatively familiar with the related writing and publishing process. From my experience as a blogger, I understand it is important to choose your writing technologies wisely. Which is why …
By Bret Bernhoft | Feb 07, 2025


Introduction to Web Development & Backend in Python

Web development is the process of building and maintaining websites or web applications. It involves both frontend (what the user interacts with) and backend (the server-side that powers the frontend). As more businesses and services go online, under…
By Judith Oyugi | Feb 07, 2025


Building a To-do Task Script In Python

Data structures are one of the most important programming concepts you can ever learn. Almost every super useful app or shiny new tool you build would require some form of storage. How else would you know the right tool to use if you don’t understand…
By Victory Amadi | Feb 07, 2025


Web Development: A Comprehensive Guide

Introduction
Web development is the process of creating, building, and maintaining websites and web applications that run on browsers. It encompasses a variety of disciplines, including front-end development, back-end development, and full-stack deve…
By Alice Murugi | Feb 07, 2025


Day 8 – Deploying a Python Movie API to Google Cloud Run using Bash Scripting, Docker, Artifact Registry and API Gateway

Deploying and managing APIs can feel daunting and time consuming; however, with the help of automation and the right tools in place, the process can become seamless. In this article, we will use a step by step approach to deploy a containerized appli…
By Fredrick Simi | Feb 07, 2025


Cleaning data with pandas

Let’s import our super tool for data cleaning | data wrangling :
import pandas as pd

Reading a CSV file in pandas:
df = pd.read_csv("data/sample-data.csv")

The df.head() method returns the top 5 rows by default and can accept an argument n to disp…
By Dheeraj Purohit | Feb 07, 2025


Understanding APIs: A Developer’s Guide to Building and Using APIs

Introduction to APIs:
An Application Programming Interface (API) acts as a bridge between different software applications, allowing them to communicate with each other. Think of an API like a waiter in a restaurant — customers (the client application…
By Subbu Tech Tutorials | Feb 07, 2025


Deep Learning: A Beginner’s Guide

In today’s AI-driven world, Deep Learning (DL) is transforming industries like healthcare, finance, and automation. But how does it work? Let’s break it down with simple explanations and practical insights.

Deep Learning vs. Machine Learning
Both Ma…
By Pravin Tiwari | Feb 07, 2025


My Journey into Python OOP: From Chef to Coder

Hello there! If you're reading this, chances are you're either diving into Python OOP or feeling a bit lost—just like me when I started. I’m currently learning programming at a bootcamp, and let me tell you, it’s been a wild ride. Coming from a 20-ye…
By Buddha | Feb 07, 2025


Docker for Beginners: Containerizing Your First Web Application

Project Title: Containerizing a Simple "Hello World" Web App with Docker.
People new to Docker and containerization concepts.
Project Description:
This project will guide readers through creating a simple "Hello World" web application using Python an…
By mazen sayyed | Feb 08, 2025


[Python Debugging] Beautiful Soup Error – AttributeError: 'NoneType' object has no attribute 'text'

Error
I was writing a code to crawl a website, and AttributeError: 'NoneType' object has no attribute 'text' occured.
My Code:
import requests
from bs4 import BeautifulSoup

param = {
'isDetailSearch': 'N',
'searchGubun': 'true',
'viewYn'…
By Lim Woojae | Feb 08, 2025


File Handling, Data Streams, and Error Management in Python for DevOps

Welcome back, folks! Today, we're diving into one of the most essential aspects of Python for DevOps—file handling, data streams, and error management. These skills will help you manage logs, process data, and handle unexpected errors like a pro in a…
By Rajratan Gaikwad | Feb 08, 2025


Pandas: Import and Export

Pandas CSV
Work with CSV files, read and write like a boss.
Example 1: Read a CSV file.
df = pd.read_csv('file.csv')

Example 2: Write a DataFrame to CSV.
df.to_csv('output.csv', index=False)

Handle CSVs like a data wizard.

Pandas JSON
Handle JSON …
By Arjun Singh | Feb 08, 2025


Real-Time Stock Market Data Pipeline with Kafka and AWS

Project Overview
This project demonstrates a real-time data pipeline for stock market data. It integrates Apache Kafka for data streaming and multiple AWS services for data storage and querying.
Key Features:

Real-time data ingestion using Kafka Pro…
By Umair | Feb 08, 2025


Real-Time-Data-Pipeline-with-AWS-NiFi-and-Snowflake

Project: Slowly Changing Dimensions in Snowflake Using Streams and Tasks
Introduction
This project implements a real-time data pipeline for continuous data ingestion and transformation into a Snowflake data warehouse. It leverages various cloud techn…
By Umair | Feb 08, 2025


Real Estate Data Pipeline with AWS, Airflow, Snowflake & Power BI

This project implements a scalable data pipeline to extract, transform, and load real estate data from Redfin into Snowflake using AWS services. The data is later visualized in Power BI to provide insights into real estate trends.
Overview
The pipeli…
By Umair | Feb 08, 2025


Data Cleaning in Python: A Crucial Skill for Aspiring Data Scientists

Data science is transforming industries across India-from healthcare and finance to e-commerce and government initiatives-but one of the greatest challenges data professionals face is dealing with messy, incomplete, and inconsistent data. In a sense,…
By Devraj More | Feb 08, 2025


Inner Working of Python: How Python Executes Code

Python is one of the most popular programming languages today, known for its simplicity, readability, and versatility. But have you ever wondered what happens behind the scenes when you run a Python script? Understanding the inner workings of Python …
By Shaikh Affan | Feb 08, 2025


Python Type Annotations (part 3)

Table of contents

Variance in Generics
Covariance
Contravariance
Invariance
References

Variance in Generics
Variance in generics refers to how subtyping relationships behave when they are wrapped
in a generic container or function. E.g. if Cat is …
By Dag Brattli | Feb 08, 2025


Power Automate vs Power BI vs Python for Handling Multiple Excel Files – My Experience

Recently, I had to process multiple Excel files in a folder, each following one of two table layouts. My goal was to extract specific columns based on which table layout the file followed, perform calculations and aggregate the data effectively.
I tr…
By Ahamad Tawsif Chowdhury | Feb 08, 2025


From Local to Cloud: Deploying a Django Employment Management App with AWS RDS

💡 Introduction
Welcome to the world of DevOps and Cloud Computing! Today, we’re diving into an exciting hands-on project where we’ll build an Employee Management Application using Django and migrate its database to AWS RDS (Relational Database Servi…
By Pravesh Sudha | Feb 08, 2025


Optimizing Selenium Tests with Chrome Options Using Python

Introduction
Selenium is one of the most popular tools for automating web browsers, and when using it with Python, ChromeOptions provides a powerful way to customize and optimize the browser for automation. Whether you want to run tests in headless m…
By Bhargavi Sheth | Feb 08, 2025


Understanding Python's Execution Flow: From Source Code to Virtual Machine

Python is one of the most popular programming languages, but have you ever wondered what happens behind the scenes when you run a Python script? Every time you run a Python script; it undergoes this structured flow: Source Code → Bytecode → Python Vi…
By Niubi Verse | Feb 08, 2025


How to Build an AI Resume Screener Using Python and Machine Learning

In today's competitive job market, recruiters receive hundreds of resumes for each open position, making manual screening time-consuming and inefficient. AI-powered resume screeners can help automate this process by evaluating resumes, extracting rel…
By Pramod Mothabhau Deore | Feb 08, 2025


EDA (Exploratory Data Analysis)

To train a model, we need to feed it Data. Data which is “cleaned” and “appropriate” for training our machine. Appropriate data means it is “only that much” that is required, consisting of no duplicate values, and irrelevant data(row or column or Nul…
By David singh | Feb 08, 2025


Exploring the TCP/IP Model: Essential Guide to Network Basics

In the world of networking, TCP/IP is the backbone of communication between devices. While the OSI model is often referenced in theory, real-world applications use the TCP/IP model. Developed before the OSI model was formalized, the TCP/IP protocol s…
By Sayantan Manna | Feb 09, 2025


🚀 10 Best AI Development Tools in 2025 – Boost Coding Speed & Productivity!

🛠 Tool 1: GitHub Copilot X
🔍 Overview GitHub Copilot X is the next-gen AI pair programmer, powered by GPT-5. It’s not just a code suggestion tool—it’s a full-fledged development assistant that understands context, anticipates your needs, and even d…
By Binshad Ap | Feb 09, 2025


Consider This: Streamlining Affiliate Wallet Creation with Django Signals

Welcome to the Consider This series, where we explore real-world business challenges and practical Django solutions. In this post, we tackle a common scenario: managing affiliates and automating wallet creation when their status changes to "approved….
By Azeez Aremu | Feb 09, 2025


Split pdf

Here is a Python script to split your 300-page PDF into 10 equal parts (30 pages each) using PyPDF2:
#!/usr/bin/env python3

from PyPDF2 import PdfReader, PdfWriter

# Define input and output file paths
input_pdf_path = "/media/backup_006_3/workspace…
By user1272047 | Feb 09, 2025


Reflecting on my DjangoCon US 2024 Experience

DjangoCon US has always been an excellent experience for me. Despite the diversity and different backgrounds, the community, the talks, the vibe, and everything else have always felt right.
Today, I will highlight my experience at DCUS 2024 and discu…
By Abigail Afi Gbadago | Feb 09, 2025


Top 3 Trending Python Frameworks in 2025

Python continues to dominate the programming world in 2025, powering web development, artificial intelligence, data science, and more. The ecosystem is rich with frameworks that simplify and accelerate development across various domains. Here’s an in…
By Raj Kumar | Feb 09, 2025


Basics of Python NumPy for Machine Learning and Deep Learning

Basics of Python NumPy for Machine Learning and Deep Learning
Hi there! 👋
I’m Dhyuthidhar, and if you’re new here, welcome! I love exploring computer science topics, especially machine learning, and breaking them down into easy-to-understand concept…
By S.S.S DHYUTHIDHAR | Feb 09, 2025


AutoGen Studio

How to Start with Autogen Studio
A beginner's guide to getting started with Autogen Studio, including installation, setup, and testing an agent.

Autogen Framework
Autogen is a powerful framework designed for AI-driven agent communication, allowing u…
By Kumar Harsh | Feb 09, 2025


Building a Full Stack Web Messaging Application with Python, Docker, MongoDB, and Kubernetes

In this hands-on blog post, we’ll walk you through the development and deployment of a full-stack web-based messaging application. This application allows users to store, delete, and view messages in a secure and scalable environment. We’ll be utiliz…
By Shivam Rana | Feb 09, 2025


Top 5 Python Libraries for Automating Tasks in Any Small Business

Running an online tuition business means planning, implementing and maintaining lots of little repetitive tasks such as scheduling lessons, tracking payments and organising student records. Doing this manually step by step can be tedious, time consum…
By Ahamad Tawsif Chowdhury | Feb 09, 2025



#Adam Johnson – Blogs

Boost Your Git DX now has a free sample

Last week, I released the second update to my book Boost Your Git DX. Today I’m happy to announce that I have released a free sample of the book.
By Adam Johnson | Feb 03, 2025


Zsh: clear the “You have mail“ message

Do you see this message when you open a new terminal session?
By Adam Johnson | Feb 04, 2025



#Dev.to

Open Source Customizable Timer: KEGOMODORO! ⏳

#productivity #python #programming #github
By Kağan Arıbaş | Feb 03, 2025


ColorJitter in PyTorch (1)

#python #pytorch #colorjitter #v2
By Super Kai (Kazuya Ito) | Feb 03, 2025


ColorJitter in PyTorch (2)

#python #pytorch #colorjitter #v2
By Super Kai (Kazuya Ito) | Feb 03, 2025


Code Smell 288 – Unthrown Exceptions

#webdev #programming #beginners #python
By Maxi Contieri | Feb 03, 2025


DeepFace Based Image Similarity / Resemblance Sorter Gradio APP – Can Be Used to Batch Sort AI images – Works on Real Images Too

#beginners #ai #tutorial #python
By Furkan Gözükara | Feb 03, 2025


Mastering TCPDump & Python for Ethical Hacking: Network Packet Analysis

#cybersecurity #python #pentesting #infosec
By Richard Chamberlain | Feb 03, 2025


📚 7 Free Python Books That Will Make You a Better Developer 🚀

#programming #python
By Ahmed Bouchefra | Feb 03, 2025


How to Create Your First API with Python, Flask and Azure

#python #api #tutorial #azure
By Chinaza Otumba | Feb 03, 2025


Best Backend Frameworks for 2025: A Developer's Guide to Making the Right Choice

#webdev #javascript #python #backend
By Bishwas Bhandari | Feb 03, 2025


Colors with Rio's oklab color space

#python #rio #color #ui
By Peter Shinners | Feb 03, 2025


Python Day-32 Object oriented programming(oops), CSV, Matplotlib

#python #oop #csv #matplotlib
By Guru prasanna | Feb 03, 2025


Building an AI-powered Financial Behavior Analyzer with NodeJS, Python, SvelteKit, and TailwindCSS – Part 1: The AI Service

#python #ai #webdev
By John Owolabi Idogun | Feb 03, 2025


Python Weekend Tasks

#payilagam #python #selenium #tasks
By Guru prasanna | Feb 03, 2025


A multi-head classifier using SetFit for query preprocessing

#ai #rag #python
By Mayank Laddha | Feb 03, 2025


📚✨ Advanced Python Tipbook: Metaclasses, Context Managers, and the Art of Python Sorcery

#python #development #productivity #programming
By Nihal | Feb 03, 2025


AI-Powered Cover Letter Generator with Django, HTMX, and Gemini

#ai #django #htmx #showdev
By Hana Belay | Feb 03, 2025


Blackjack in Python

#python #gamedev
By DIODE | Feb 03, 2025


The Ultimate Guide to Data Structures and Algorithms | Mbloging

#datastructures #algorithms #python #programming
By Muhaymin Bin Mehmood | Feb 03, 2025


Django MongoDB Backend Quickstart

#django #mongodb #quickstart
By Anaiya | Feb 03, 2025


The Key Benefits of Using a NoSQL Database in Django Development

#django #mongodb #nosql #keybenefits
By Anaiya | Feb 03, 2025


Let’s Switch Things Up: Using MongoDB in an Intro Django Project

#django #mongodb #nosql #beginners
By Anaiya | Feb 03, 2025


Python Data Types & Data Structures

#python #dsa #career #interview
By Mike Vincent | Feb 03, 2025


Resize in PyTorch

#python #pytorch #resize #v2
By Super Kai (Kazuya Ito) | Feb 03, 2025


Building a Simple Rock, Paper, Scissors Game in Go

#go #gamedev #learning #python
By Muha-mmed | Feb 03, 2025


🚀 Introducing Fincept Terminal: Your Open-Source Bloomberg Alternative! 📈

#python #ai #opensource #softwaredevelopment
By Space Lover | Feb 03, 2025


WebForms.py Update to WebFormsJS 1.6

#webformscore #python #flask #django
By Elanat Framework | Feb 03, 2025


Set To-Do list as windows wallpaper (coded by sonnet)

#python #chatgpt #util #productivity
By Casualwriter | Feb 03, 2025


Top 11 Python Libraries Every Data Scientist Should Know

#python #pythonlibraries #datascientist
By Tarun | Feb 03, 2025


Progress – lowCal_update 9

#database #python #softwaredevelopment #programming
By Kazi Priom | Feb 04, 2025


Dependency Injection, CRUD With SQLAlchemy | Building Performant APIs with Python & Litestar Part #4

#python #api #backenddevelopment #litestar
By Ssali Jonathan | Feb 04, 2025


Django on a Budget: The Best Affordable Hosting Options for Your App

#webdev #python #django #devops
By Brian Oginga | Feb 04, 2025


A weather data collection system using AWS S3 and OpenWeather API.

#devops #python #aws #cloud
By La Tasha "L." Pollard | Feb 04, 2025


A weather data collection system using AWS S3 and OpenWeather API.

#devops #python #aws #cloud
By La Tasha "L." Pollard | Feb 04, 2025


Mistral’s ‘Small’ 24B Parameter Model Blows Minds—No Data Sent to China, Just Pure AI Power!

#ai #deepseek #code #python
By Alexander Uspenskiy | Feb 04, 2025


Day 33 – Exception Handling, OOPS Examples

#python #payilagam #exception #oops
By Lakshmi Pritha Nadesan | Feb 04, 2025


CenterCrop in PyTorch

#python #pytorch #centercrop #v2
By Super Kai (Kazuya Ito) | Feb 04, 2025


I retired and taught myself how to code

#learning #tutorial #programming #python
By KiLo | Feb 04, 2025


Building Your Own AI Model with Open-Source Tools: A Step-by-Step Technical Guide

#ai #webdev #python #chatgpt
By Hamza Khan | Feb 04, 2025


Python Day – 33 Exception Handling

#payilagam #python #oop #coding
By Guru prasanna | Feb 04, 2025


💬 How to configure themes in Streamlit

#python #gpt3 #ai
By Ramandeep Singh | Feb 04, 2025


This Exercise Helped me Fine tune My code from Complexity to Simplicity

#python #learning #code #beginners
By Mihsa Idebus | Feb 04, 2025


From C# to Kotlin: A Deep Dive into Blackbird’s Expanded Language Support

#java #go #python #node
By Ambassador | Feb 04, 2025


Mastering k-Nearest Neighbors (k-NN) with a Practical Python Example

#python #discuss #machinelearning #learning
By adaranijo mayowa | Feb 04, 2025


Prompt Engineering? You're doing it wrong.

#ai #python #buildinpublic #coding
By Dror Wayne | Feb 04, 2025


API Versioning with FastAPI and Neon Branching

#api #programming #database #python
By Bobur Umurzokov | Feb 04, 2025


Baten AI: An Unexpected Breakthrough

#ai #abstraction #python
By Hounaïne EL-HAMIANI | Feb 04, 2025


Understanding Stock Trends: Insights from 10 Years of Data

#datascience #python #socialmedia
By beretests | Feb 04, 2025


Top API Marketing Platforms to Scale Your Developer Reach in 2025

#webdev #programming #python #java
By Author Shivani | Feb 04, 2025


HNG-StageN-1:Number Facts API: A Fun & Interactive Flask Web Service

#devops #python #cloud #fastapi
By Precious Edmund | Feb 04, 2025


Unlocking The World Of Vector And Raster Data Using The Key Of The Blog

#vectordatabase #python #datascience #javascript
By Kanishk | Feb 04, 2025


Build a containerized PDF to Markdown converter using Docling and Streamlit ☁️

#docling #python #podman #streamlit
By Alain Airom | Feb 04, 2025


Streamlit in Snowflake App Catalog

#snowflake #streamlit #python #llm
By Tsubasa Kanno | Feb 04, 2025


DRF: SerializerMethodField vs DataSerializerField

#drf #django
By Гимаев Наиль | Feb 04, 2025


Overcoming Real-world Challenges While Deploying an AWS Translation Project:

#cloud #awschallenge #python #devops
By Philip Essel | Feb 04, 2025


Building a ChatGPT Lookalike with Streamlit and Anthropic API

#ai #productivity #python #chatgpt
By Ramandeep Singh | Feb 04, 2025


🚀 Kicking Off My Python Journey!

#beginners #python #datascience #tutorial
By Shreyansh Kumar | Feb 04, 2025


🚀 Kicking Off My Python Journey!

#beginners #python #datascience #tutorial
By Shreyansh Kumar | Feb 04, 2025


🚀 Build Dashboard Using Google Sheets API 🚀

#automation #javascript #python #beginners
By Saurabh Saha | Feb 05, 2025


FiveCrop in PyTorch

#python #pytorch #fivecrop #v2
By Super Kai (Kazuya Ito) | Feb 05, 2025


Web-Scrapper-Python

#python #webdev #website #powerautomate
By Mayank Chawdhari | Feb 05, 2025


Filling in PDF forms with Python

#python
By Paul Cochrane 🇪🇺 | Feb 05, 2025


Sample Super Store Analysis Using Python & Pandas

#python #pandas #datascience #beginners
By gerry leo nugroho | Feb 05, 2025


What is String and its types in Python?

#python #micropython #pythonlearning #learning
By Muhammad Atif Iqbal | Feb 05, 2025


Simplest ETL: Data Engineering

#webdev #python #programming #beginners
By Alex Aslam | Feb 05, 2025


Day 34 – Constructor, Inheritance

#python #payilagam #constructor #inheritance
By Lakshmi Pritha Nadesan | Feb 05, 2025


Testando código que chama serviços da AWS

#aws #testing #python #braziliandevs
By Eduardo Klosowski | Feb 05, 2025


Page Transactions and Page Object Model

#python #pagetransactions #patterns #testing
By Douglas Cardoso | Feb 05, 2025


Declarative Data Pipelines: Moving from Code to Configuration

#dataengineering #python #opensource
By Jonathan Bhaskar | Feb 05, 2025


Python Day – 34 Constructor, Inheritance, Overloading

#python #payilagam #constructor #inheritance
By Guru prasanna | Feb 05, 2025


Why Python is the Preferred Language for Data Science

#python #softwaretraining #datasciencecourse
By Lekshmi | Feb 05, 2025


5 Python PDF Conversion Packages for Document Management

#ironpdf #python #pythonpackages #documentmanagement
By Mehr Muhammad Hamza | Feb 05, 2025


The Ultimate Guide to Django Templates

#django #python
By Evgenia Verbina | Feb 05, 2025


Deploying the Number Classification API Using AWS Lambda Function URL

#api #python #aws #lambda
By Richard Atodo | Feb 05, 2025


The Intersection of Data Science and Cloud Computing

#datasciencecourse #machinelearning #sql #python
By Devraj More | Feb 05, 2025


Building My First Python Terminal Game: Hangman

#beginners #python #learning
By mDex2409 | Feb 05, 2025


From Zero to FastAPI Hero: My HNG12 Stage 0 Adventure

#fastapi #programming #python #beginners
By Joseph Adamu | Feb 05, 2025


Introducing 'aasetpy'

#python #devops #opensource #productivity
By Aadarsh Lalchandani | Feb 05, 2025


Setting up Bee-Stack on MacOS Intel

#tutorial #ai #opensource #python
By Alain Airom | Feb 05, 2025


RandomResizedCrop in PyTorch (1)

#python #pytorch #randomresizedcrop #v2
By Super Kai (Kazuya Ito) | Feb 05, 2025


Exploring ASGI: Python’s Async Protocol for Web Apps

#python #fastapi #flask #django
By Leapcell | Feb 05, 2025


Advanced ArcticDB Usage for Technical Analysis with Python

#python #programming #quant
By Tikam Singh Alma | Feb 05, 2025


From Flutter to Backend: My Chaotic First 48 Hours with Python 🐍

#devtools #programming #python #backenddevelopment
By Arslan Yousaf | Feb 05, 2025


Creating and Managing User Accounts, Calculator & Sending Notifications in Python

#python #inputs #validations #recaps
By Onyeacholem Ifeanyi Joshua | Feb 05, 2025


9 Developer Fixes You Need Right Now (Seriously)

#java #python #php #ruby
By 0x2e Tech | Feb 06, 2025


FastAPI vs Flask: Key Differences and Use Cases

#fastapi #flask #python #programming
By Muhammad Atif Iqbal | Feb 06, 2025


Komli AI

#python #html #ai #webapp
By Tanner Curr | Feb 06, 2025


FastAPI: The Ultimate Guide to Building High-Performance APIs with Python

#fastapi #python #programming #learnfastapi
By Muhammad Atif Iqbal | Feb 06, 2025


Introduction to Algorithms and Pseudocode 

#algorithms #javascript #python #softwareengineering
By Olatunde Emmanuel | Feb 06, 2025


Making an OAuth App for the First Time

#python #django #database
By Khaled Abdelbar | Feb 06, 2025


Running sklearn models in Zig

#zig #python #zap #sklearn
By Vinícyus Brasil | Feb 06, 2025


How to Add Integration Tests Using an AI Coding Agent

#casestudy #python #integrationtesting #playwright
By Wes Nishio | Feb 06, 2025


A Tool to convert Bluesky posts to Pixela graph

#bluesky #pixela #python
By Yasunori MAHATA | Feb 06, 2025


How to add new markdown cells using python

#colab #python #javascript #markdown
By Vaibhav Anand | Feb 06, 2025


How to add an Automated Unit Test with a Coding Agent

#python #unittest #pytest #githubactions
By Wes Nishio | Feb 06, 2025


How to Fix an Error within Minutes with Sentry and GitAuto

#sentry #github #bugfix #python
By Wes Nishio | Feb 06, 2025


Autonomous Car using Raspberry Pi!

#python #raspberrypi
By Kiamehr | Feb 06, 2025


Mastering Data Wrangling: A Simple Guide for Developers

#beginners #python #datascience #tutorial
By allan-pg | Feb 06, 2025


How to Build a Free Weather App with PySide6 and Open-Meteo

#python #pyside6 #openmeteo #weather
By Developer Service | Feb 06, 2025


Number Classification API Development. HNG task 1

#devops #python #aws #cloud
By Victor Eze | Feb 06, 2025


Python vs PHP: Which One is Better for Website Development?

#python #php #websitedevelopment
By Vikrant Bhalodia | Feb 06, 2025


How Form validation works under the hood in Django?

#django #python
By guzmanojero | Feb 06, 2025


👌Using 🔟Selenium Components to Scrap Location Data from Google Maps!

#selenium #python #datascience #scraping
By Sajjad Rahman | Feb 06, 2025


Python vs JavaScript: Which is Better for Beginners?

#python #javascript #pythonvsjavascript
By Tarun | Feb 06, 2025


AWS Lambda RIC – Runtime interface Client

#aws #lambda #python
By Karthi Mahadevan | Feb 06, 2025


My Blogging Dawn

#beginners #webdev #machinelearning #python
By Diego López | Feb 07, 2025


My New Post on Dev.to

#python #programming
By Haebin Lee | Feb 07, 2025


'selenium.common.exceptions.SessionNotCreatedException' Error using SeleniumBase

#python #selenium #seleniumbase #help
By ZcodeZ777 | Feb 07, 2025


🔐 Post-Cuántica Cryptography: Construyendo Sistemas de Seguridad a Prueba de Futuro

#programming #ai #python #machinelearning
By Mario Diaz Gomez | Feb 07, 2025


🎥 Django Register View and Template Authentication – A Step-by-Step Guide

#webdev #django #python #tutorial
By NJOKU SAMSON EBERE | Feb 07, 2025


The Impact of AI & ML on the Tech Industry: A Paradigm Shift

#ai #machinelearning #llm #python
By Ish | Feb 07, 2025


New OS

#programming #python #learning #java
By Bcrust | Feb 07, 2025


🚀 Build Your Own Local RAG Researcher with DeepSeek R1

#ai #rag #deepseek #python
By Aymen K | Feb 07, 2025


Unveiling: How Web Crawlers Bypass Access Restrictions Using Proxy IPs

#python #crawlers #ip #proxy
By 98IP 代理 | Feb 07, 2025


Python Day- 35 Abstraction , Encapsulation

#python #payilagam #abstraction #encapsulation
By Guru prasanna | Feb 07, 2025


RandomResizedCrop in PyTorch (1)

#python #pytorch #randomresizedcrop #v2
By Super Kai (Kazuya Ito) | Feb 07, 2025


RandomResizedCrop in PyTorch (2)

#python #pytorch #randomresizedcrop #v2
By Super Kai (Kazuya Ito) | Feb 07, 2025


Workaround Complex code when you miss some concepts

#python #beginners #programming #productivity
By Mihsa Idebus | Feb 07, 2025


17 Best GitHub Repositories to Learn Python

#webdev #programming #python #beginners
By Shefali | Feb 07, 2025


AWS Aurora DSQL for Django Developers: A Step-by-Step Guide

#aws #auroradsql #developer #django
By Kevin Kiruri | Feb 07, 2025


Day 35 – Abstraction, Encapsulation in Python and Database

#python #abstraction #encapsulation #database
By Lakshmi Pritha Nadesan | Feb 07, 2025


Django Codebase Updates: January 2025

#django #opensource #python #webdev
By Rasul Kireev | Feb 07, 2025


Top 7 Python Libraries Every Data Analyst Should Know in 2025

#python #machinelearning #datascience #data
By Phylis Jepchumba, MSc | Feb 07, 2025


Top 10 Python Memory Optimization Tricks for ML Models That Actually Work

#programming #devto #python #softwareengineering
By Aarav Joshi | Feb 07, 2025


How to Call the DeepSeek-R1 API Using Python? An In-Depth Step-by-Step Guide

#deepseek #ai #python #tutorial
By Auden | Feb 07, 2025


My Preconfigured Django Template: Part 1 – Introduction

#django #python #beginners #learning
By Matúš Kočik | Feb 07, 2025


My Preconfigured Django Template: Part 2 – UV Astral

#python #django #learning #beginners
By Matúš Kočik | Feb 07, 2025


My Preconfigured Django Template: Part 3 – Django Extensions

#django #python #learning #beginners
By Matúš Kočik | Feb 07, 2025


How I Hosted My Static Website on Amazon S3 Using the AWS Console

#aws #python
By Stephen Lawal | Feb 07, 2025


Build Your Own Offline AI Chatbot: Running DeepSeek Locally with Ollama

#python #ollama #deepseek #localai
By Shelwyn Corte | Feb 07, 2025


RandomHorizontalFlip in PyTorch

#python #pytorch #randomhorizontalflip #v2
By Super Kai (Kazuya Ito) | Feb 07, 2025


RandomVerticalFlip in PyTorch

#python #pytorch #randomverticalflip #v2
By Super Kai (Kazuya Ito) | Feb 07, 2025


How to Create a Crypto Trading Bot with CryptoTradeMate

#cryptocurrency #opensource #python #devops
By Hussenatou Diallo | Feb 07, 2025


Game Highlights Processor with AWS, Docker & Terraform.

#aws #python #docker #rapidapi
By Gbenga Ojo-Samuel | Feb 07, 2025


Getting Started with GitLab: Sign-In Guide and Beginner Tips

#python #coding #programming #computerscience
By Samita Khanduri | Feb 07, 2025


RandomRotation in PyTorch

#python #pytorch #randomrotation #v2
By Super Kai (Kazuya Ito) | Feb 07, 2025


Deploying My Flask API: From Debugging Nightmares to a Live Service – HNG STAGE1 TASK

#hng #backend #api #python
By mayowa-kalejaiye | Feb 07, 2025


RandomAffine in PyTorch (1)

#python #pytorch #randomaffine #v2
By Super Kai (Kazuya Ito) | Feb 07, 2025


RandomAffine in PyTorch (2)

#python #pytorch #randomaffine #v2
By Super Kai (Kazuya Ito) | Feb 07, 2025


RandomAffine in PyTorch (3)

#python #pytorch #randomaffine #v2
By Super Kai (Kazuya Ito) | Feb 07, 2025


Python Metaclasses: A Deep Dive

#metaclas #python #software
By illia wolkow | Feb 07, 2025


Think You Know FastAPI and ASGI? Let's Dive In!

#python #fastapi #asgi #starlette
By Kfir | Feb 07, 2025


This Week In Python

#python #thisweekinpython
By Bas Steins | Feb 07, 2025


DePINed Python And Javascript Bot.

#airdrop #depined #javascript #python
By Faiq Khan | Feb 08, 2025


DePINed Airdrop Farming Guide With Javascript and Python Bot.

#python #javascript #cryptocurrency #tutorial
By Faiq Khan | Feb 08, 2025


My First Post on DEV

#sql #python #data #dataengineering
By Mohammed Afkir | Feb 08, 2025


Node.js vs Django: Which Back-End Framework is Right for Your Next Project?

#node #django #backend #backenddevelopment
By Raji moshood | Feb 08, 2025


Profile Card

#webdev #javascript #programming #python
By Lekside081 | Feb 08, 2025


RandomPerspective in PyTorch

#python #pytorch #randomperspective #v2
By Super Kai (Kazuya Ito) | Feb 08, 2025


CenterCrop in PyTorch

#python #pytorch #centercrop #v2
By Super Kai (Kazuya Ito) | Feb 08, 2025


Proxy IP and Python: an efficient combination to break through network restrictions

#python #network #data
By 98IP 代理 | Feb 08, 2025


Escalando api de mil usuários para um milhão

#javascript #aws #python #api
By Bendev Junior | Feb 08, 2025


Resize in PyTorch

#python #pytorch #resize #v2
By Super Kai (Kazuya Ito) | Feb 08, 2025


Top 5 web scraping tools in 2025

#beginners #python #automation #api
By datacollection | Feb 08, 2025


Deep Dive into Server-Sent Events (SSE)

#serversideevents #unidirectional #javascript #python
By Vivek Yadav | Feb 08, 2025


Data Analysis Showdown: Comparing SQL, Python, and esProc SPL

#programming #sql #python #esproc
By Judy | Feb 08, 2025


Getting Started: How to Build a GNSS-Based Auto-Steering System from Scratch

#gnss #python #robotics #agriculture
By zly | Feb 08, 2025


How to Install Ollama with DeepSeek-r1 and Integrate it with Python on Windows

#ai #tutorial #python
By Majushree H | Feb 08, 2025


Bloom Filters Made Easy: Python Code & Explanation 🐍

#python #algorithms #fastapi #django
By Leapcell | Feb 08, 2025


SQL vs NoSQL: Choosing the Right Database for Data Science

#datasciencecourse #sql #python #machinelearning
By Devraj More | Feb 08, 2025


From Local to Cloud: Deploying a Django Employment Management App with AWS RDS

#aws #django #devops #docker
By Pravesh Sudha | Feb 08, 2025


Python Full Course for Free

#python #machinelearning #ai #programming
By Bytes Institute | Feb 08, 2025


Using WebSockets to make an online pong game

#programming #python #backenddevelopment #softwaredevelopment
By Diogo Daniel Soares Ferreira | Feb 08, 2025


Trending 30 Articles to Read by Every Python Developers.

#python #programming #ai #beginners
By Dev Resources | Feb 09, 2025


Trending 30 Articles to Read by Every Python Developers.

#python #programming #ai #beginners
By Dev Resources | Feb 09, 2025


Year 1: Foundations

#learning #programming #python #algorithms
By Brenda dos Santos Cabral Chaves | Feb 09, 2025


Consuming paginated API using periodic Celery task in a Django Application

#django #cryptocurrency #python #webdev
By John Owolabi Idogun | Feb 09, 2025


RandomCrop in PyTorch (1)

#python #pytorch #randomcrop #v2
By Super Kai (Kazuya Ito) | Feb 09, 2025


RandomCrop in PyTorch (2)

#python #pytorch #randomcrop #v2
By Super Kai (Kazuya Ito) | Feb 09, 2025


RandomCrop in PyTorch (3)

#python #pytorch #randomcrop #v2
By Super Kai (Kazuya Ito) | Feb 09, 2025


Building a Real-Time NBA Game Day Notification System with AWS and Terraform

#devops #terraform #python #aws
By Maxwell Ugochukwu | Feb 09, 2025


Weekly Challenge: Sorting and counting

#perl #python #theweeklychallenge
By Simon Green | Feb 09, 2025


Python 3.12.4: Features, Improvements, and Comparison with Previous Versions

#python
By Muhammad Ahmad | Feb 09, 2025


How to Build a Flask Python Web Application?

#python #flaskpython #web
By Tarun | Feb 09, 2025


Create a CLI application with Python

#python #cli #programming
By Kanak Tanwar | Feb 09, 2025


Python’s Rise in the AI Era: The Language Powering the Future

#python #ai
By Kritrim Dhi | Feb 09, 2025


Python Metaprogramming Unleashed: Full Control Over Everything

#python #flask #django #fastapi
By Leapcell | Feb 09, 2025


Dots Simulation using Genetic Algorithm – Part 3

#python #ai #beginners #tutorial
By Abdulrazaq Ahmad | Feb 09, 2025


Free Books Python, Linux, Cloud and Programming – v2

#python #cloud #linux #programming
By sc0v0ne | Feb 09, 2025


PIP vs OneDrive: A Permission Battle!

#pip #python #warning #ai
By Tahzib Mahmud Rifat | Feb 09, 2025


A clean way to build AI with Python: Get more results with less code

#python #llm #langchain #pydantic
By Eduard Knezovic | Feb 09, 2025



#Data School

Should you still learn to code in 2025? 🤔

Is coding dead in the age of AI? Not at all! Here are 16 reasons why coding is a must-have skill for 2025 and beyond.
#AI
By Kevin Markham | Feb 03, 2025



#Daniel Roy Greenfeld Blogs

TIL: Typer commands defaulting to help

A more elegant way to display default help.
By Daniel Roy Greenfeld | Feb 07, 2025