Table of Contents


#Pybites

Creating a Fitness Tracker App with Python Reflex

In this post, I will build a simple fitness tracker app using Python Reflex. Reflex is a Python library that allows you to create reactive applications using a functional and declarative approach. We will use Reflex to create a simple fitness tracker app that allows you to log the amount of workouts completed per week.…
#Developer #Projects #Tools
By Bob Belderbos | Jan 16, 2025


Create Project-Less Python Utilities with uv and Inline Script Metadata

The other day I wanted to demo the Google Books API (we use for Pybites Books) to somebody so I started to write some code on the fly to call its endpoints using httpx. Then I thought it would be nice to turn it into a small script to search for books and view details…
#Tools #Modules
By Bob Belderbos | Jan 17, 2025



#Real Python

Build a Personal Diary With Django and Python

In this beginner-friendly tutorial, you'll build a personal diary in Django. You'll use the strengths of the Django web framework and learn the basics of web apps.
#basics #django #front-end #projects #web-dev
By | Jan 13, 2025


How to Replace a String in Python

In this tutorial, you'll learn how to remove or replace a string or substring. You'll go from the basic string method .replace() all the way up to a multi-layer regex pattern using the sub() function from Python's re module.
#basics #best-practices
By | Jan 15, 2025


The subprocess Module: Wrapping Programs With Python

In this tutorial, you'll learn how to leverage other apps and programs that aren't Python, wrapping them or launching them from your Python scripts using the subprocess module. You'll learn about processes all the way up to interacting with a process as it executes.
#intermediate
By | Jan 18, 2025


Python's min() and max(): Find Smallest and Largest Values

In this tutorial, you'll learn how to use Python's built-in min() and max() functions to find the smallest and largest values. You'll also learn how to modify their standard behavior by providing a suitable key function. Finally, you'll code a few practical examples of using min() and max().
#basics #python
By | Jan 18, 2025


NumPy's max() and maximum(): Find Extreme Values in Arrays

In this introduction to NumPy, you'll learn how to find extreme values using the max() and maximum() functions. This includes finding the maximum element in an array or along a given axis of an array, as well as comparing two arrays to find the larger element in each index position.
#basics #data-science #numpy
By | Jan 18, 2025


Create and Modify PDF Files in Python

In this tutorial, you'll explore the different ways of creating and modifying PDF files in Python. You'll learn how to read and extract text, merge and concatenate files, crop and rotate pages, encrypt and decrypt files, and even create PDFs from scratch.
#intermediate #tools
By | Jan 19, 2025


Python Constants: Improve Your Code's Maintainability

In this tutorial, you'll learn how to properly define constants in Python. By coding a bunch of practical example, you'll also learn how Python constants can improve your code's readability, reusability, and maintainability.
#intermediate #python
By | Jan 19, 2025


Python Class Constructors: Control Your Object Instantiation

In this tutorial, you'll learn how class constructors work in Python. You'll also explore Python's instantiation process, which has two main steps: instance creation and instance initialization.
#intermediate #python
By | Jan 19, 2025


pandas GroupBy: Your Guide to Grouping Data in Python

In this tutorial, you'll learn how to work adeptly with the pandas GroupBy facility while mastering ways to manipulate, transform, and summarize data. You'll work with real-world datasets and chain GroupBy methods together to get data in an output that suits your purpose.
#intermediate #data-science
By | Jan 19, 2025



#Python Insider

Python 3.14.0 alpha 4 is out

By Hugo | Jan 14, 2025



#testdriven.io

Database Indexing in Django

This article explores the basics of database indexing, its advantages and disadvantages, and how to apply it in a Django application.
#Django
By Oluwole Majiyagbe | Jan 15, 2025



#Python Library

Textual – Switching Screens in Your Terminal

The Screen is a container for your widgets. These screens occupy the dimensions of your terminal by default. While you can have many different screens in a single application, only one screen may be active at a time. When you create your App class, Textual will create a screen object implicitly. Yes, Textual requires you to have at […]
#Python
By Mike | Jan 14, 2025



#Adam Johnson – Blogs

Shell: benchmark the difference between two Git branches with hyperfine

hyperfine is a neat tool for benchmarking commands. If you provide it multiple commands, its output includes a comparison, saying which is the fastest, and by how much.
By Adam Johnson | Jan 14, 2025



#Hashnode

Programming for Python Data Science: Principles to Practice

The Power of Python in Data Science
Hey there, future data wizard! Ever wondered why Python is the talk of the town in data science circles? Well, buckle up, because we're about to dive into the wonderful world of Python for data science.
Python isn'…
By MrKarthikKN | Jan 13, 2025


Welcome

Welcome
By Nandkishor Dhekane | Jan 13, 2025


Kadane's Algorithm

Finding the maximum sum of a subarray in a given array is a classic problem in computer science and is efficiently solved using Kadane's Algorithm. This algorithm is celebrated for its simplicity and optimal time complexity of O(n)O(n)O(n), making it…
By M B A R K | Jan 13, 2025


The Sliding Window Technique

The Sliding Window technique is a powerful algorithmic approach to solve problems involving arrays, strings, or sequences. It reduces the need for nested loops, improving efficiency and making your code more elegant. This article will introduce the c…
By M B A R K | Jan 13, 2025


Intrusion Detection System (IDS)

Introduction
As part of my journey into DevOps Engineering and AWS Cloud Architecting, I’ve embarked on a project to develop an Intrusion Detection System (IDS). This system leverages the power of machine learning to identify and classify potential t…
By VICTOR ILIYA | Jan 13, 2025


Typed integers in Rust for safer Python bytecode compilation

Shortly after I shared my previous post, a helpful redditor pointed out that the typed integers I alluded to is known as the newtype pattern in Rust, a design that allows you to define types purely for compile-time safety and with no runtime hit.
And…
By Jones Beach | Jan 13, 2025


PostgreSQL Trigram Search: Deep Dive into Django Implementation

In the world of web applications, we know that search functionality doesn’t always deal with perfect input. It’s common for users to make typos, and sometimes data comes into our systems in all sorts of formats. Because of this, traditional exact-mat…
By Saeed Ramezani | Jan 13, 2025


3223. Minimum Length of String After Operations

class Solution:
def minimumLength(self, s: str) -> int:
c = Counter(s)

def removals(n):
if n >= 3:
if n % 2 == 0 :
return n – 2
return n – 1

return 0


By Tapan Rachchh | Jan 13, 2025


Building a REST API with Flask-RESTx and Swagger Documentation

