Table of Contents


#Real Python

Getters and Setters: Manage Attributes in Python

In this tutorial, you'll learn what getter and setter methods are, how Python properties are preferred over getters and setters when dealing with attribute access and mutation, and when to use getter and setter methods instead of properties in Python.
#intermediate #python
By | Jan 20, 2025


How to Deal With Missing Data in Polars

In this tutorial, you'll learn how to deal with missing data in Polars to ensure it doesn't interfere with your data analysis. You'll discover how to check for missing values, update them, and remove them.
#intermediate #data-science #python
By | Jan 22, 2025


Python and TOML: New Best Friends

TOML is a configuration file format that's becoming increasingly popular in the Python community. In this tutorial, you'll learn the syntax of TOML and explore how you can work with TOML files in your own projects.
#intermediate #data-structures
By | Jan 25, 2025


Executing Python Scripts With a Shebang

In this tutorial, you'll learn when and how to use the shebang line in your Python scripts to execute them from a Unix-like shell. Along the way, you'll run custom scripts written in your domain-specific language interpreted by Python.
#intermediate #best-practices
By | Jan 25, 2025


How to Flush the Output of the Python Print Function

In this tutorial, you'll learn how to flush the output of Python's print function. You'll explore output stream buffering in Python using code examples and learn that output streams are block-buffered by default, and that print() with its default arguments executes line-buffered when interactive.
#intermediate #python
By | Jan 25, 2025


Python's raise: Effectively Raising Exceptions in Your Code

In this tutorial, you'll learn how to raise exceptions in Python, which will improve your ability to efficiently handle errors and exceptional situations in your code. This way, you'll write more reliable, robust, and maintainable code.
#intermediate #python
By | Jan 25, 2025


How to Download Files From URLs With Python

In this tutorial, you'll find the right tools to help you download files from URLs with Python and manage the data retrieval process. You'll cover data streaming, thread pools, and asynchronous downloads.
#basics
By | Jan 25, 2025


Python's Mutable vs Immutable Types: What's the Difference?

In this tutorial, you'll learn how Python mutable and immutable data types work internally and how you can take advantage of mutability or immutability to power your code.
#intermediate #data-structures #python
By | Jan 26, 2025


Python's "in" and "not in" Operators: Check for Membership

In this tutorial, you'll learn how to check if a given value is present or absent in a collection of values using Python's in and not in operators, respectively. This type of check is known as membership test in Python.
#basics #best-practices #python
By | Jan 26, 2025


Python's zipfile: Manipulate Your ZIP Files Efficiently

In this guided tutorial, you'll learn how to manipulate ZIP files using Python's zipfile module from the standard library. Through hands-on examples, you'll learn how to read, write, compress, and extract files from your ZIP files quickly.
#intermediate #python
By | Jan 26, 2025


Python Folium: Create Web Maps From Your Data

You'll learn how to create web maps from data using Folium. The package combines Python's data-wrangling strengths with the data-visualization power of the JavaScript library Leaflet. In this tutorial, you'll create and style a choropleth world map that shows the ecological footprint per country.
#intermediate #data-science #data-viz
By | Jan 26, 2025



#Django Project – Weblog

Djangonaut Space – New session 2025

By Sarah Abderemane and Djangonaut Space Crew | Jan 23, 2025



#PyCoders

Issue #665: – Dict Comprehensions, Data Visualization, Memory Leaks, and More

By | Jan 21, 2025



#Medium

Just Stop Writing Python Functions Like This!!!

I just reviewed someone else’s code and I was just shocked.
By Kiran Maan | Jan 20, 2025


19 Insanely Useful Python Automation Scripts I Use Every Day

Supercharge your productivity with these Python scripts that tackle repetitive tasks effortlessly.
By PURRFECT SOFTWARE LIMITED | Jan 20, 2025


I’ve Read 45 Books on AI and Data Science — Here Are My Favorites for 2025

Discover the Books That Made AI and Data Science Make Sense
By Ritesh Gupta | Jan 20, 2025


10 Real-World Python Projects to Sharpen Your Skills

Python is one of the most popular and versatile programming languages today, used for everything from web development to data science…
By Coders Stop | Jan 20, 2025


