#Real Python
Basic Input and Output in Python
In this tutorial, you'll learn how to take user input from the keyboard with the input() function built into Python and display output to the console with the built-in function print(). You'll also use readline to improve the user experience when collecting input and effectively format output.
#basics #python
By – | Dec 02, 2024
Python News Roundup: December 2024
This month brings exciting updates, including improvements to template strings in PEP 750 and the release of Python 3.14.0a2. There are new features to explore in many third-party libraries, such as Pydantic. Also, PyCon's call for proposals deadline is near and the popular Advent of Code is back.
#community
By – | Dec 04, 2024
Socket Programming in Python (Guide)
In this in-depth tutorial, you'll learn how to build a socket server and client with Python. By the end of this tutorial, you'll understand how to use the main functions and methods in Python's socket module to write your own networked client-server applications.
#advanced #python #web-dev
By – | Dec 07, 2024
Python GUI Programming With Tkinter
In this tutorial, you'll learn the basics of GUI programming with Tkinter, the de facto Python GUI framework. Master GUI programming concepts such as widgets, geometry managers, and event handlers. Then, put it all together by building two applications: a temperature converter and a text editor.
#basics #gui
By – | Dec 07, 2024
Linear Regression in Python
In this step-by-step tutorial, you'll get started with linear regression in Python. Linear regression is one of the fundamental statistical and machine learning techniques, and Python is a popular choice for machine learning.
#intermediate #data-science #machine-learning
By – | Dec 07, 2024
How to Round Numbers in Python
In this tutorial, you'll learn what kinds of mistakes you might make when rounding numbers and how you can best manage or avoid them. It's a great place to start for the early-intermediate Python developer interested in using Python for finance, data science, or scientific computing.
#intermediate #best-practices #python
By – | Dec 07, 2024
Using and Creating Global Variables in Your Python Functions
In this tutorial, you'll learn how to use global variables in Python functions using the global keyword or the built-in globals() function. You'll also learn a few strategies to avoid relying on global variables because they can lead to code that's difficult to understand, debug, and maintain.
#intermediate #best-practices #python
By – | Dec 08, 2024
Python Timer Functions: Three Ways to Monitor Your Code
In this step-by-step tutorial, you'll learn how to use Python timer functions to monitor how quickly your programs are running. You'll use classes, context managers, and decorators to measure your program's running time. You'll also learn the benefits of each method and which to use given the situation.
#intermediate #python
By – | Dec 08, 2024
Effective Python Testing With pytest
In this tutorial, you'll learn how to take your testing to the next level with pytest. You'll cover intermediate and advanced pytest features such as fixtures, marks, parameters, and plugins. With pytest, you can make your test suites fast, effective, and less painful to maintain.
#intermediate #testing
By – | Dec 08, 2024
Asynchronous Tasks With Django and Celery
In this tutorial, you'll learn how to integrate Celery and Django using Redis as a message broker. You'll refactor the synchronous email sending functionality of an existing Django app into an asynchronous task that you'll run with Celery instead.
#advanced #databases #django #web-dev
By – | Dec 08, 2024
#Python Insider
Python 3.13.1, 3.12.8, 3.11.11, 3.10.16 and 3.9.21 are now available
By Thomas Wouters | Dec 04, 2024
#PyCoders
Issue #658 – Django Performance, pathlib, Poetry, and More
By – | Dec 03, 2024
#Photon Designer
Making our startup's homepage search statically fast – A simple way using static speed and Next.js ⚡
Using Next.js's boringly named but easy mechanism to make our homepage search as fast as possible.
By Photon Designer | Dec 08, 2024
#Adam Johnson – Blogs
Django: launch pdb when a given SQL query runs
Here’s another technique for using pdb within Django. I will add this to the new debugging chapter of Boost Your Django DX in a future update.
By Adam Johnson | Dec 05, 2024
#Hashnode
How to build your own Machine Learning Model with TensorFlow
Hello beautiful people!
Now that everyone is excited about AI and uses AI in their daily life, it would be awesome for us to dig deep into the basics of AI— in Machine Learning. And the best way to do that is to get hands-on experience by building an…
By Buzzpy | Dec 02, 2024
Dockerize Django Web Application with Multi-Stage Builds
As a computer science student and a full-stack developer intern at The Hotspring, I've had the chance to work on a wide range of applications, including Django-based ones. Throughout my journey, I’ve also developed a strong interest in DevOps, partic…
By Yash Kharche | Dec 02, 2024
Day-01 Learning python from scratch
Hi everyone! I'm Vikas Shinde, a passionate IT professional from Navi Mumbai, Maharashtra. With over 3 years of experience in the tech industry, I'm excited to level up my skills by diving into Python. My goal? To master automation, data analysis, an…
By Vikas Shinde | Dec 02, 2024
Step-by-Step Guide to Creating a VPN Tunnel Using Python
Introduction
Virtual Private Networks (VPNs) are super important for keeping your communication safe over public networks. In this guide, we'll explore the details of VPN tunneling using Python and Linux's TUN/TAP interfaces. This hands-on lab activi…
By Divya Sharma | Dec 02, 2024
Python internals
We use python software/ interpreter:
>python chai.py
The Byte code of python is fetched by python vm and then run by it.
Must watch below video (Hindi) by our teacher Hitesh sir.
Compile to Byte Co…
By Patel Nayan | Dec 02, 2024
Discussion on Strategy Testing Method Based on Random Ticker Generator
Preface
The backtesting system of the FMZ Quant Trading Platform is a backtesting system that is constantly iterating, updating and upgrading. It adds functions and optimizes performance gradually from the initial basic backtesting function. With the…
By FMZ Quant | Dec 02, 2024
How to Convert CSV to Excel and Excel to CSV in Python [Safe Guide]
For people who deal with data, the conversion between CSV and Excel is essential, whether you're organizing datasets, sharing information, or integrating with different systems. CSV files are lightweight and ideal for raw data storage, while Excel fi…
By Casie Liu | Dec 02, 2024
What is a Programming Language and How Does It Work?
The term programming language often surfaces in the digital age, where technology is intertwined with our daily lives. Whether it's building websites, mobile apps, or controlling robots, programming languages are the tools that make it all happen. Bu…
By SuperHuman | Dec 02, 2024
Supercharging Asynchronous Performance: A Deep Dive into Python FastAPI and OpenAI API Optimization
Introduction
In the world of modern web applications, performance is king. Recently, while working on an AI-powered story generation project, I uncovered some critical insights into improving asynchronous programming techniques that dramatically redu…
By Ritesh Benjwal | Dec 02, 2024
Python Tutorial: How to Build Your First ATM Terminal
Python is quite a resourceful language for anyone hoping to build incredible solutions in AI, FinTech, automation and so on.
You’ll find this tutorial impactful if you are a beginner or intermediate Pythonista. Basically, you will learn how to build …
By John Fáwọlé | Dec 02, 2024
Python Tutorial: How to Build Your First ATM Terminal
Python is quite a resourceful language for anyone hoping to build incredible solutions in AI, FinTech, automation and so on.
You’ll find this tutorial impactful if you are a beginner or intermediate Pythonista. Basically, you will learn how to build …
By John Fáwọlé | Dec 02, 2024
Building a Course Subscription Platform Backend with Frappe Framework
In one of my recent projects, I had the opportunity to develop the backend for an app-based platform designed for course discovery, purchase, and subscription. This platform aimed to connect users with diverse course providers, offering an intuitive …
By Ritesh Benjwal | Dec 02, 2024
Understanding VGG Models: A Breakthrough in Deep Learning
The Visual Geometry Group (VGG), led by Karen Simoyan & Andrew Zisserman, introduced the groundbreaking concept of very deep convolutional network for large scale image recognition in 2014. This work invetigated how increasing the depth of convolutio…
By Fadhil Elrizanda | Dec 02, 2024
Ultimate Guide: How to Create a CI/CD Pipeline for Code Build, Test, and Deployment
In this tutorial, we’ll walk through creating a Jenkins pipeline job to automate the process of cloning code, building a Docker container, running tests, and deploying an application. By the end, you’ll have a fully functional CI/CD pipeline!
Prereq…
By Harendra Barot | Dec 02, 2024
Python Web Development: Building Scalable Apps with Django and Flask
Discover how Python empowers web development! Get expert tips to build scalable applications with Django and Flask, two powerful frameworks for web apps.
When it comes to web development, Python is a name that consistently stands out. Its simplicity,…
By SynergyTop | Dec 02, 2024
Why Python is a Popular Choice for Web Development: 10 Real-World Examples
Python has become a popular name among developers since the language is extremely versatile and works well for both small companies trying to launch rapidly and tech behemoths managing large platforms.
Why is Python receiving so much attention?
Fir…
By Dipen Patel | Dec 02, 2024
Meet the Rag Agent: Innovative Steps in Conversational AI
In the realm of artificial intelligence, conversational agents are becoming increasingly sophisticated, capable of engaging in complex conversations with humans. One innovative approach to creating these agents is by utilizing natural language proces…
By Data & Dev | Dec 02, 2024
An Introduction to beginner friendly Flask for beginner developers
Flask is a very lightweight and flexible python web framework, designed to help developers to build web applications quickly and efficiently.
Framework?A Framework is a software structure designed to simplify the process of developing web application…
By NIRAJ | Dec 02, 2024
What is Python?
Python is a popular programming language. It was created by Guido van Rossum, and released in 1991.
It is used for:
web development (server-side),
software development,
mathematics,
system scripting.
What can Python do?
Python can be used on a…
By Bittu Sharma | Dec 02, 2024
Mastering Python Functions: Simplified Guide to Logical Flow and Execution🚀
Introduction:
Functions in Python are essential for making your code efficient and reusable. From built-in tools like print() to the creation of custom functions, they enable you to solve problems more easily. This blog explores different types of fu…
By Subbu Tech Tutorials | Dec 02, 2024
Sophisticated SSH server with AI and camera capabilities
This project is a combination of multiple camera and machine-vision technologies to form a cohesive demonstration. Here it is possible to connect via either a CLI shell or Web-based GUI to command an SSH server. This allows for the ability to interac…
By Evan O'Brien | Dec 03, 2024
Python for DevOps: Understanding Data Types and String Handling
Introduction
In this article, we'll explore key Python concepts for DevOps engineers, focusing on data types, string handling, and practical examples that demonstrate Python's utility in real-world scenarios.
Key Takeaways
What are Data Types?
Data …
By Amulya | Dec 03, 2024
Serverless RAG Architecture: Combining MongoDB Atlas Vector Search, Amazon Bedrock, and AWS Lambda
Building production-ready RAG (Retrieval-Augmented Generation) systems doesn't have to be complex. In this guide, we'll explore how to combine MongoDB Atlas Vector Search, Amazon Bedrock, and AWS Lambda to create an efficient and scalable RAG pipelin…
By Shaun Liew | Dec 03, 2024
How to Copy a Worksheet in Excel Files with Python: Step-by-step Tips
Copying worksheets in Excel is often necessary in various scenarios, such as creating backups of unprocessed sheets or generating new workbooks based on existing data. While Excel provides a built-in move or copy sheet function, this process can be t…
By Casie Liu | Dec 03, 2024
Week 1: Building the Basics – Starting with AWS Cloud Essentials
This week, I explored the fundamentals of cloud computing and its essential benefits. Cloud computing provides scalable, flexible, and cost-effective resources compared to traditional on-premises infrastructure. AWS is a leading provider in this doma…
By Vinay Tilada | Dec 03, 2024
Python for DevOps: Keywords, Variables, and Best Practices
Introduction
In the third day of the Python for DevOps series, Abhishek Veeramalla delves into two fundamental concepts that are crucial for any Python programmer: keywords and variables. This article breaks down the key learnings from the session.
K…
By Amulya | Dec 03, 2024
Django Development in 2025
What to Expect
Django is one of the most beloved web frameworks built on Python and has consistently proven its ability to stay relevant in a rapidly changing tech environment. Known for its “batteries-included” philosophy, Django offers a comprehensive suite of to…
By Seye Ogunnowo | Dec 03, 2024
Understanding Neural Networks
This post is a very basic level summary of my understanding of Neural nets from popular science videos across YouTube. Do check out the references and then re-read this article for a better understanding.
Neural networks are an attempt to model the w…
By Sukalyan Roy | Dec 03, 2024
The Inner Workings of Python
In this article, we'll explore the inner workings of Python. While most of us use Python daily, we rarely think about what happens behind the scenes. From writing a program to getting the output, and everything in between, there's a fascinating proce…
By Archisman Nath Choudhury | Dec 03, 2024
Even high-quality code can lead to tech debt
Technical Debt: How Even Pristine Code Can Hinder Progress
Introduction
Software development is an iterative process that often involves making trade-offs between speed, quality, and maintainability. While it's tempting to prioritize short-term gains…
By Sylvester Das | Dec 03, 2024
"Shared Reference" Gotcha in Python Lists
Python is a powerful and flexible language, but every now and then, it surprises you with quirks that can lead to bugs if you're not careful. One such quirk is the shared reference issue with mutable objects like lists. Let’s explore it in simple ter…
By Shreehari Vaasistha L | Dec 03, 2024
Les technologies web à apprendre en 2025
Introduction
Salut les devs ! Bienvenue dans ce nouveau tuto où on va parler des technologies web à apprendre absolument en 2025.
Dans cette vidéo, on va passer en revue les principales technologies, classées par domaine, pour vous aider à choisir ce…
By ZGenius Matondo | Dec 03, 2024
Python Syntax and Variables
Hey there, Python enthusiasts! If you’re diving into the world of Python or brushing up your skills, mastering Python’s syntax and variables is a fantastic place to start. Python is known for its simplicity and readability, making it a top choice for…
By Jeremy Morgan | Dec 03, 2024
Activity 48: Documentation of Python SMTP
Introduction to SMTP and its Importance
In this section, you will explain SMTP (Simple Mail Transfer Protocol), its role in email communication, and its significance.
SMTP (Simple Mail Transfer Protocol) is a protocol used for sending emails across t…
By Walter John Salibay | Dec 04, 2024
Activity 46: Documentation of Python JWT
Introduction to JWT
What is JWT? JSON Web Token (JWT) is a secure way to transmit information between parties as a JSON object, which is digitally signed to ensure data integrity and authenticity.
How JWT Works JWTs are often used in authenticati…
By Walter John Salibay | Dec 04, 2024
Working With Delta Tables In Fabric Python Notebook Using Polars
The much-anticipated Python notebook in Fabric is finally available and the Fabric users have already developed cool libraries and blogged about the usefulness of these notebooks. Duckdb is everyone’s favorite, but I am a Python guy 😁 so here is qui…
By Sandeep Pawar | Dec 04, 2024
Understanding Functions, Modules, and Packages in Python
Functions in Python
Functions are reusable blocks of code that perform a specific task. They help in making the code more readable, modular, and easier to debug. Here's a simple example of a function in Python:
def add(a, b):
return a + b
result…
By Amulya | Dec 04, 2024
Level Up Your Python Skills: Learn LLM and Discover How ChatGPT Can Help You
Introduction
Every Python developer aims to be the best in their field. However, the journey to becoming a top-notch developer is not a walk in the park. It requires continuous learning and mastering of new technologies. In this post, we will delve i…
By Alejandro Rodríguez | Dec 04, 2024
2825. Make String a Subsequence Using Cyclic Increments
class Solution:
def canMakeSubsequence(self, str1: str, str2: str) -> bool:
if len(str2) > len(str1):
return False
str2 = list(str2)
head = str2[0]
def getIncrementedChar(char):
if char…
By Tapan Rachchh | Dec 04, 2024
Openstack Authentication and Authorization
Hello and welcome back! In our last post, we explored on high level some common OpenStack components like Nova and Keystone. Today, we'll dive deeper into how OpenStack structures its authentication and authorization modules, particularly focusing on…
By Azeez Aremu | Dec 04, 2024
Building a Bridge Between Python and Hedera Hashgraph
Have you ever wondered what happens when you combine the simplicity of Python with the power of hashgraph? That's exactly what I set out to explore when I began my journey with Hedera. As a Python developer passionate about hashgraph technology, I no…
By Edwin Liava'a | Dec 05, 2024
YouTube Transcriptions using OpenAI's Whisper & Python
In this blog, we’ll dive into a cool project where we’ll transform YouTube videos into text using OpenAI's Whisper model. Whether you’re a student trying to summarize a lecture, or a creator looking to add subtitles to your videos, this guide has got…
By Prachi Jamdade | Dec 05, 2024
Secrets Management in vault automate with Jenkins
1. Setting Up hashicorp Vault
First, you need to set up hashicorp Vault to securely store your secrets. Vault allows you to manage secrets dynamically, ensuring that sensitive data like passwords and keys are encrypted and only accessible by authoriz…
By Vaibhav Somose | Dec 05, 2024
Discover the Features of the GitHub Student Developer Pack
What is the GitHub Student Developer Pack?
The GitHub Student Developer Pack is a collection of free and discounted tools, services, and benefits for students who are interested in development, programming, and technology. From hosting websites to le…
By Akash Satpute | Dec 05, 2024
[Python Debugging] SyntaxError: non-default argument follows default argument & How Function Works in Python
def greet(msg="Good morning!", name):
return "Hi! " + name + ', ' + msg
print(greet("John")) # Syntax Error
print(greet("Mary", "How do you do?")) # Syntax Error
Look at the code above and think of why that would cause an error.
When you declar…
By Lim Woojae | Dec 05, 2024
Python Django Financial Trading Dashboard — Integrating AnyChart JS Charts
We are pleased to share a helpful article we've found on EODHD APIs, where Michael Whittle, a seasoned developer and top Medium author, shows how he integrated our JavaScript charting library into his Python Django-based trading dashboard.
In particu…
By GB | Dec 05, 2024
Edit or Remove Hyperlinks from PDF in Python: Quick Tips
When dealing with PDFs with hyperlinks, updating outdated links, fixing errors, or removing them entirely are all common requirements. While many PDF editors, like Adobe Acrobat, offer these features, manually processing multiple PDF files can still …
By Casie Liu | Dec 05, 2024
分布模型與排名估計分析
1. 核心問題
給定一個具體數值比例,如何通過不同的(離散)分布模型來估計其可能的排名位置
2. 核心流程
確定目標與參數
定義觀察目標(如找出 0.63% 對應的排名)
設置模型參數(α, β, μ, σ 等)
決定分析範圍(如前 50 名)
建立分布模型
實現三種基礎分布函數
計算正規化係數
轉換為比例形式
執行排名估計
計算各排名位置的理論比例
尋找最接近目標值的位置
評估估計誤差範圍
3. 模型比較
模型核心參數分布特征主要優點限制
…
By Aldo Yang | Dec 06, 2024
A Practical Guide for Software Engineers to Understand and Tackle Complex Business Domains
The complexity of modern software systems is an undeniable challenge for developers and organizations alike. As systems scale, they must accommodate evolving requirements, integrate with disparate technologies, and remain adaptable. Without a robust …
By Ahmad W Khan | Dec 06, 2024
30 Frequently used Dataprep library functions w/samples
Here are examples using the dataprep library for data preparation tasks:
1. Loading and Cleaning Data
from dataprep.datasets import load_dataset
from dataprep.clean import clean_headers
# Load dataset
df = load_dataset("titanic")
# Clean column he…
By Anix Lynch | Dec 06, 2024
Réaliser son projet de A à Z
Chaque grand projet commence par une idée… ou parfois, par un problème frustrant. Prenons l’exemple de Zgenius, gérant d’un supermarché de quartier, qui se battait chaque jour avec ses fiches Excel et ses piles de papiers pour gérer ses stocks. Entre…
By ZGenius Matondo | Dec 06, 2024
Python for DevOps: Command Line Arguments and Environment Variables
Introduction
Command Line Arguments
What Are Command Line Arguments?
Command line arguments allow you to pass values to your Python program directly from the terminal, making your scripts more flexible and dynamic. Instead of hardcoding values inside…
By Amulya | Dec 06, 2024
My Python Learning Journey: Week 4 – Steps I Took, Problems I Faced, and How I Solved Them.
Hey everyone, in this week, I learned about the following Python concepts:
Inheritance: Single inheritance, Multiple inheritance, and Multilevel inheritance.
OOP Methods: super() method and @classmethod.
Advanced Concepts: The @property decorator…
By Sheikh Abdul Wahid | Dec 06, 2024
Improving database performance in Django part-1: Optimized Queries
If you want to improve performance of your django application, basically it's related to, improving database Queries. Writting efficient ORM queries is key. How much operations are taking place while any action performed by your view, less operations…
By Danish Khan | Dec 06, 2024
How a Simple Export Feature Turned Into a Performance Bottleneck and How We Scaled Past 20,000 Records
Ever faced a situation where a simple record exporting feature evolves into a full-blown performance nightmare? 🚨
Let me walk you through our journey of scaling challenges, a story that might hit close to home for many engineers.
The Starting Point:…
By Lawal Afeez | Dec 06, 2024
Python Automation #2: 🗳️ Data Transformation w/polars, pyjanitor, pandas, polars
1. Convert Column Names to Snake Case (pyjanitor.clean_names)
import pandas as pd
import janitor
# Sample DataFrame
df = pd.DataFrame({"Column Name 1": [1, 2], "AnotherColumn": [3, 4]})
# Convert column names to snake_case
df = janitor.clean_names(…
By Anix Lynch | Dec 06, 2024
3 Python Projects to Kickstart Python Learning
💡Introduction
Welcome to the World of DevOps and Python!
It’s a common myth that DevOps engineers don’t code, but the truth is far from it. DevOps engineers often rely on programming skills to automate processes, manage infrastructure, and simplify …
By Pravesh Sudha | Dec 06, 2024
Concurrency in Python
When high-performance is required
There are several ways to achieve concurrency in Python and each of them has its own trade-off: A-sync, Multi-Thread and Multi-Process.
First of all, let’s break the myth — Python is NOT a single threaded language! Y…
By Daniel Madar | Dec 06, 2024
Python Automation #4: EDA/Automated Reporting w/dataprep, evidently, mito
1. Generate a Quick Exploratory Report (dataprep.eda.create_report)
import pandas as pd
from dataprep.eda import create_report
# Sample DataFrame
df = pd.DataFrame({"A": [10, 20, 30, 40], "B": [5, 15, 25, 35]})
# Generate EDA report
report = create…
By Anix Lynch | Dec 06, 2024
Playing Around With Dictionaries in Python
For work, I have had an interesting project where I had to pass through multiple AWS Backup Plans into a Python class to make all my Backup Plans; these backup plans had so many options that needed configuring that the most logical way of passing the…
By Jason | Dec 06, 2024
Mastering Literals in Python Programming: A Complete Guide with Practical Examples
Introduction:
In Python, literals are fixed values that can be assigned to variables or constants in the code. These values can be of various types, including strings, numbers, or boolean values. Literals are fundamental to Python programming, allowi…
By Subbu Tech Tutorials | Dec 06, 2024
Migrating a Python Django DRF Monolith to Microservices – Part 1: Planning the Migration
This series walks through the step-by-step process of breaking a Django DRF monolith into microservices, containerizing the architecture, setting up CI/CD pipelines, and deploying on AWS using Kubernetes. Each part focuses on a specific phase.
Migrat…
By Ahmad W Khan | Dec 06, 2024
Understanding Django's Auto-discovery: A Deep Dive
Django's auto-discovery feature is one of those magical elements that makes the framework both powerful and developer-friendly. While many developers use it daily, few understand how it works under the hood or how to leverage it effectively in their …
By Nikhil Akki | Dec 06, 2024
Building a Bridge Between Python and Rootstock Blockchain
Have you ever wondered what happens when you combine the simplicity of Python with the power of blockchain? That's exactly what I set out to explore when I began my journey with Rootstock (RSK). As a Python developer passionate about blockchain techn…
By Edwin Liava'a | Dec 06, 2024
Análisis de Spam en Mensajes de Texto: Implementación de Aprendizaje Automático para su Detección.
Introducción
Este es un corpus de texto de más de 5,500 mensajes SMS en inglés con aproximadamente el 13% etiquetados como spam.
El archivo de texto contiene un mensaje por línea con dos columnas: la etiqueta ("ham" o "spam") y el texto crudo del me…
By Luis Ochoa | Dec 07, 2024
Detailed Notes on Python Operators for DevOps Engineers
1. What are Operators?
Operators are special symbols in Python used to perform operations on variables and values. They are fundamental to:
Performing calculations
Comparing values
Manipulating data
Creating logical conditions
2. Arithmetic Ope…
By Amulya | Dec 07, 2024
Implementing a Robust SQLite Backup System in Django
In this blog post, I'll share our approach to implementing a comprehensive SQLite backup system for a Django application. This system not only creates backups but also verifies their integrity and automatically pushes them to GitHub for safe storage….
By Saurav Sharma | Dec 07, 2024
Exploring Generative AI with LangChain: A Comprehensive Guide with Python Examples
Generative AI has revolutionized the way we interact with technology by enabling systems to generate human-like text, create images, and solve complex problems. One of the most exciting libraries facilitating generative AI applications in Python is L…
By Vithor Varela | Dec 07, 2024
Get Started with Python: A Beginner’s Guide to Writing Your First Programs
Are you ready to dive into the world of coding but unsure where to begin? Python, one of the most beginner-friendly programming languages, is a fantastic starting point for students, developers, and anyone curious about coding. And guess what? Micros…
By Mahrukh Adeel | Dec 07, 2024
Boosting Your Python Web App's Performance
In today’s era of dynamic web development, hosting a Python web application is a crucial task that requires careful attention to performance optimization. This article delves into the concepts of backend frameworks, concurrency, and the role of Celer…
By ARPIT KUMAR | Dec 08, 2024
Functions in Go
Functions are the building blocks of Go programming, providing a powerful way to organize, reuse, and modularise code. In this deep dive, we'll explore everything you need to know about functions in Go, from basic syntax to advanced techniques.
Basic…
By Rohit | Dec 08, 2024
Principal Component Analysis(PCA) in Python
You will learn about PCA and how it can be leveraged to extract information from the data without any supervision using two popular datasets: Breast Cancer and CIFAR-10.
Principal component analysis (PCA) is a linear dimensionality reduction techniqu…
By Bhavya Shingari | Dec 08, 2024
The Bcrypt Algorithm for Secure Password Hashing
Hashing is a cryptographic function that cannot be reversed. It takes an input of random size to produce fixed-size values. These fixed-size values are called hash values, and the cryptographic function is called the hashing function. Hashing has a c…
By Vinayak Sharma | Dec 08, 2024
Intel Images Classification Using VGG-19
Intel image classification is a dataset consist of multiple scene. This dataset have 25,000 images with size 150 × 150 that are labeled for 6 difference categories like buildings, forest, glacier, mountain, sea, and street.
The dataset split into 14,…
By Fadhil Elrizanda | Dec 08, 2024
Hypothesis Tests Every Data Scientist Should Know
Hypothesis tests are crucial for validating assumptions about data, offering a quantifiable measure of how accurate or inaccurate those assumptions may be. These tests should not be viewed as definitive proofs; instead, they serve as tools for decisi…
By Sudarshan | Dec 08, 2024
Python in the Void: LogAnalyzer
In this Python in the Void installment, we dive into building a custom log analyzer tool from scratch. This hands-on walk through takes you step-by-step through the process of creating a Python script that reads, filters, analyzes, and visualizes sys…
By Chris Holcombe | Dec 08, 2024
#406 – Matthias
Rebuilding django-prose-editor from the ground up
Rebuilding django-prose-editor from the ground up
The django-prose-editor package provides a HTML editor based upon the ProseMirror toolkit for the Django administration interface and for the frontend.
The package has been extracted from a customer p…
By Matthias Kestenholz | Dec 04, 2024
Weeknotes (2024 week 49)
Weeknotes (2024 week 49)
Django Steering Council elections
I have been thinking long and hard about running for the Django Steering Council. I think there are a few things I could contribute since I’ve been using Django for 16 or more years, an…
By Matthias Kestenholz | Dec 06, 2024
#Dev.to
Day 1: Mastering the Basics of Python
#python #ai #programming
By Praneeth | Dec 02, 2024
A Data Pipeline for 1 million movies and 10 million streaming links
#windmill #python #movies #goodwatch
By Alper Ortac | Dec 02, 2024
Building a chatbot with Semantic Kernel – Part 2: Plugins
#ai #semantickernel #python #microsoft
By David Sola | Dec 02, 2024
Weekend Task
#python #payilagam #task #looping
By Lakshmi Pritha Nadesan | Dec 02, 2024
Automações com Python.
#python #automaton
By Henrique Vital | Dec 02, 2024
Telegram bot para replicar sinais no mt5
#python #telegram
By Henrique Vital | Dec 02, 2024
Este código é um exemplo de um Expert Advisor (EA) automatizado para o MetaTrader 5.
#python #automation
By Henrique Vital | Dec 02, 2024
AoC ‘24 – Day 1: Historian Hysteria (C# & Python) #Spoilers
#csharp #python #adventofcode
By Grant Riordan | Dec 02, 2024
The Adventures of Blink: Advent of Code 2024
#adventofcode #python #programming #learning
By Ben Link | Dec 02, 2024
Advent of Code 24
#adventofcode #csharp #python
By Grant Riordan | Dec 02, 2024
How to scrape Google search results with Python
#webscraping #webdev #python #developers
By Max Bohomolov | Dec 02, 2024
Connect to multiple databases, make or generate SQL queries, analyze or visualize.
#python #sql #llm
By Hi|\/|Raj | Dec 02, 2024
Sudoku game!
#python #pygame #beginners
By Sergio Avalos | Dec 02, 2024
Random Forest Classification: Unveiling the Powerful Machine Learning Technique That's Transforming Decision-Making
#webdev #machinelearning #deeplearning #python
By Abhinav Anand | Dec 02, 2024
AWS Database Services: Overview
#beginners #python #aws #productivity
By Favour ogungbade | Dec 02, 2024
Automate testing with Github Actions
#python #githubactions #testing #devops
By UltraViolet33 | Dec 02, 2024
Streamlit Part 8: Status Elements
#python #streamlit #webdev #tutorial
By James | Dec 02, 2024
Master Python's Hidden Powers: 10 Advanced Introspection Techniques for Code Wizards
#programming #devto #python #softwareengineering
By Aarav Joshi | Dec 02, 2024
Mastering Python's Magical Metaprogramming: Code that Writes Itself
#programming #devto #python #softwareengineering
By Aarav Joshi | Dec 02, 2024
Chat with Your Google Sheets Using ChatGPT: Make Your Data Work for You
#python #opensource #chatgpt #google
By Tala | Dec 02, 2024
Everything to Know to Start Web Scraping in Python Today
#python
By Scrapfly | Dec 02, 2024
Masking confidential data in prompts using Regex and spaCy
#promptengineering #python #regex
By Aditya Krishnan | Dec 02, 2024
The 7 Best Python Libraries Every Developer Needs to Know
#python #webdev #programming #learning
By TimesofAsi | Dec 02, 2024
Day 14 – Looping
#python #payilagam #looping #while
By Lakshmi Pritha Nadesan | Dec 02, 2024
Day 1: Getting Started with Python
#python #coding #100daysofcode #programming
By arjun | Dec 02, 2024
Python Day- 14 Looping-Exercises and tasks
#payilagam #python #looping #tasks
By Guru prasanna | Dec 02, 2024
📊 Benefits of a historic wait time API: apigee developer portal & Streamlit
#datascience #ux #python #api
By adriens | Dec 03, 2024
Understanding Python Functions and Their Uses
#programming #python #productivity #webdev
By Chidinma Cynthia Peters | Dec 03, 2024
Straight to the Money 💰 minimalistic yet all-inclusive Python project template
#python #uv #cookcutter #template
By Carlo van Overbeek | Dec 03, 2024
AoC '24 Day 2: Red-Nosed Reports (C# and Python)
#adventofcode #csharp #python
By Grant Riordan | Dec 03, 2024
Unlocking High-Performance Computing with F#: A Comprehensive Guide
#fsharp #python #llm
By Rocky LIU Yan | Dec 03, 2024
การใช้งาน Polyglot notebook กับ Python
#python #vscode #dotnet #windows
By Ruxo Zheng | Dec 03, 2024
Why does everyone love sorting algorithms?
#python #sortingalgorithms
By Choon-Siang Lai | Dec 03, 2024
Unlocking the Power of Python: An Introduction to Its Versatility
#beginners #python #learning #webdev
By Shevin Nikesh | Dec 03, 2024
Why Rust? 🦀 – Speed
#rust #programming #perl #python
By Gabor Szabo | Dec 03, 2024
Crypto Trading Bots: Automating Your Investment Strategies
#webdev #javascript #blockchain #python
By Dmytro Klimenko | Dec 03, 2024
AWS Database Services: Overview
#beginners #python #aws #productivity
By Favour ogungbade | Dec 02, 2024
How to Use Shadcn/UI in React.js
#javascript #python #vscode #programming
By Velan<> | Dec 03, 2024
Proxy Checker: The Ultimate Proxy Validation Tool 🕵️♂️💻
#linux #programming #python #opensource
By Trix Cyrus | Dec 03, 2024
EchoAPI vs Bruno: A Comprehensive Comparison from Design to Testing 💡
#javascript #vscode #python
By Velan<> | Dec 03, 2024
Unlocking the Secrets of Authentication: A Human's Guide to Digital Security 🔐
#python #systemdesign #security #programming
By Biswajit Patra | Dec 03, 2024
How to get Announcement from Binance ASAP?
#python #javascript #scrapping
By Jason Smith | Dec 03, 2024
Automated crypto price tracking using GMAIL and Python
#webdev #javascript #python #cryptocurrency
By Nikola Perišić | Dec 03, 2024
Day 15 – for loop and Indexing
#python #payilagam #forloop #indexing
By Lakshmi Pritha Nadesan | Dec 03, 2024
Python Training Course for Beginners: A Comprehensive Guide to Master Python
#python #cybersecurity #programming #micropython
By Daksh Kataria | Dec 03, 2024
How I Saved Myself Hours Using Python, Google Gemini, & Meta Llama to Create a Time Saving Script
#python #ai #productivity #programming
By Bradston Henry | Dec 03, 2024
Conquering Notification Overload: A Developer's Guide to Digital Peace
#javascript #python #security #cybersecurity
By Osagie Anolu | Dec 03, 2024
9 cutting-edge open-source tools to build next-gen AI apps 🔮💡
#ai #programming #python #webdev
By Ayush Thakur | Dec 03, 2024
Where to start ?
#python #programming #architecture #polylith
By Yoel Benítez Fonseca | Dec 03, 2024
Day 2: Python Control Structures, Functions, Modules, and Data Structures
#javascript #python #datascience #django
By arjun | Dec 03, 2024
Packaging Python RPMs
#python #packaging #rpm
By Rodolfo Olivieri | Dec 03, 2024
Mastering Python Logging: From Basics to Advanced Techniques
#python #django #restapi #logging
By Praseesh P | Dec 03, 2024
Understanding Python Syntax and Variables
#programming #python #beginners #tutorial
By Jeremy Morgan | Dec 04, 2024
Decision Tree Classifier Example to Predict Customer Churn
#ai #machinelearning #decisiontreeclassifier #python
By Muhammad Atif Iqbal | Dec 04, 2024
Python Day-15 Loop-Using Range Function and Indexing,Tasks
#payilagam #python #loop #range
By Guru prasanna | Dec 03, 2024
For loops and comprehensions in Elixir – transforming imperative code
#elixir #loops #python #functional
By Matt Whitworth | Dec 03, 2024
Python Data Types: A Quick Guide
#python #coding #programming #data
By Alex Ricciardi | Dec 04, 2024
AoC '24 – Day 3: Mull it Over (C# and Python)
#regex #csharp #adventofcode #python
By Grant Riordan | Dec 04, 2024
How to get Announcement from Binance ASAP?
#python #javascript #scrapping
By Jason Smith | Dec 03, 2024
Can't get data from Companies House and HMRC API that have more than £2m in turnover data
#help #python
By Vicente G. Reyes | Dec 04, 2024
Understanding the Differences Between GET and POST: A Comprehensive Guide
#javascript #vscode #python #programming
By Velan<> | Dec 04, 2024
Top 5 Python Libraries to Watch in 2025
#python #libraries #ai #2025
By Developer Service | Dec 04, 2024
🚀 How to Create a Pencil Sketch Effect with OpenCV and Matplotlib
#python #opencv #matplotlib #backend
By A0mineTV | Dec 04, 2024
An old Classic with new Perspective in 3D
#python #attractors #hopalong
By Rat Wolf (ratwolf) | Dec 04, 2024
Transform Images into Stunning Pencil Sketches with Python and OpenCV 🎨🖌️
#python #opencv
By A0mineTV | Dec 04, 2024
Transform Your Images into Pencil Sketches with Python 🚀
#python #opencv #beginners
By A0mineTV | Dec 04, 2024
ChatWithSQL — Secure, Schema-Validated Text-to-SQL Python Library, Eliminating Arbitrary Query Risks from LLMs
#python #sql #ai #programming
By Sathnindu Kottage | Dec 04, 2024
🚀 Master Data Science & Machine Learning with Microsoft Fabric!
#microsoftfabric #datascience #programming #python
By Nebagh_07 | Dec 04, 2024
Reset autoincrement sequences for IDs in Django application after all instances are deleted (PostgreSQL)
#django #database #postgres #howto
By Shakhzhakhan Maxudbek | Dec 04, 2024
Python Data Types: A Quick Guide
#python #coding #programming #data
By Alex Ricciardi | Dec 04, 2024
Understanding Polymorphism in Python
#polymorphism #python #coding #programming
By Alex Ricciardi | Dec 04, 2024
Day 3: File Handling and Error Handling
#webdev #python #ai #opensource
By arjun | Dec 04, 2024
Key Criteria for Developing Python Functions
#python #coding #programming #functions
By Alex Ricciardi | Dec 04, 2024
How to Use PySpark for Machine Learning
#tutorial #python #machinelearning
By Shittu Olumide | Dec 04, 2024
Basic Loops in Python
#python #coding #programming #loops
By Alex Ricciardi | Dec 04, 2024
How to Optimize Loops for Better Performance
#javascript #programming #csharp #python
By Uchechi Nwaka | Dec 04, 2024
Short-Circuit in Python’s Compound Conditional Expressions
#python #coding #programming #and
By Alex Ricciardi | Dec 04, 2024
Transform Any Image into a Sketch with Python 🚀
#python #opencv #tutorial
By A0mineTV | Dec 04, 2024
🌍 GeoIP Lookup Tool: Easily Get Geolocation Information of Any IP Address.
#python #programming #infosec #opensource
By Trix Cyrus | Dec 04, 2024
Day 16 – Slicing,for loop and nested loop
#python #payilagam #forloop #nestedloop
By Lakshmi Pritha Nadesan | Dec 04, 2024
MNIST in PyTorch
#python #pytorch #mnist #dataset
By Super Kai (Kazuya Ito) | Dec 04, 2024
Transitioning from JavaScript To Python: From let to def
#webdev #javascript #python #programming
By Patrick Dacius | Dec 04, 2024
Exception Handling in Python
#python #exceptions #coding #programming
By Alex Ricciardi | Dec 04, 2024
Python Day-16 Loop-Slicing & step operator,Pattern Formation,Task
#payilagam #python #loop #pattern
By Guru prasanna | Dec 04, 2024
CobraConfig. Everything to set up a good Python project
#javascript #python #tooling #testing
By Frog3r | Dec 04, 2024
Bubble Search… Swap (x, y);
#datastructures #python #algorithms #programming
By Kunguma Sakthivel K | Dec 04, 2024
ChromaDB for the SQL Mind
#ai #python #vectordatabase #database
By Aditya47x | Dec 05, 2024
Why Industrial Python Training is the Ultimate Career Boost
#python #careerdevelopment #learntocode #webdev
By shivam sharma | Dec 05, 2024
Unveiling Q3: The Quantum-Classical Kernel That Bridges Computing Frontiers
#opensource #python #quantum
By Shanks Zero | Dec 06, 2024
Trusted publishing ‐ It has never been easier to publish your python packages
#python #github #packaging #security
By Christian Ledermann | Dec 06, 2024
Small pieces of code as solutions to specific problems in large companies
#javascript #python #programming
By Martino quintas | Dec 06, 2024
Building a Real-time Company Intelligence Engine with Linkup in 50 Lines of Python
#ai #python #programming #beginners
By guillaumel | Dec 05, 2024
Day 17 – Nested for loop and Pattern Programs
#python #payilagam #forloop #nestedforloop
By Lakshmi Pritha Nadesan | Dec 05, 2024
Authentication and Authorization in Django: Django session
#django #python #webdev #security
By Arum Puri | Dec 05, 2024
Navigating the world of Harry Potter with Knowledge Graphs
#langchain #knowledgegraph #python #rag
By Lewis Won | Dec 05, 2024
Python Django Financial Trading Dashboard — Integrating AnyChart JS Charts
#python #django #javascript #computerscience
By andreykh | Dec 05, 2024
A Visual Guide to Affine Transformations: Translation, Scaling, Rotation, and Shear
#python #tutorial #numpy #opencv
By San Askaruly | Dec 05, 2024
GhubScan osint tool
#osint #github #python
By ovax | Dec 05, 2024
Setup Celery Worker with Supervisord on elastic beanstalk via .ebextensions
#aws #python #flask #tutorial
By Code Lemons | Dec 05, 2024
Detecting Hallucinations in LLMs with Discrete Semantic Entropy and Perplexity
#ai #llm #python
By Mayank Laddha | Dec 05, 2024
Build a 2025 Stock Dashboard in less than 40 lines of Python code!🤓
#python #programming #beginners #devjournal
By Rym | Dec 05, 2024
使用 selenium 讀取需要登入會員的網頁
#selenium #python
By codemee | Dec 05, 2024
#004 | Automate PDF data extraction: Build
#mvp #projectsukoshizutsu #python
By Jian | Dec 05, 2024
EMNIST in PyTorch
#python #pytorch #emnist #dataset
By Super Kai (Kazuya Ito) | Dec 05, 2024
QMNIST in PyTorch
#python #pytorch #qmnist #dataset
By Super Kai (Kazuya Ito) | Dec 06, 2024
KMNIST in PyTorch
#python #pytorch #kmnist #dataset
By Super Kai (Kazuya Ito) | Dec 06, 2024
Part 2: Building Your Own AI – Setting Up the Environment for AI/ML Development
#programming #python #ai #machinelearning
By Trix Cyrus | Dec 06, 2024
Python Day- 17 Pattern formation using loop,Tasks
#payilagam #python #pattern #loop
By Guru prasanna | Dec 06, 2024
10 Key Benefits of Choosing Python for Your Next Software Project
#python #development #softwaredevelopment #hiredeveloper
By HireFullStackDeveloperIndia | Dec 06, 2024
HIRE A CERTIFIED CRYPTO RECOVERY EXPERT / ARGONIX HACK TECH
#python
By Bozena Krystyna | Dec 06, 2024
TIL that the `requests` library supports automatic retries with exponential backoff
#requests #retry #python
By Benji 🍙 | Dec 06, 2024
Implementing Server-Sent Events (SSE) with Python and Go
#javascript #vscode #python #programming
By Velan<> | Dec 06, 2024
Solving Word Cookies Puzzles: A Python Adventure
#python #productivity #programming #challenge
By Ifedolapo Ajetunmobi | Dec 06, 2024
Day 18 – Object Oriented Programming
#python #payilagam #object #class
By Lakshmi Pritha Nadesan | Dec 06, 2024
Mastering Long Context and Context Caching with Google Gemini 🔥
#ai #beginners #tutorial #python
By Haotian Huang | Dec 06, 2024
Email Automation Tool
#webscraping #python #opensource
By Ansif | Dec 06, 2024
How to Build a Chatbot using Python? A Complete Guide
#python #webdev #programming
By Eric Walter | Dec 06, 2024
This Week In Python
#python #thisweekinpython
By Bas Steins | Dec 06, 2024
Making My First AI Chat App: Learning From DevOps Pass AI's Ollama Integration
#python #beginners
By Justin K. | Dec 06, 2024
How to Scrape Data From Goodreads Using Python and BeautifulSoup
#python #beautifulsoup #webscraping
By Shashank | Dec 06, 2024
Python Day-18 Nested for loop -pattern,OOPS-Object Oriented Programming System
#payilagam #python #oop #forloop
By Guru prasanna | Dec 06, 2024
Building Turtle & Rabbit: A Smarter Way to Access UPSC PYQs Using React, Python, and Vector Search
#programming #chatgpt #pinecone #python
By sourabh gupta | Dec 07, 2024
Why is My Multi-Threaded API Still Slow?
#fastapi #python #playwright #asynchronous
By Muhammad Faizan Asghar | Dec 07, 2024
Open-Source Collaboration Progress
#opensource #slackbolt #slack #python
By Henrique Sagara | Dec 07, 2024
Simplifying Internal APIs with Direct AWS Lambda Invocation
#howto #aws #php #python
By Dimitrios Desyllas | Dec 07, 2024
CRUD With Flask And MySql #2 Prepare
#webdev #flask #python #mysql
By Yudhas Develop | Dec 07, 2024
CRUD With Flask And MySql #1 Introduction
#webdev #flask #python #mysql
By Yudhas Develop | Dec 07, 2024
How Technology Enhances Commercial HVAC
#techtalks #hvactech #javascript #python
By Aleks Abedini | Dec 07, 2024
Building a 🧾 PDF Invoice Generator with 📨 Twilio SendGrid, 🐍 Python, Flask, and 🖌️ Bootstrap
#webdev #python #programming #tutorial
By Kumar Kalyan | Dec 07, 2024
JSONs and its variations
#json #javascript #python #coding
By KateMLady | Dec 07, 2024
Web Scraping Simplified: Extracting Article Titles with BeautifulSoup
#beautifulsoup #scrap #python #webscraping
By A0mineTV | Dec 08, 2024
Get Started with Python: A Beginner’s Guide to Writing Your First Programs
#python #programming #microsoft #beginners
By Mahrukh Adeel | Dec 08, 2024
AoC '24 – Day7: Bridge Repair
#adventofcode #csharp #python
By Grant Riordan | Dec 08, 2024
Extracting Text from HTML Content in Python: A Simple Solution with `HTMLParser`
#python #htmlparser #html
By A0mineTV | Dec 07, 2024
# Boost Your Python Tasks with `ThreadPoolExecutor`
#python #tutorial #threadpools #multithreading
By A0mineTV | Dec 07, 2024
25 retos de Programación de JavaScript y Python: AdventJS
#adventjs #javascript #typescript #python
By Miguel Ángel Durán 👨💻 | Dec 08, 2024
Making HTTP Simple with Python request Module.
#beginners #tutorial #python #programming
By Lawani Elyon John | Dec 08, 2024
KeePassDiff: A diff/merge tool for KeePassXC databases
#webdev #programming #python #security
By Billy | Dec 08, 2024
ChatsAPI — The World’s Fastest AI Agent Framework
#python #ai #programming #opensource
By Sathnindu Kottage | Dec 08, 2024
Mastering Python's Concurrent Programming: Boost Performance with Advanced Techniques
#programming #devto #python #softwareengineering
By Aarav Joshi | Dec 08, 2024
IELTS Task II Generator
#python #programming #ai #productivity
By Akan | Dec 08, 2024
Building a Simple SQLite Library Manager in Python
#python #sqlite #database #tutorial
By A0mineTV | Dec 08, 2024
Maximizing the interval
#python #theweeklychallenge
By Simon Green | Dec 08, 2024
MovingMNIST in PyTorch
#python #pytorch #movingmnist #dataset
By Super Kai (Kazuya Ito) | Dec 08, 2024
# 🚀 Building a User Management API with FastAPI and SQLite
#fastapi #python #sqlite #api
By A0mineTV | Dec 08, 2024
How to Run stable-diffusion-3.5-large-turbo on Google Colab
#localllm #python #huggingface #text2image
By M Sea Bass | Dec 08, 2024
#Daniel Roy Greenfeld Blogs
TIL: Python's defaultdict takes a factory function
Create a dictionary-like object that takes a factory function so you have lots of control over what the default value can be.
By Daniel Roy Greenfeld | Dec 02, 2024
Starting Brazilian Jiu-Jitsu
How to safely get started at Brazilian Jiu-Jitsu regardless of age.
By Daniel Roy Greenfeld | Dec 03, 2024
TIL: How to reset Jupyter notebook passwords
For those times when you get locked out of a Jupyter notebook
By Daniel Roy Greenfeld | Dec 05, 2024
GitHub Admonitions
How to elevate a message in GitHub markdown.
By Daniel Roy Greenfeld | Dec 05, 2024