In this tutorial, we'll create a simple REST API to manage contacts. The API will include fields for name, email, and a subscription indicator to track whether a contact has subscribed to our newsletter. We'll use Flask-RESTx, which can automatically…
By Dinesh Nair | Jan 13, 2025


FastHTML and Heroku

When creating a new app or service, what begins as learning just one new tool can quickly turn into needing a whole set of tools and frameworks. For Python devs, jumping into HTML, CSS, and JavaScript to build a usable app can be daunting. For web de…
By Alvin Lee | Jan 13, 2025


Interactive Hiking Maps with Datasette and Google Cloud

I created an interactive map of my hikes using the powerful Datasette tool by Simon Willison. The result was an intuitive, easy-to-use map that links each hike to a full report on my blog. Many interesting technologies are at play.
The underlying dat…
By Keith Winston | Jan 14, 2025


Design (LLD) Internet Download Manager like IDM – Machine Coding Interview

Feature Requirements

Download File: The system should support downloading a file from a given URL using HTTP/HTTPS protocols.

Segmented Downloading: Divide a file into multiple segments and download them in parallel for faster speed.

Pause and Res…
By Subhahu Jain | Jan 14, 2025


01 – Python Fundamentals

What is Python?

Python is a high-level, interpreted programming language known for its simplicity and readability.

It was created by Guido van Rossum and released in 1991.

Python is widely used for a variety of applications, including web developm…
By Rohit Pagote | Jan 14, 2025


Day 15 : Python Libraries for DevOps

What are python libraries?
Python libraries are collections of pre-written code that provide functions, methods, and classes to perform specific tasks, eliminating the need to write code from scratch. Libraries extend Python's capabilities by offerin…
By Rahul Singh | Jan 14, 2025


How to Use Cliniko APIs in Python: A Comprehensive Guide

Introduction
In today’s fast-paced medical environment, healthcare professionals juggle patient care with administrative tasks that can be time-consuming and inefficient. Gone are the days of spending countless hours buried under paperwork — tools li…
By Pruthviraj Mahalunge | Jan 14, 2025


Setting up an onion service

What is Tor?
Tor is a protocol that enables anonymous communication over internet by routing traffic through many volunteer operated servers known as relays.Tor provides anonymity by masking both client’s and the server’s IP addresses.
What is Onion …
By Vaibhav Yadav | Jan 14, 2025


Naive Bayes: Have You Been Spammed?

Naive Bayes is a family of algorithms grounded in probability theory, distinguished by the simplifying (often unrealistic) assumption that all features in a dataset are conditionally independent given the label. This assumption, though seldom strictl…
By Jyotiprakash Mishra | Jan 14, 2025


2657. Find the Prefix Common Array of Two Arrays

class Solution:
def findThePrefixCommonArray(self, A: List[int], B: List[int]) -> List[int]:
matchCount = 0
n = len(A)
c = [0] * n
aSet = set()
bSet = set()

for i in range(n):
if A[i] i…
By Tapan Rachchh | Jan 14, 2025


02 – Control Flow – Conditional Block and Loops

Conditional Statements

Conditional statements in Python are used to make decisions based on conditions. These statements control the flow of execution depending on whether a condition evaluates to True or False.

Types of Conditional Statements

if …
By Rohit Pagote | Jan 14, 2025


Cliniko API and Python: How We Built a Custom AI Solution for Clinics

Introduction
In today’s fast-paced medical environment, healthcare professionals juggle patient care with administrative tasks that often slow them down. While tools like Cliniko have streamlined practice management—handling scheduling, patient recor…
By Pruthviraj Mahalunge | Jan 14, 2025


Telegram Bot Development: Complete Guide for Beginners

Introduction
With its user-friendly interface and extensive features, Telegram is a leading messaging platform. One of its standout capabilities is the support for bots. In this guide, we will explore how to build a Telegram bot step by step, using P…
By Esubalew Chekol | Jan 14, 2025


Let's get started with Python!

Python is a high-level, versatile programming language known for its simplicity and readability. It was developed by Guido Van Rossum in February 1991. It is widely used in web development, data science, artificial intelligence, machine learning, and…
By Kulsoom Zaidi | Jan 14, 2025


书爱上python

源码是在网上找的网页
print('a={}'.format(2))

print('——-')

#list
print('——')

a=[1,2,3,4]
print(a[-1])

# first index is 0
a.insert(4,5)
print(a)

a.append(6)
print(a)
b = a.pop()
print(a, b)

# 删除第二个元素
a.pop(1)
print(a)

# tuple
print('———')

a…
By Eddie Qiao | Jan 14, 2025


How to Connect to a Salesforce Database From Python With Devart Python Connector

Our new blog article is out!
Integrating Python with Salesforce looks simple – install a library, connect to an API, and start querying data. But the reality is far more complex. Salesforce’s API structure presents challenges that aren’t immediately …
By Tim Lewis | Jan 14, 2025


Python Project: Automated File Backup System

Introduction:

In this article, I will take you through my project which is an automated file backup system using Python. So basically this program schedules daily backups of any particular folder to our new specified location, ensuring my important …
By Sheikh Abdul Wahid | Jan 14, 2025


04 – Functions & Exception Handling

Functions

A function in Python is a reusable block of code that performs a specific task.

Functions are used to organize code, make it more readable, and avoid repetition.

Defining a Function
def function_name(parameters):
"""
Optional do…
By Rohit Pagote | Jan 14, 2025


03 – List, Tuples & Dictionary

Lists

A list in Python is a collection of items (or elements) that are ordered, mutable (can be modified), and allow duplicate values. Lists are one of Python's most versatile and widely used data structures.

Key Features of Lists

Ordered: The ite…
By Rohit Pagote | Jan 14, 2025


Streamlit – python package for AI engineers

Streamlit is a python package that is useful for AI engineers to visualize data.
pip install streamlit

The following code snippet shows a line chart from data.
import streamlit as st
import pandas as pd

st.write("""
# My first app
Hello *world!*
""…
By Vijay Thirugnanam | Jan 14, 2025


How to Install Python on Ubuntu Without Hassle

Python is a widely-used programming language for creating automation scripts and various other applications. While Python 3 is the latest version, Python 2 is nearly deprecated. I frequently use Python for software development, particularly for creat…
By Agee Aondo | Jan 14, 2025


Byte string in Python

In Python, the prefix b before a string creates a bytes object, while a normal string (str) is Unicode.
Key Differences

Data Type:

b'': Represents raw binary data, each element is a byte (integer 0-255).
'': Represents Unicode text (human-readable)…
By Ajit Kumar | Jan 14, 2025


Choosing the Right Data Structure: Key Factors and Performance Metrics

Choosing the proper data structure is key to writing efficient and scalable software. Each data structure comes with tradeoffs in speed, memory use, and ease of implementation, which can impact how well your code performs. In this article, we’ll comp…
By Ikegah Oliver | Jan 14, 2025


Unlocking Insights with Geospatial Data Analytics

In a data-driven world like ours, there’s a realm of information that quite literally puts us on the map: geospatial data.
From urban planning to disaster response, geospatial data dictates how we understand and interact with our world. It’s not just…
By Kanishk Chauhan | Jan 15, 2025


Get rid of excel and deploy a private spreadsheet system

Introducing Univer Go
The Univer team’s mission is to enable all organizations and individuals to have a personalized office space. In the nearly one year since the release of the Univer SDK, we have helped dozens of companies customize their own eff…
By Spreadsheet_uni | Jan 15, 2025


Univer Go Launches AI-Powered API Writing Assistance

Background
When expanding Univer applications using the Univer API, many developers find it challenging, especially those who are not familiar with the API. Traditionally, we have to frequently consult official documentation to understand how to use …
By Spreadsheet_uni | Jan 15, 2025


Introduction to Elastic Compute Cloud

Cloud technologies have become an integral part of modern architecture, whether partially or fully implemented. They could be used to harness the platform's extensive features for entire applications or to host portfolios and personal projects. Gaini…
By Sofiane Boumelit | Jan 15, 2025


Fastify

What is Fastify
Fastify is a high performance web framework for Node JS .designed to build APIs and web application with a focus on speed, and it is always used as an alternative of other node js framework like Express JS due to its better performanc…
By Yashaswi Sahu | Jan 15, 2025


Let AI Handle Kubernetes Diagnostics—So You Don’t Have To

Diagnosing Kubernetes clusters isn’t rocket science. It’s worse: it’s repetitive, tedious, and eats up precious hours better spent on creative or impactful work. Scanning through logs, running the same kubectl commands, piecing together what went wro…
By Fabrice Carrel | Jan 15, 2025


Building a Smart To-Do List Manager with Python, MongoDB & Kivy (Part 3: Main Screen & Task Management Screens)

Hello tribe, welcome to part 3 of our Series about building a to-do application using Python, MongoDB and Kivy.
In the previous tutorials, we learnt how to:

setup the development environment

interact with MongoDB in Python

create a screen using Ki…
By Mahugnon DOUSSO | Jan 15, 2025


How to create a calculator with python

Hey everyone! I recently learned how to create a simple calculator using Python, and I'm super excited to share my knowledge with you! In this tutorial, I'll be walking you through the steps to create a basic calculator that can perform addition, sub…
By Idowu Wahab Olajide | Jan 15, 2025


Getting Started with GUI Development in Python

Building Graphical User Interfaces (GUIs) in Python is a great way to make your applications interactive and user-friendly. Python offers several libraries that make creating GUIs easy, whether you’re building a small tool or a large desktop applicat…
By Eurico Santos | Jan 15, 2025


2429. Minimize XOR

class Solution:
def minimizeXor(self, num1: int, num2: int) -> int:
bits1 = bin(num1).count('1')
bits2 = bin(num2).count('1')

if bits2 < bits1:
check = "1"
replaceWith = "0"
else:

By Tapan Rachchh | Jan 15, 2025


Building a Flask-Based Twitter Toxicity Detection App

Introduction
Welcome to the Twitter Toxicity Detection Flask App repository! If you’re interested in understanding and analyzing online conversations for toxicity, this project is a perfect starting point. Leveraging the power of machine learning and…
By Mantresh Khurana | Jan 15, 2025


Deploy Application Without Dockerfile – Use Buildpacks

Buildpacks is a tool from the Cloud Native Computing Foundation (CNCF) that helps deploy applications without needing a Dockerfile.
It automatically detects the language and dependencies of your application, then builds a container image for you. Thi…
By Amit singh deora | Jan 15, 2025


How to solve the problem of Python crawler IP being restricted from collecting public data

In the field of data analysis and web scraping, Python has become the top choice for many developers due to its powerful libraries and tools. However, when collecting public data, scrapers often face the issue of IP restrictions. This not only affect…
By 98IP Proxy | Jan 16, 2025


How to Implement Worksheet or Range Protection in Univer

Background
In collaborative spreadsheet editing scenarios, there is often a need to protect certain worksheets or specific ranges to prevent accidental modifications. For instance, in a financial report, administrators may want to lock formula areas …
By Spreadsheet_uni | Jan 16, 2025


Facade API — How Univer Enhances the Development Experience

In this post, we will discuss the Facade API, the interface layer of the Univer SDK, and how it improves usability and serves a broader audience of developers.

Design Goals of Univer
From the outset, the architecture of the Univer SDK was built with…
By Spreadsheet_uni | Jan 16, 2025


Pandas and NumPy: Heroes Behind the Scenes

In the world of data science and machine learning, Pandas and NumPy have become indispensable tools for managing, analyzing, and transforming data. They are the foundation upon which complex workflows and machine learning pipelines are built. Their u…
By Jyotiprakash Mishra | Jan 16, 2025


detour through ansible

intro
this weekend and much of this week has been completely shot. being sick for much of it, i failed to find the energy and motivation to continue grappling with the projects i’ve been working on. instead, in those moments i found able to focus on …
By FM | Jan 16, 2025


HTMX: The Future of The Web

Recently I have been developing a platform SaaS website and have been using HTMX along with TailwindCSS for my frontend and Python and Flask for my backend I have used most of them earlier but HTMX is the new tool in my tool belt so in this post we w…
By Nibodh Daware | Jan 16, 2025


Day 2: Statistics and Probability Basics

In this blogpost, we will be amplifying our area of focus on Statistics and Probability, which plays a crucial role in the field of Data Science and Machine Learning. We will also have a look at some of the algorithms and will also look into the prac…
By Saket Khopkar | Jan 16, 2025


A Beginner's Guide to Web Scraping with Selenium and Proxies for Enhanced Privacy

Selenium is a powerful tool that allows users to scrape data by simulating user operations in the browser, such as clicking, filling out forms, submitting, etc. When performing web crawlers, using a proxy can hide your real IP address and prevent the…
By Lewis Kerr | Jan 16, 2025