Affinity Propagation with Python and Scikit-learn

By Francesco Franco | Jan 20, 2025


🚀 Django 5.2’s Upcoming Auto-Import Models in Shell: A Developer’s Delight! 🐍🎉

Discover Django 5.2’s new auto-import models feature in the shell, saving time and boosting developer productivity!
By Sanjay Prajapati | Jan 20, 2025


Query Optimization in Django

Creating high-performance web applications depends largely on the effectiveness of the database interactions. Django, the powerful Python…
By S M Shahinul Islam | Jan 21, 2025


Journey for making a inventory management software (part 2)

phu… its hard to keep concentrate on developing.
By Muhammed Muzammil | Jan 22, 2025


10 Python Libraries That Will Increase Your Development Speed

Code Smarter Not Harder — Python Libraries That Save Developers Hundreds of Hours
By PURRFECT SOFTWARE LIMITED | Jan 23, 2025


A Walk-Through of uv for Python

Lately, the internet (read: everyone in my bubble) has been going crazy about uv, a Python package manager that has been released in the…
By BastiaanRudolf | Jan 23, 2025


The Solar Cycle(s): history, data analysis and trend forecasting.

A brief article on the Solar Cycles: data analysis and time series forecasting for the incoming solar maximum in 2025 and the next decades.
By Pau Blasco i Roca | Jan 23, 2025


DRF Part 2: Mastering Django Rest Framework: How to applied Concurrency and Safedelete to Products…

In the previous lesson, we created a project with Django and added a new application. Then, we integrated it with Django Rest Framework. In…
By Mehmet YALÇIN | Jan 23, 2025


Django Backend Setup : A Quick Tutorial

Django is a high-level Python web framework that promotes rapid development and clean, pragmatic design. It follows the…
By Pat Saunders | Jan 24, 2025


How to Build a Simple Python Script with a Web Interface for Data Transformation

Not a premium member? READ HERE
By Sagar Sangwan | Jan 24, 2025


DRF Part 3: Mastering Django Rest Framework: Unit tests and Using Endpoints

In the previous lesson, we discussed concurrency and safedelete. In this lesson, we’ll test the Product application. After that, we’ll…
By Mehmet YALÇIN | Jan 24, 2025


🚀Aggregation Magic in Django: ArrayAgg, JSONBAgg & StringAgg

As a seasoned Django developer (or aspiring one), you’ve probably found yourself diving into the depths of Django ORM’s aggregation…
By Sanjay Prajapati | Jan 24, 2025


Optimizing API in Django with Postgres on AWS RDS

Challenge
By Satish Rajak | Jan 25, 2025


Later, Bitches

Ur ego will be dead at the end of this article
By Rahi Vibe | Jan 25, 2025


Modeling Random Walks in Python for Fun (and no profit)

I have this fun little office toy. It’s got a bunch of tiny balls that fall through some pegs. After bouncing around, the balls end up in…
By Rhett Allain | Jan 26, 2025


Python Radio 33: FM — No Static At All

Building a wide-band radio transmitter
By Simon Quellen Field | Jan 26, 2025


Python Logging: loguru vs logging

Python Logging Libraries Comparison: logging vs loguru
By Leapcell | Jan 26, 2025


Practical Guide to Security Middleware in Django

In Django Middleware is a powerful tool that sits between the request and response processing of your application. It enables developers to…
By Mehedi Khan | Jan 26, 2025


Day 24 of 100 Days Agentic Engineer Challenge: PydanticAI

During my recent journey, I realized that to effectively build AI agents, I needed a solid understanding of Python programming. I also…
By Damian Dąbrowski | Jan 26, 2025


Why FastAPI Full-Stack Template Is My Go-To for Modern Web Development

Python might not be the most modern programming language, but it’s undoubtedly one of the most widely used today. There’s an old Persian…
By Javad Zarezadeh | Jan 26, 2025



#Hashnode

Using OpenTelemetry to Instrument Flask API and Expose HTTP Metrics

Instrumenting a Flask API with OpenTelemetry to expose HTTP metrics involves setting up the Open Telemetry SDK and configuring exporters and instrumentations.
Prerequisites

AWS Account with EC2 Instance.