Building a Cloud-Based Weather Dashboard: Day 1 of My 30 Days DevOps Challenge

As part of the 30 Days DevOps Challenge from Cozy Cloud Crew, I started on a journey to refine my cloud (specially AWS) and DevOps skills. For Day 1, the challenge was to build a Python-based Weather Dashboard that fetches real-time weather data and …
By Chetan Thapliyal | Jan 16, 2025


Top Python Libraries Every Chemical Engineer Must Know

Python has become a favorite programming language for chemical engineers. Its simplicity, versatility, and vast libraries make it an excellent tool for process simulation, data analysis, and optimization tasks. Python empowers engineers to solve comp…
By Chemical Engineer | Jan 16, 2025


Day 6 – Deploying a Web App on Google Kubernetes Engine (GKE) using Terraform & Docker

In this article, we will be deploying a simple Flask web application to Google Kubernetes Engine (GKE) using Terraform and Docker. We will leverage the power of containerization and Infrastructure as Code (IaC) to build a scalable and robust deployme…
By Fredrick Simi | Jan 16, 2025


Integrating Google Authentication with FastAPI: A Step-by-Step Guide

In this blog, we’ll walk through the process of enabling Google Authentication for a backend API system built using FastAPI. FastAPI has emerged as a popular choice for developing advanced GenAI applications and we at FutureSmart AI use it regularly …
By Sakalya Mitra | Jan 16, 2025


Introducing CashFlow AI – Expense Tracker

A casual discussion with colleagues about an upcoming product hackathon sparked an idea for an app that everyone liked. However, due to other commitments and time constraints, we didn't sign up for the hackathon.
I couldn’t let go of the idea, though…
By Hamza Waleed | Jan 16, 2025


Building an NBA Game Day Notification.

Introduction
This project is for Day 2 of the #DevOpsAllStarsChallenge, and I am excited about it. This project connects to the sports data NBA API to get the available game for the day and sends the notification to the email. It can also be used wit…
By Olugbenga Ajayi | Jan 16, 2025


My first Bedrock Agent with AWS CDK

In this post I will document my first attempt to build an Amazon Bedrock Agent with AWS CDK. The agent uses Retrieval Augmented Generation (RAG) to query a knowledge base containing restaurant descriptions and can perform the action of making a reser…
By Panagiotis Katsaroumpas, PhD | Jan 16, 2025


2425. Bitwise XOR of All Pairings

class Solution:
def xorAllNums(self, num1: List[int], num2: List[int]) -> int:
l1 = len(num1)
l2 = len(num2)

c1 = l1 % 2
c2 = l2 % 2

ans = 0
x = []
if c1:
x += num2

if…
By Tapan Rachchh | Jan 17, 2025


Day 1: Python Journey

Hi everyone!
Today marks the start of my journey toward becoming an AI Engineer, and I couldn’t be more excited! I spent my first day diving into Python, a language that’s essential for AI development.
What I Learned Today
1. Variables and Data Types…
By Rishitha | Jan 17, 2025


Python Testing with Pytest: Features & Best Practices

The importance that we give to developing the application with the software engineering best practices, and principles, the equal importance and significance lies to the unit testing side of the codebase. This is where Pytest, a robust, scalable, fea…
By Animesh Pathak | Jan 17, 2025


Redis 💾 and How Caching Makes Things Super Fast! 🚀

Introduction to Redis
Redis is a key-value pair database that stores data in memory. Because the data is stored in memory, it's great for caching things.

Understanding Caching
What is a cache, you ask?It's usually frequently used data that is stored…
By Affan Shaikhsurab | Jan 17, 2025


Restaurant Reservation Agent with Amazon Bedrock and AWS CDK

In this post I will document my first attempt to build an Amazon Bedrock Agent with AWS CDK. The agent uses Retrieval Augmented Generation (RAG) to query a knowledge base containing restaurant descriptions and can perform the action of making a reser…
By Panagiotis Katsaroumpas, PhD | Jan 16, 2025


Master Autofit Rows and Columns in Excel with Python [Step-by-Step Guide]

Have you ever encountered incomplete content display when exporting data to an Excel table? This issue is especially common with large numbers or text, sometimes even resulting in garbled characters. To process large datasets efficiently, adjusting r…
By Casie Liu | Jan 15, 2025


How to Efficiently Scrape Yelp Data Using Python and Proxies

As an online business evaluation platform, Yelp gathers a large number of users' evaluations, ratings, addresses, business hours and other detailed information on various businesses. This data is extremely valuable for market analysis, business resea…
By Lewis Kerr | Jan 17, 2025


Why We Built an AI Gateway in Rust: A Performance-Centric Decision

When building our AI gateway, we knew performance would be a critical factor. Unlike most AI software written in Python, an AI gateway acts as the proxy layer between users and inference engines. This gateway must handle high concurrency, low latency…
By Matteo Pelati | Jan 17, 2025


FastAPI Performance: Comparing Sync and Async Endpoints

FastAPI is a Python-based framework designed to build APIs. We’ll install FastAPI and explore the benefits of asynchronous programming, which allows tasks to be handled concurrently, leading to more efficient response times. By creating both synchron…
By Dinesh Nair | Jan 17, 2025


Understanding Volatility in Variables and CPU

In the context of programming and CPU, volatility refers to how variables behave when accessed or modified in a multi-threaded or hardware-sensitive environment. This concept is especially crucial in systems programming, where precise control over va…
By M B A R K | Jan 17, 2025


[Python] A Guide to Method Overloading Using Multipledispatch

Introduction
This article introduces multipledispatch package that you can use to enhance readability of your code. It also helps you to easily maintain your code. If you have never used it before and you often use method overloading, this post is re…
By Lim Woojae | Jan 17, 2025


Python Algo’s for API Dudes

Hash Tables: The Supreme Ruler (Kublai Khan TX)
When do these matter? Glad you asked, dude. The most common reason I’ve run into is honestly just slow or heavily rate-limited API’s. The Hash Table is how I cache API responses – minus sensitive data –…
By Orca Software Studio | Jan 17, 2025


Exploring Depression Analysis Using Machine Learning: A Comprehensive Approach

Depression is a mental health condition that affects millions of people worldwide. Early diagnosis and intervention can significantly improve the quality of life for those suffering from it. In this blog, I will walk you through my recent project, wh…
By Venkatesh P | Jan 17, 2025


The leap from Python to C++: A Journey of Growth and New Beginnings

The Rough Start with Python
When I first started learning Python, I was in a challenging environment. I had just moved to a new city, and everything felt unfamiliar. Settling into a new place was tough, and on top of that, the course I took was incre…
By Angel Peña | Jan 18, 2025


GraphQL for Kids : How a Waiter Delivers Exactly What You Need!

Assume you have gone to a restaurant, and in the restaurant, you want to have fries and a burger, that's it. So what happens here is, let’s say there are three counters you have to go to.
You go to the first counter. The first counter gives you fries…
By Affan Shaikhsurab | Jan 18, 2025


Python in DevOps: Automation, Efficiency, and Scalability

Python has become a must-have tool in the DevOps engineer's toolkit. From automating tasks and managing cloud infrastructure to building CI/CD (Continuous Integration and Continuous Delivery) pipelines, Python helps simplify and scale processes. Whet…
By Sophia Iroegbu | Jan 18, 2025


What is DSA?

Before deep diving into the world of DSA, let’s first know what DSA stands for – “DSA aka DATA STRUCTURES AND ALGORITHMS”- which is a crucial step or subject in computer science degrees. To be more precise people often say without mastering DSA you c…
By Mahak gupta | Jan 18, 2025


Building a ChatOps AI Bot with LangChain and LLMs in Slack

Intro
When it comes to managing operations, wouldn't it be great to have a more intuitive, convenient way to execute tasks, delegate work, and empower teams for self-service? That's what ChatOps brings to the table.
It's not just a trend—it's a parad…
By Jothimani Radhakrishnan | Jan 18, 2025


Understanding Mutable and Immutable in Python

Understanding mutable and immutable objects in Python is essential for writing reliable and efficient code. These concepts determine how data can be modified and stored in memory, impacting performance and behavior.
Mutability :-
Mutability refers to…
By Aashish Adhikari | Jan 18, 2025


How to Deploy a Flask Portfolio Website on AWS Elastic Beanstalk

💡 Introduction
Welcome to the world of DevOps! Over the past few days, I’ve been exploring the ins and outs of AWS Elastic Beanstalk, tackling challenges that many cloud beginners might encounter—particularly with the recent changes in Auto-Scaling …
By Pravesh Sudha | Jan 18, 2025


Hackathon Unravelled

Automated Research and Trigger Finder (ART Finder)
In modern advertising, knowing the target audience is as important as the creative process. To create ads that really work, marketers need to conduct thorough research to find out what hurts, trigger…
By Om Songire | Jan 18, 2025


Your First Discord Bot: A Beginner’s Step-by-Step Guide (Python)

Ever wanted your own Discord bot but didn’t know where to start? With Python, it’s easier than you think—even if you’re totally new to coding. In this guide, I’ll show you step by step how to create a simple bot for your server. Let’s get started!
Fo…
By Vahagn Chavushyan | Jan 18, 2025


How I built a Lexical Analyzer for a Theory of Computation class – Part 1

Introduction
In this posts, I will share my approach of how I built a Lexical Analyzer, and I hope this information can help you if your teacher of Theory of Computation asks you to do this as a final project.
The purpose of this post is to understan…
By Saul Hernandez | Jan 19, 2025


Simple Explanation of Python Inner working

Explanation of Python Inner working

High-Level Language : Python is a high-level, interpreted language, meaning you write code in a human-readable form, and Python takes care of translating it into machine code.

Python Interpreter :

Your Python co…
By Krish Patel | Jan 19, 2025


From Beginner to Pro: Setting Up a Python FastAPI Backend with PostgreSQL

A Complete Step-by-Step Guide to Setting Up FastAPI with Database Integration, Migrations, Error Handling, Middleware, and Secure Authentication
Introduction
If you’re a JavaScript developer venturing into the world of Python, FastAPI is the perfect …
By Yuvraj Singh | Jan 19, 2025


Hello World…Again! – Redefining Myself

How I’m Starting Over: Writing My Journey to Tech-Learning and Leveling Up
Life has a funny way of pushing us out of our comfort zones. After 20+ years in the IT industry, I found myself suddenly and unexpectedly without a job. It was a punch to the …
By Raykell Foster | Jan 18, 2025


Dropna Method in Pandas

As a data scientist, handling missing data is an essential part of the data preprocessing pipeline. Pandas provides an efficient way to handle missing data through the dropna method. In this explanation, we'll delve into the details of the dropna met…
By ukana ikpe | Jan 19, 2025



#406 – Matthias

Weeknotes (2025 week 03)

Weeknotes (2025 week 03)
Claude AI helped me for the first time
django-imagefield prefers
processing thumbnails, cropped images etc. directly when saving the model and
not later on demand; it&rsquo;s faster and also you&rsquo;ll know it immediately w…
By Matthias Kestenholz | Jan 15, 2025


Django admin tip: Adding links to related objects in change forms

Django admin tip: Adding links to related objects in change forms
Any issue which came up on the Django Forum and Discord is how to add links to
other objects to the Django administration interface. It&rsquo;s something I&rsquo;m doing
often and I wa…
By Matthias Kestenholz | Jan 17, 2025



#Python Software Foundation

Powering Python together in 2025, thanks to our community!

By Marie Nordin | Jan 14, 2025



#Dev.to

I Surveyed the Top 10 Backend Frameworks Here's What I Found

#webdev #javascript #java #python
By Sreedeep | Jan 13, 2025


CREATING A ROCK, PAPER, & SCISSORS GAME IN PYTHON

#python #programming #100daysofcode #coding
By Seyi Lufadeju | Jan 13, 2025


Face Recognition with Python and FaceNet

#python #ai #machinelearning #pytorch
By Edgaras | Jan 13, 2025


6 Advanced Python Techniques for Efficient Text Processing and Analysis

#programming #devto #python #softwareengineering
By Aarav Joshi | Jan 13, 2025


Using proxy IP for data cleaning and preprocessing

#python #data #proxyip #preprocessing
By 98IP 代理 | Jan 13, 2025


Building a Kubernetes operator with Python

#kubernetes #python #tutorial
By Ashok Nagaraj | Jan 13, 2025


Using uv instead of pip / venv?

#python #uv #fastapi
By Varun D | Jan 13, 2025


Intelligent PDF Data Extraction and database creation

#python #database #pdf #elasticsearch
By Swapnil Vasant Taware | Jan 13, 2025


🔧 Generative AI Developer Week 2 – Day 3: Data Preprocessing

#ai #programming #python #machinelearning
By Sai Chinmay Tripurari | Jan 13, 2025