Python 3, pip, and a Python virtual environ…
By Ankita Lunawat | Jan 20, 2025


Create Stunning QR Codes in Minutes with Python on Google Colab!

QR codes are everywhere—on product packaging, business cards, websites, and even restaurant menus. They’re a quick and efficient way to share information. But did you know you can create your own custom QR codes using Python, and it’s super easy to d…
By Chemical Engineer | Jan 20, 2025


Python Inner Working

How does Python works behind the scene?
Python is one of the most popular and versatile languages today, so it makes sense to understand how it works.
First, Python compiles the source code into bytecode. Then, the bytecode is interpreted and execute…
By Sonu | Jan 20, 2025


Building a Data Lake with AWS

Building a Data Lake with AWS
Hi Peepz,
It officially the Day 3 of the #DevOpsAllStarsChallenge .
#DevOpsAllStarsChallenge is a challenge that aims to equip devops engineers with on demand skills required of them.

Project Architecture Diagram
Projec…
By Mmesoma Okaro | Jan 20, 2025


Python: Updated Object Oriented Programming and Classes Tutorial

Overview
This article will explain the basics and how to use Object Oriented Programming when using classes in the Python programming language.
Materials

Python

IDE

What is Object Oriented Programming?
Object oriented programming fully utilizes t…
By Andrew Dass | Jan 20, 2025


Understanding Data Categories: From Formation to Application

The concepts of data and information are fundamental across various fields, including computing, data analytics, data science, and knowledge management. While these terms are often used interchangeably, they serve distinct purposes and play unique ro…
By Soyoola Sodunke | Jan 20, 2025


Automate Your Job Search: Scraping 400+ LinkedIn Jobs with Python

The average job seeker spends 11 hours per week searching for jobs, according to LinkedIn. For tech roles, it's even worse, you're dealing with hundreds of postings across multiple platforms. When my partner started her job search, she was spending h…
By Francisco Moretti | Jan 20, 2025


Learning Django (1 of many, I hope)

Learning Django: A Journey from Intimidation to Understanding

Here is the link to: Writing your first Django app.

To my surprise, the tutorial didn’t begin with creating a model (which I expected), but instead started with creating a view. This wa…
By Victor | Jan 20, 2025


Dependent breaking pytest's

New unit-tests were added that were passing when run in isolation. They were breaking when run all together by the CI/CD pipeline. Previous tests were affecting ours. The question was which ones? We thought it could be a data issue with persistent da…
By Danny Crasto | Jan 21, 2025


The true meaning of mutable & Immutable in Python

mutable → Changeable / modifiable

immutable → Unchangeable / unmodifiable

Python works in a way that only a few programming languages do.
X = 10
Y = X
X = 20
print(X) # 20
print(Y) # 10

What happened here, right?

Let’s go, step by …
By Sonu | Jan 21, 2025


A Step-by-Step Guide to Log Analysis Using Python

System Logs act as a window into a system’s operational state, making them essential for diagnosing problems, monitoring performance, and maintaining security. These logs typically include information such as timestamps, process identifiers, error me…
By Obinna Iheanacho | Jan 21, 2025


Day 3 of My Python Journey: Exploring Dictionaries and Sets

Hello, fellow Python learners! 🚀
Today, I dove into two fundamental data structures in Python: Dictionaries and Sets. Both are powerful and versatile, with unique features that make them essential tools for solving a variety of problems. Here’s a su…
By Rishitha | Jan 21, 2025


Learning Django (2 of more)

I’ve decided to try something new for this post: separating the text from the ASCII art so I can format the fonts better. Let’s see how it goes!

Today, I started part two of the Django tutorial (link here). Finally, we’re diving into models, which I…
By Victor | Jan 21, 2025


AI-Powered Translation for Univer Sheets: Automating Cell Content Translation

Background
With the globalization of work and study, communication across languages has become increasingly important. For users who work with spreadsheets containing multilingual data, the need to translate content in cells becomes a common requirem…
By Spreadsheet_uni | Jan 21, 2025


XLS vs XLSX: Key Differences and How to Convert Them in Python