Climbing a depth-first search hill, Advent of Code 2024, day 10

#adventofcode #depthfirstsearch #python
By Choon-Siang Lai | Jan 13, 2025


Scraping Infinite Scroll Pages with a 'Load More' Button: A Step-by-Step Guide

#webdev #python #programming #tutorial
By Pragati Verma | Jan 13, 2025


The Core of FastAPI: A Deep Dive into Starlette 🌟🌟🌟

#webdev #python #fastapi #django
By Leapcell | Jan 13, 2025


A Developer's Guide to Odoo CRM Customization

#odoo #crm #python
By Đào Duy Hòa | Jan 13, 2025


Build Code-Action AI Agents with freeact

#ai #machinelearning #python #chatgpt
By Christoph Stumpf | Jan 13, 2025


Efficient Web Scraping in Python using Scrapy: Beginner's Guide

#webdev #programming #python #tutorial
By David Asaolu | Jan 13, 2025


Struggling with Custom Styles in Django_ckeditor_5: My Solution

#django
By ALI NAGRA | Jan 13, 2025


Getting Started with Python: Installing Python and Writing Your First Program (Day 2 of 100 Days of Python)

#python #programming #beginners
By All About Python | Jan 13, 2025


Data Engineering Foundations: A Hands-On Guide

#dataengineering #apachespark #apacheairflow #python
By peterson oaikhenah | Jan 13, 2025


Typed integers in Rust for safer Python bytecode compilation

#rust #python #programming
By Jones Beach | Jan 13, 2025


Understanding Lists in Python

#programming #python #coding #computerscience
By Samita Khanduri | Jan 13, 2025


How do I measure the execution time of Celery tasks?

#celery #python
By Ines | Jan 13, 2025


My First RAG Chatbot: What I Built and How

#ai #beginners #programming #python
By HelloGitHub | Jan 13, 2025


Exporting Mac OSX Book Highlights into an Obsidian Vault or Markdown Files

#obsidian #python
By Stephan Miller | Jan 13, 2025


Wrap and Render Multiline Text on Images Using Python's Pillow Library

#python #pillow #programming #tutorial
By Edun Rilwan | Jan 13, 2025


Must-Know Python Open Source Projects for 2025

#python #ai #opensource #programming
By Abubaker Siddique | Jan 13, 2025


Fine-Tuning Large Language Models (LLMs) with .NET Core, Python, and Azure

#dotnet #azure #python #llm
By Paulo Torres | Jan 13, 2025


Making a Todo API with FastAPI and MongoDB

#mongodb #beginners #fastapi #python
By zpillsbury | Jan 13, 2025


GraphDB for CMDB

#graphdb #postgressql #python #cmdb
By SONE | Jan 13, 2025


FastHTML and Heroku

#webdev #python #developer #web
By Alvin Lee | Jan 14, 2025


🛥️ Introduction to Docker: Core Concepts and Basics for Beginners

#docker #devops #cloud #python
By Ravin Rau | Jan 13, 2025


I am a beginner in Python programming and I want to develop my skills.

#python #programming #algorithms #csharp
By Hamza El Manzari | Jan 14, 2025


Build an AI code review assistant with v0.dev, litellm and Agenta

#ai #openai #python #llm
By Mahmoud Mabrouk | Jan 14, 2025


Pandas + NBB data 🐼🏀

#python #webscraping #datascience #dataengineering
By DeadPunnk | Jan 14, 2025


Building a BLE Real-Time macOS Menu Bar App

#bluetooth #macos #python
By Bleuio tech | Jan 14, 2025


Docker Hands-on: Learn Dockerfile, Container, Port Forwarding with Sample Flask Project

#docker #webdev #containers #python
By Ömer Berat Sezer | Jan 13, 2025


Using React as Static Files in a Django Application: Step-by-Step Guide

#django #react #webdev #tutorial
By Gráczol Benedek | Jan 14, 2025


Guide to modern app-hosting without servers on Google Cloud

#node #python #serverless #webdev
By Wesley Chun (@wescpy) | Jan 14, 2025


Extract structured data using Python's advanced techniques

#python #database #api #proxyip
By 98IP 代理 | Jan 14, 2025


How to make your first $ as a drepress programer.

#webdev #ai #python #programming
By Insaf uddin | Jan 14, 2025


Vyper – Write your First Smart Contract (Series)

#vyper #python #web3 #blockchain
By Scofield Idehen | Jan 14, 2025


🚀 Excited to share my latest project: Local LLM Chat Application!

#webdev #programming #ai #python
By Sai Chinmay Tripurari | Jan 14, 2025


Cystic Fibrosis: Understanding the Genetic Disorder

#devops #aws #python #webdev
By Scitech Insights | Jan 14, 2025


Building a Smarter Botnet Simulation: The Ultimate Cybersecurity Playground

#python #hackathon #cybersecurity #blackhat
By christopher adams | Jan 14, 2025


What are AI Agents ? and how can it help you ?

#ai #python #llm
By Inder from lightspeedev | Jan 14, 2025


Coding Programme #python

#python #javascript #html #css
By Arzina Khatun | Jan 14, 2025


Pythonizing JavaScript

#javascript #python #webdev
By André Schmidt | Jan 14, 2025


Train LLM From Scratch

#ai #python #opensource #datascience
By Fareed Khan | Jan 14, 2025


5 Advanced Python Web Crawling Techniques for Efficient Data Collection

#programming #devto #python #softwareengineering
By Aarav Joshi | Jan 14, 2025


🔥 Top 30 Must-Read Productivity Articles for January 9, 2025

#productivity #python #react #ai
By Dev Resources | Jan 14, 2025


Simplify Python-Informix Connections with wbjdbc

#python #database #informix #jdbc
By Wanderson Batista | Jan 14, 2025


Working with Files Asynchronously in Python using aiofiles and asyncio

#python #webdev #tutorial #beginners
By Sam Agnew | Jan 15, 2025


The Complete Introduction to Time Series Classification in Python

#timeseries #datascience #python #machinelearning
By Marco | Jan 15, 2025


How to upgrade the Python version in a virtual environment

#django #pip #python3 #venv
By Maria Campbell | Jan 15, 2025


Protect Your APIs from Abuse with FastAPI and Redis

#fastapi #python #webdev #redis
By FOLASAYO SAMUEL OLAYEMI | Jan 15, 2025


How to solve the problem of limited access speed of crawlers

#python #selenium #proxyip #webscraping
By 98IP 代理 | Jan 15, 2025