When working with Excel files, you may come across two formats: XLS and XLSX. While both formats seem similar and can be opened and used in MS Office, what exactly sets them apart? Why are there two formats in the first place? And most importantly, h…
By Casie Liu | Jan 21, 2025


Speeding Up Spark: The Simple Trick That Saved Me 2 Hours

Hello there, fellow coders and web enthusiasts!Today, I want to share a challenge I was recently assigned, one that had me scratching my head for a bit. Finding a solution was not as straightforward as I’d hoped, but I’m excited to walk you through t…
By Aaron Jevil Nazareth | Jan 21, 2025


What is a Cross Site Request Forgery
(CSRF) attack?

Cross site request forgery is a cyber attack where an attacker takes advantage of a logged in user’s session cookie and makes inappropriate request to the website that the user is authenticated to.
Consider an example, where a user logs in to his/her…
By Soujanya T | Jan 21, 2025


When Should You Use FastAPI Instead of Django or Flask? An In-Depth Guide

Python is home to several powerful web frameworks designed to cater to different needs. Django and Flask have long been dominant players, offering solutions for web development for over a decade. However, FastAPI has emerged as a modern framework pur…
By Esubalew Chekol | Jan 21, 2025


When Should You Use FastAPI Instead of Django or Flask? An In-Depth Guide

Python is home to several powerful web frameworks designed to cater to different needs. Django and Flask have long been dominant players, offering solutions for web development for over a decade. However, FastAPI has emerged as a modern framework pur…
By Esubalew Chekol | Jan 21, 2025


When Should You Use FastAPI Instead of Django or Flask? An In-Depth Guide

Python is home to several powerful web frameworks designed to cater to different needs. Django and Flask have long been dominant players, offering solutions for web development for over a decade. However, FastAPI has emerged as a modern framework pur…
By Esubalew Chekol | Jan 21, 2025


How to Build a Real-Time Intrusion Detection System with Python and Open-Source Libraries

An Intrusion Detection System (IDS) is like a security camera for your network. Just as security cameras help identify suspicious activities in the physical world, an IDS will monitor your network to help detect any potential cyber attacks and securi…
By Chaitanya Rahalkar | Jan 21, 2025


How the python works in hindi (Behind the scenes)

1. Source Code (Python Code):

Aap jo code likhte ho (.py file) usse source code kehte hain.

Example:
pythonCopyEditprint("Hello, World!")

2. Conversion to Bytecode:

Jab aap Python code run karte ho, Python ka interpreter us code ko bytecode …
By Omkar Mahadik | Jan 21, 2025


Python Basics-Syntax And Semantics

Syntax and Semantics in Python
Python is a versatile and beginner-friendly programming language that relies significantly on syntax and semantics. These two fundamental aspects ensure the code is structured properly and meaningfully. Let's explore th…
By Muhaiminul Islam Sazid | Jan 21, 2025


DB Race Condition Errors, Silent Killer of DB Consistency

If you are a web-developer that works on simple and soft web projects, then probably you have never noticed about Database race conditions.
First of all, let me talk a little about race conditions. What are they, how they happens and what should we t…
By Mostafa Motahari | Jan 21, 2025


Building an NBA Data Lake project

Introduction
This is the Day 3 of DevopsAllStarsChallenge
This project automates the creation of a data lake for NBA analytics using AWS services. A Python script integrates Amazon S3, AWS Glue, and AWS Athena, and sets up the infrastructure needed t…
By Olugbenga Ajayi | Jan 22, 2025


A Complete Python Tutorial to Learn Data Science from Scratch

Data Science has become one of the most sought-after fields within the contemporary tech world. Since Python becoming the world's most sought-after programming language used for data analysis Learning Python from scratch to master data science is a g…
By Kelly Gloria | Jan 22, 2025


Python: How to use the Lambda Function

Overview
This article will explain what a Lambda function is in Python, the syntax for it and how to use it.
What is the Lambda Function
The Lambda function is an expression that can be customized to take the keyword “lambda”, variables and a stateme…
By Andrew Dass | Jan 22, 2025


Python: How to Make and Use Single Line For-Loops

Overview
This article will explain how to create a for loop in one line of code and why and when using this is preferred than the standard for loop syntax.
Standard For Loop Syntax
A for loop is written with at least two lines:
for i in range(0, 3):