Solving Circular Dependencies: A Journey to Better Architecture

#python #architecture #development #hypergraph
By d1d4c | Jan 15, 2025


A Complete Beginner’s Guide to Python Training Course

#python #beginners #pythoncourse #pythontraining
By Daksh Kataria | Jan 15, 2025


Contribute to `real-to-sim-to-real` in SmilingRobo Open-Source Sprint!

#programming #opensource #python #beginners
By Abhinav Sharma | Jan 15, 2025


How to Build a Google Trends Scraper | Scraping Browser Guide 2025

#googletrend #google #python
By Scraper0024 | Jan 15, 2025


Building a String Calculator with Test-Driven Development (TDD): A Step-by-Step Guide

#testing #python #programming #beginners
By Vishal Shukla | Jan 15, 2025


RandomAffine in PyTorch

#python #pytorch #randomaffine #v2
By Super Kai (Kazuya Ito) | Jan 15, 2025


join my project semester simulator

#programming #python #career #opensource
By viraj08 | Jan 15, 2025


A Guide to Planning Your API: Code-First VS Design-First Approach

#api #python #webdev #django
By kihuni | Jan 15, 2025


How to scrape Crunchbase using Python in 2024 (Easy Guide)

#webscraping #webdev #python #developers
By Max Bohomolov | Jan 15, 2025


Serverless NBA Data Lake Application with API Gateway, AWS Lambda, Amazon S3, AWS Glue and Athena Using Terraform

#aws #python #terraform #webdev
By Gbenga Ojo-Samuel | Jan 15, 2025


Artificial Neurons: The Heart of AI

#ai #neuron #python #deeplearning
By Alcione Paiva | Jan 15, 2025


Булеві типи і вирази

#programming #python #learning #beginners
By Григорій Лізанець | Jan 15, 2025


Python в 2025: стоит ли начинать с нуля? Личный опыт и рекомендации

#webdev #python #programming
By sundaycoding | Jan 15, 2025


Scraping real estate data with Python to find opportunities

#python #scraping #realestate
By Philippe Greenleaf | Jan 15, 2025


Python: Refactoring to Patterns

#python #refactoring #designpatterns #books
By Douglas Cardoso | Jan 16, 2025


Vyper Data Types (Series 2)

#python #web3 #smartcontract #blockchain
By Scofield Idehen | Jan 15, 2025


Основы изучения Python: Руководство для начинающих

#programming #tutorial #python #learning
By mishamehed | Jan 15, 2025


Top 5 Python Scripts to Automate Your Daily Tasks: Boost Productivity with Automation

#webdev #python #programming #automation
By Chemical Engineer | Jan 15, 2025


I Earned a $95 Bonus from the Medium Partner Program

#webdev #writing #python #devops
By Gajanan Rajput | Jan 15, 2025


Contribute to imagination-to-real in open-source sprint!

#opensource #python #beginners #robotics
By Abhinav Sharma | Jan 16, 2025


How Developers Enable EV Chargers to Communicate with Mobile Apps

#webdev #javascript #python #programming
By Athreya aka Maneshwar | Jan 16, 2025


From Circuit Boards to Code: How Being a Polyglot Web Developer (and an Electrical Engineer) Supercharged My Programming Game

#programming #rust #react #python
By Ryo Suwito | Jan 16, 2025


Dots Simulation using Genetic Algorithm – Part 2

#ai #python #tutorial #beginners
By Abdulrazaq Ahmad | Jan 16, 2025


Programming Language Trends for 2025

#python #typescript #trends
By ZamoraGuide | Jan 16, 2025


How to Capture Live Video Stream from an IP Camera Using Python

#python #camera #opencvvideostream #androiddev
By SUMIT | Jan 16, 2025


Practical Approaches to Key Information Extraction (Part 2)

#mrzaizai2k #ocr #python #computervision
By Mai Chi Bao | Jan 16, 2025


Key derivation function with Python

#python #algorithms #pikotutorial
By pikoTutorial | Jan 16, 2025


Understanding *args and **kwargs in Python

#python #programming #coding #computerscience
By Samita Khanduri | Jan 16, 2025


O impacto da tipagem no python

#python #solidprinciples #designpatterns #backend
By Marcelo Almeida | Jan 16, 2025


Game Day Event Notification using AWS Serverless Services

#devops #python #devchallenge #programming
By Ameh Mathias Ejeh | Jan 16, 2025


🔧 Generative AI Developer Week 2 – Day 4: Data Preprocessing

#beginners #programming #ai #python
By Sai Chinmay Tripurari | Jan 16, 2025


Agentic AI : Building Production-Grade, Enterprise-Ready AI

#ai #programming #webdev #python
By SimplAI media | Jan 16, 2025


How to Turn Your Open-Source Python Projects into a Money-Making Machine

#python #programming #beginners #opensource
By Abubaker Siddique | Jan 16, 2025


What is missing in Python script

#python
By Haider Saiyed | Jan 16, 2025


The Simplest Free Weather API Integration with Python

#python #weather #api #darksky
By Brian Thompson | Jan 16, 2025


Using Django Fixtures with Foreign Keys Without Hardcoded IDs

#django #python
By Documendous | Jan 17, 2025


RandomPerspective in PyTorch

#python #pytorch #randomperspective #v2
By Super Kai (Kazuya Ito) | Jan 17, 2025


Proxy IP efficiently helps crawl millions of data

#python #proxyip #webscraping #data
By 98IP 代理 | Jan 17, 2025


Building a Weather Data Analytics Pipeline with AWS and OpenWeatherMap API

#aws #devops #terraform #python
By Rene Francisco Cruz González | Jan 17, 2025


Analyzing APIs with PyInterceptor

#python #interceptor #programming #codeanalysis
By Philip Klaus | Jan 17, 2025


Distributed Programming: From Basics to Advanced Concepts

#programming #python #distributedsystems
By Davide Santangelo | Jan 17, 2025


How to reuse an app created in one Django project in another Django project

#django #python3 #reusableapp #localdevelopment
By Maria Campbell | Jan 17, 2025


Posting my first Dev Post: Project : Using Linear Regression in Machine Learning to predict house prices

#python #machinelearning #datascience
By Vishnu Ajit | Jan 17, 2025


Understanding Tuple Unpacking and Iteration in Python: A Beginner's Guide

#python #programming #learning
By Liz_decoder | Jan 17, 2025


This Week In Python

#python #thisweekinpython
By Bas Steins | Jan 17, 2025