By Andrew Dass | Jan 22, 2025


From VB6.0 to Today: A Journey Through the Evolution of Software Development

If you started your programming career with Microsoft Visual Basic 6.0 (VB6.0), you're part of an era that revolutionized desktop application development. VB6.0 was a gateway for many to enter the world of programming. It was simple, visual, and powe…
By Code Sky | Jan 22, 2025


Learn Python One-Liners: Tips, Tricks, and Examples

Python is renowned for its readability and versatility, but did you know it’s also a great language for writing concise, powerful one-liners? Whether you’re trying to solve a problem quickly, write a script, or just impress your peers, Python one-lin…
By Abhishek Prakash | Jan 22, 2025


Protecting Your FastAPI Routes Using Auth0

Hello everyone! In this blog, I will guide you through protecting your FastAPI routes using Auth0. This guide is structured so you can follow it step by step from scratch and get authentication up and running. Let’s dive in!
Step 1: Setting Up Your F…
By Aryan Khurana | Jan 22, 2025


Internal Python Structure

1. From Source Code to Bytecode: The Journey Begins
When you write Python code, it first gets converted into bytecode, a low-level, platform-independent representation of your code. This bytecode isn’t directly executed by your hardware. Instead, it’…
By sarim nadeem | Jan 22, 2025


🔥 Apache Kafka with Zookeeper in Django – A Complete Guide

Kafka is a distributed event streaming platform used for real-time data processing. It’s similar to Celery + RabbitMQ but is more scalable and fault-tolerant.
🚀 Why Use Kafka in Django?