Scalable Python backend: Building a containerized FastAPI Application with uv, Docker, and pre-commit: a step-by-step guide

#python #fastapi #docker
By Ismael Arce | Jan 17, 2025


frappe task to learning purpose

#python #webdev #programming #beginners
By Anil | Jan 17, 2025


Python Garbage Collection: Everything You Need to Know

#python #django #flask #fastapi
By Leapcell | Jan 17, 2025


DJANGO MODEL

#django #python #webdev
By George Ngiye | Jan 18, 2025


Comments in Django: be careful

#django #html
By guzmanojero | Jan 18, 2025


Building a Weather Dashboard using S3, Python and OpenWeather API

#devops #python #devchallenge #awschallenge
By Ameh Mathias Ejeh | Jan 18, 2025


Using Anthropic's Claude 3.5 Sonnet for Generating Reports

#ai #programming #rpa #python
By Raphael Sampaio | Jan 18, 2025


Python for Data Science: A Beginner's Introduction

#python #datascience #programming #tutorial
By Mei Zhu | Jan 18, 2025


Exploring Python After Learning JavaScript

#javascript #python #programming #beginners
By Mei Zhu | Jan 18, 2025


Pad in PyTorch

#python #pytorch #pad #v2
By Super Kai (Kazuya Ito) | Jan 18, 2025


How to use Scrapy and proxy IP to crawl data efficiently

#python #scrapy #proxyip #data
By 98IP 代理 | Jan 18, 2025


Building an AI Sales Agent: From Voice to Pitch.

#python #machinelearning #hackathon #showdev
By Devesh Bhushan | Jan 18, 2025


IPNow: Instantly Fetch Your IP & Location 🌍 – Contribute to This Open-Source Project 🚀

#webdev #programming #opensource #python
By Raja Yadav | Jan 18, 2025


Python in DevOps: Automation, Efficiency, and Scalability

#python #devops #cloud #programming
By Sophia Iroegbu | Jan 18, 2025


PASSWORD GENERATOR SCRIPT WITH PYTHON

#python #coding #100daysofcode #webdev
By Seyi Lufadeju | Jan 18, 2025


Project – Supervised Learning with Python – Lets use Logistic Regression for Predicting the chances of having a Heart Attack

#python #machinelearning #datascience
By Vishnu Ajit | Jan 18, 2025


My Python Journey: From Zen to Lists

#python #100daysofcode #beginners #programming
By Moh | Jan 18, 2025


Unleashing Python Decorator Magic! 🐍🐍

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


Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

#aws #python #cloud #devops
By Joseph Ibeh | Jan 18, 2025


Breaking scary features down into tiny models and simple logic

#django #webdev #python #techtalks
By Michael Obasoro | Jan 18, 2025


Comparative Analysis of Classification Techniques: Naive Bayes, Decision Trees, and Random Forests

#python #machinelearning #algorithms
By Edwin Kinyao | Jan 18, 2025


Mastering Python Time Series Analysis: Tools and Techniques for Data Scientists

#programming #devto #python #softwareengineering
By Aarav Joshi | Jan 18, 2025


Why You Should Use a Single FastAPI App and TestClient Instance

#python #fastapi #starlette #appconfig
By Kfir | Jan 18, 2025


Mastering Django Templates: A Comprehensive Guide for Dynamic Web Development

#webdev #django #python #tutorial
By NJOKU SAMSON EBERE | Jan 18, 2025


The definitive guide to using Django with SQLite in production 💡

#django #python #sqlite #devops
By Adam Hill | Jan 19, 2025


Exploring the World of AI Tools: Revolutionizing Work and Learning

#ai #productivity #tecnology #python
By Dev_kraft | Jan 18, 2025


How to Deploy a Flask Portfolio Website on AWS Elastic Beanstalk

#aws #python #portfolio #elasticbeanstalk
By Pravesh Sudha | Jan 18, 2025


Power of Python Libraries in Data Science

#python #datascience #ai #programming
By LetsUpdateSkills | Jan 18, 2025


Data Structures in Python – Trees

#python #coding #programming
By LetsUpdateSkills | Jan 18, 2025


Data Structures in Python -Stack

#python #datastructures #career #coding
By LetsUpdateSkills | Jan 18, 2025


Unit Testing in Python

#python #programming #coding #softwaredevelopment
By LetsUpdateSkills | Jan 18, 2025


What is Python?

#python #programming #coding #webdev
By LetsUpdateSkills | Jan 18, 2025


Create an AI Agent with PydanticAI in Minutes

#pydanticai #python #openai #ai
By Kiu | Jan 19, 2025


Getting Started with Python for Machine Learning

#machinelearning #python #ai #devops
By Pejman Rezaei | Jan 19, 2025


Pad in PyTorch

#python #pytorch #pad #v2
By Super Kai (Kazuya Ito) | Jan 19, 2025


Boost your Django projects's security with proper `Cache-Control` on views

#django #cache #webdev #python
By Matteo Vitali | Jan 19, 2025


Resize in PyTorch

#python #pytorch #resize #v2
By Super Kai (Kazuya Ito) | Jan 19, 2025


𝐖𝐡𝐚𝐭 𝐤𝐢𝐧𝐝 𝐨𝐟 𝐢𝐬𝐬𝐮𝐞𝐬 𝐬𝐡𝐨𝐮𝐥𝐝 𝐲𝐨𝐮 𝐝𝐞𝐥𝐞𝐠𝐚𝐭𝐞 𝐭𝐨 𝐲𝐨𝐮𝐫 𝐀𝐈 𝐜𝐨𝐝𝐢𝐧𝐠 𝐚𝐠𝐞𝐧𝐭?

#programming #tutorial #ai #python
By Dror Wayne | Jan 19, 2025


"Key Syntax Differences in Object-Oriented Programming: Python vs. Java”

#java #python #oop #coding
By Mahia Momo | Jan 19, 2025


Bulletproof Django API for a TMS project

#django #python #tutorial #drf
By Rahim Baiteche | Jan 19, 2025


Interoperability On Python update async support

#compatibility #performance #python #programming
By InterSystems Developer | Jan 19, 2025



#Daniel Roy Greenfeld Blogs

TIL: Using inspect and timeit together

Two libraries in Python's standard library that are useful for keeping load testing code all in one module.
By Daniel Roy Greenfeld | Jan 14, 2025


Fastcore L

An exploration of Fastcore's enhanced list-like structure
By Daniel Roy Greenfeld | Jan 19, 2025