Handles large-scale real-time data (e.g., stock market prices,…
By Keshav Agarwal | Jan 22, 2025


Building a REST API with FastAPI, PostgreSQL, and Swagger Documentation

Using FastAPI, we’ll create a basic API for employee performance review. This API will be tied to a PostgreSQL database, ensuring the data storage and retrieval. Later on, we’ll use Swagger documentation for interacting with the API. FastAPI automati…
By Dinesh Nair | Jan 23, 2025


🌟 Build a Lightning-Fast API with Bun in Minutes!

Looking to build a super fast API? Meet Bun—a sleek, high-performance JavaScript runtime that’s making waves in the dev community. In this blog post, I’m going to show you how to create a simple API using Bun that’s fast and easy to set up.🎉

What’s…
By Vinit Patel | Jan 23, 2025


How to Handle High Demand with Rate Limiting

High demand events, like exam result releases, concert ticket sales, or airdrop token claims, can cause websites to crash due to server overload. When millions of people try to access the same site at once, without proper controls in place, this can …
By Ayomikun Osota | Jan 23, 2025


How We Built a Scalable FastAPI Backend for Our AI Product: Zero to Production

🖖 Prateek Joshi and Akhil Kalwakurthy
As AI engineers building complex machine learning systems, we often face a critical challenge: creating backend infrastructure that's both performant enough for real-time AI processing and maintainable enough fo…
By Prateek Joshi | Jan 24, 2025


How to Build an End-to-End NLP Food Chatbot in Dialogflow with MySQL and FastAPI

There are countless online tutorials on AI concepts like Machine Learning, Natural Language Processing (NLP), and Large Language Models (LLMs). Many of them are project-based learning. However, most tutorials only cover fragments of a project pipelin…
By Egop Gogo-Job | Jan 24, 2025


Deploying Complete Serverless API with any containerised Python ASGI Framework on AWS Lambda, API Gateway

Introduction
So we’ve been playing with local builds of some interesting python frameworks.
About now lets put our application out there, in world wide web, where wild things pop.It’s always interesting to deploy what you’ve built so other people can…
By Muizz Animashaun | Jan 26, 2025



#Honey Badger

The ultimate guide to Python logging

Logging is a valuable tool for performance, monitoring, and debugging. Jump into this article to learn best practices for practical Python logging.
By Ravgeet Dhillon | Jan 24, 2025



#Dev.to

How to Become an AI Developer in 2025 (Full Guide + Resources)

#ai #python #programming #career
By Oleg Dubovoi | Jan 20, 2025


Mastering Python Memory Optimization: Techniques for Data Science and Machine Learning

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


7 Powerful Techniques to Boost Database Performance in Python Applications

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


[HANDS ON] Instrument Python FastAPI with Prometheus Metrics

#prometheus #monitoring #fastapi #python
By Adam Gardner | Jan 20, 2025


Distributed Validation: The Emergence of Truth in Network Consensus

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


Use Selenium and proxy IP to easily crawl dynamic page information

#selenium #python #proxyip #crawl
By 98IP 代理 | Jan 20, 2025


CenterCrop in PyTorch

#python #pytorch #centercrop #v2
By Super Kai (Kazuya Ito) | Jan 20, 2025


RAG vs GraphRAG

#ai #graphrag #python #rag
By angu10 | Jan 20, 2025


15 Prompting Techniques Every Developer Should Know for Code Generation

#python #promptengineering #flask #llm
By nagasuresh dondapati | Jan 20, 2025


Python for Javascript Newbies

#javascript #python #beginners
By Mary Alice | Jan 20, 2025


Building Intelligent Agents with LangChain and OpenAI: A Developer's Guide

#webdev #python #langchain #openai
By es404020 | Jan 20, 2025


𝐅𝐢𝐧𝐞 𝐯𝐬 𝐂𝐥𝐚𝐮𝐝𝐞 & 𝐂𝐡𝐚𝐭𝐆𝐏𝐓 – 𝐖𝐡𝐚𝐭'𝐬 𝐭𝐡𝐞 𝐝𝐢𝐟𝐟𝐞𝐫𝐞𝐧𝐜𝐞 ❔

#ai #tooling #python #react
By Dror Wayne | Jan 20, 2025


0dev, agents that generate code

#ai #opensource #node #python
By Sam | Jan 20, 2025


Advanced Database Query Optimization Techniques: A Practical Approach with Django

#python #database #django #sql
By EzeanaMichael | Jan 20, 2025


Automate Google Search with Python Selenium

#selenium #python #webautomation #webdev
By Basil Ahamed | Jan 20, 2025


AWS CDK Validation in Python

#aws #awscdk #cdk #python
By Krzysztof Slowinski | Jan 20, 2025


7 Practical Hacks for Avoiding “Mocking Hell” in Python Testing

#python #mocking #unittest
By nagasuresh dondapati | Jan 20, 2025


Create Stunning QR Codes in Seconds with Python – Here’s How!

#webdev #qrcode #python #programming
By Chemical Engineer | Jan 20, 2025


Things to Know about Python in 2025

#software #python
By Lekshmi | Jan 20, 2025


SQL Transactions – COMMIT, ROLLBACK, and Savepoints with Python

#python #database #sql #tutorial
By Luca Liu | Jan 20, 2025


Python for Fintech

#python #fintech
By Bhagvan Kommadi | Jan 20, 2025


Random Password Toolkit: The Ultimate Password Generator – Secure, Fast & Customizable

#npm #python #module #news
By Krishna Tadi | Jan 20, 2025


Golang Vs. Python Performance: Which Programming Language Is Better?

#go #python #course #technology
By Ellis Velly | Jan 20, 2025


Copier vs Cookiecutter

#beginners #programming #python #productivity
By Cloud Native Engineer | Jan 20, 2025


From Docker to Lambda: An AWS Admin's Journey into Python Applications

#aws #python
By ndewijer | Jan 20, 2025


10-Minute Grocery Delivery App: Challenges, Tech Stack, and Key Decisions

#python #redis #reactnative #django
By DivyanshuLohani | Jan 20, 2025


6 Powerful Python Libraries for High-Performance Async Web Development

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


Experiment with Chainlit AI interface with RAG on Upsun

#chainlit #ai #python #upsun
By Guillaume Moigneu | Jan 20, 2025


Scale a Stateful Streamlit Chatbot with AWS ECS and EFS

#ai #python #aws #streamlit
By Gabriel Koo | Jan 20, 2025


Finally, an application for my FSM library! Advent of Code 2024 day 11

#finitestatemachine #python #adventofcode
By Choon-Siang Lai | Jan 20, 2025


Why Coding Bootcamps Are Failing Developers

#javascript #programming #python #career
By Leon Martin | Jan 21, 2025


Automate Your Job Search: Scraping 400+ LinkedIn Jobs with Python

#automation #python #tools
By Francisco Moretti | Jan 21, 2025


Декоратори

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


Building a Web Crawler with Python: Extracting Data from Web Pages

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


FiveCrop in PyTorch

#python #pytorch #fivecrop #v2
By Super Kai (Kazuya Ito) | Jan 21, 2025


PWA and Django #4: Installing a PWA as a native application

#python #django #pwa
By Andrés Álvarez Iglesias | Jan 21, 2025


Day 5: Python Lists Demystified: Tips, Tricks, and Best Practices

#python #ai #machinelearning #computerscience
By Praneeth | Jan 21, 2025


Hellow World : Coder , freelancer

#webdev #javascript #productivity #python
By Saurabh Saha | Jan 21, 2025


Created Text Behind Video

#python #machinelearning #github
By tansihmittal | Jan 21, 2025


Run PySpark Local Python Windows Notebook

#bigdata #python #spark #dataengineering
By chuongmep | Jan 21, 2025


Capture and stream video on browser with Python-FLASK

#python #flask #opencv
By Shelwyn Corte | Jan 21, 2025


Portfolio Project – Python Terminal Game

#python #beginners #coding #portfolio
By Roy Saunderson | Jan 21, 2025


Top 5 Must-Have Features for Building a Successful WhatsApp Clone App

#webdev #programming #python
By Primocys – IT Company | Jan 21, 2025


5 Most Used Programming Languages in 2024

#javascript #python #java #csharp
By Emma Richardson | Jan 21, 2025


HybridSimilarity Algorithm

#python #machinelearning
By Davide Santangelo | Jan 21, 2025


How to build and deploy a Python library

#python #softwaredevelopment #programming #testing
By Edun Rilwan | Jan 21, 2025


Mastering JWT (JSON Web Tokens): A Deep Dive

#webdev #javascript #go #python
By Leapcell | Jan 21, 2025


Unleashing Federated Learning on AWS: Empowering Secure, Scalable, and Private AI at the Edge

#aws #machinelearning #devops #python
By Mursal Furqan Kumbhar | Jan 21, 2025


Building an NBA Stats Pipeline with AWS, Python, and DynamoDB

#dynamodb #aws #python #devops
By Osagie Anolu | Jan 21, 2025


How To Structure a Large Flask Application-Best Practices for 2025

#flask #python #coding #programming
By Gajanan Rajput | Jan 21, 2025


Comprehensive LuxDevHQ Data Engineering Course Guide

#dataengineering #python #sql #airflow
By Mwenda Harun Mbaabu | Jan 21, 2025


10 Python Techniques for Efficient Log Analysis and Processing

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


Windows Tools

#tooling #programming #python
By SilverRabbit90 | Jan 21, 2025


Resize in PyTorch

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


Is it necessary to delve deeper into OOP in Python?

#python #oop #django #career
By allaks | Jan 22, 2025


Top Programming Languages to Become Ultimate Developer in 2025

#programming #javascript #python #coding
By Leon Martin | Jan 22, 2025


How to maximize crawler efficiency?

#python #crawler #data #mongodb
By 98IP 代理 | Jan 22, 2025


adaptive-classifier: Cut your LLM costs with smart query routing (32.4% cost savings demonstrated)

#ai #opensource #machinelearning #python
By Asankhaya Sharma | Jan 22, 2025


(Odoo Series) – #1. Simple Odoo Development on Ubuntu Desktop

#webdev #erp #python #postgres
By Galuh Ibrahim | Jan 22, 2025


371 SUM OF TWO INTEGERS – leetcode – Python

#learning #python #programming #datastructures
By Jaimin Bariya | Jan 22, 2025


How to Build a Chatbot using Python? A Complete Guide

#python #programming #webdev #ai
By Eric Walter | Jan 22, 2025


Best Desktop Customization App

#webdev #programming #python #ionic
By Deskime | Jan 22, 2025


2025 Startup Tech Stack Blueprint

#javascript #python #typescript #webdev
By Abubaker Siddique | Jan 22, 2025


Step-by-Step Guide to Building Domain-Specific AI Agents with Phidata SDK

#ai #beginners #python #openai
By Farhan Ahmad | Jan 22, 2025


6 Essential Python Libraries for Blockchain Development: Boost Your Smart Contract Skills

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


6 Powerful Python Techniques for Efficient Graph Processing and Analysis

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


Docs-as-code in action: Documenting a Python library.

#documentation #python #programming
By Edun Rilwan | Jan 22, 2025


Python Expertise: Senior Developer Questions and Answers

#pythoninterview #python #seniordeveloper #pythonadvanced
By Abhay Singh Kathayat | Jan 22, 2025


Python Typed Parameterized Decorators in Test Automation

#python #testing #qa #development
By Nikolai Filatov | Jan 22, 2025


ColorJitter in PyTorch

#python #pytorch #colorjitter #v2
By Super Kai (Kazuya Ito) | Jan 22, 2025


Unlocking Business Success with Microsoft Dynamics: A Comprehensive Guide

#javascript #programming #python #career
By Teja sri | Jan 22, 2025


Functions in Python: Exploring Tuple Unpacking

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


Automated Job Search: LinkedIn Jobs to Notion Board

#career #notion #linked #python
By Naman Vashistha | Jan 22, 2025


AIOMQL

#python #algotrading #trading #metatrader5
By Ichinga Samuel | Jan 22, 2025


Create Stunning Images from Text with a Telegram Bot 🚀

#python #telegram #pillow #opensource
By Naman Vashistha | Jan 22, 2025


Learn Python by Building a Lisp Interpreter

#beginners #python #codenewbie #programming
By Vishal Shukla | Jan 22, 2025


Meet LoRA: The AI Hack That’s Smarter, Faster, and Way Cheaper Than Your LLM’s Full Training Routine!

#llm #ai #coding #python
By Alexander Uspenskiy | Jan 22, 2025


Who is interest in ai make join in make AI

#ai #learning #python #git
By manoj dahal | Jan 22, 2025


Introducing Fincept Terminal 1.0: A New Era of Financial Analysis 🚀

#python #ai #opensource #github
By jaimin patel | Jan 22, 2025


Exploring emoji encodings

#encodig #emoji #python #strings
By Sharfin Jahan Sakib | Jan 23, 2025


How to Create and Publish a Python Package on PyPI 🐍

#webdev #programming #beginners #python
By Athreya aka Maneshwar | Jan 23, 2025


How to Start in Python (2025): A New Coder’s Guide

#python #flask #django #javascript
By Jay Ramoliya | Jan 23, 2025


How to Start in Python (2025): A New Coder’s Guide

#python #flask #django #javascript
By Jay Ramoliya | Jan 23, 2025


FastAPI vs Django/Flask

#python #django #fastapi #flask
By Hitesh | Jan 24, 2025


Mastering Flask: A Deep Dive

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


2025's Top 10 Python Web Frameworks Compared

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


Implementing user authentication in Django

#django #authentication #python #tutorial
By Shakhzhakhan Maxudbek | Jan 25, 2025


Django Models Simplified: A Quick 4-Minute Guide for Beginners

#webdev #django #python #database
By NJOKU SAMSON EBERE | Jan 26, 2025


Python Logging: loguru vs logging

#python #flask #django #logging
By Leapcell | Jan 26, 2025


Deploying Django and Wagtail on Cloud Servers: A Step-by-Step Guide

#webdev #django #wagta #cloud
By MatyaSina | Jan 26, 2025


Techniques for Field Validation in Django

#django #python
By guzmanojero | Jan 26, 2025



#Data School

Stop overthinking your AI prompts 🧠

Writing effective prompts for ChatGPT doesn't have to be complicated! Learn six simple tips for getting better results from any AI model.
#AI
By Kevin Markham | Jan 26, 2025



#Daniel Roy Greenfeld Blogs

Installing LÖVE on Mac

How I install LÖVE, a 2d gamework written in C++ that uses Lua as its scripting language. Nothing against GODOT or Unity, but I want a tool where I don't need a specialized IDE to build games for my little girl.
By Daniel Roy Greenfeld | Jan 22, 2025