#Real Python
Dictionaries in Python
In this tutorial, you'll learn how to work with Python dictionaries to help you process data more efficiently. You'll learn how to create dictionaries, access their keys and values, update dictionaries, and more.
#basics #python
By – | Dec 16, 2024
How to Remove Items From Lists in Python
In this how-to guide, you'll explore different ways to remove items from lists in Python. Using practical examples, like managing a library book list and a contact book application, you'll learn efficient techniques for handling list item removal.
#basics #python
By – | Dec 18, 2024
Get Started With Django User Management
In this step-by-step tutorial, you'll learn how to extend your Django application with a user management system.
#intermediate #django
By – | Dec 18, 2024
Learn From 2024's Most Popular Python Tutorials and Courses
Revisit your favorite Real Python tutorials and courses from 2024. You can explore various topics, from mastering Python basics to creating innovative projects and optimizing your workflow. It's been an exciting year of learning, and there's something for everyone to build upon in 2025.
#basics #community
By – | Dec 21, 2024
A Practical Introduction to Web Scraping in Python
In this tutorial, you'll learn all about web scraping in Python. You'll see how to parse data from websites and interact with HTML forms using tools such as Beautiful Soup and MechanicalSoup.
#intermediate #web-scraping
By – | Dec 21, 2024
How to Flatten a List of Lists in Python
In this tutorial, you'll learn how to flatten a list of lists in Python. You'll use different tools and techniques to accomplish this task. First, you'll use a loop along with the .extend() method of list. Then you'll explore other tools, including reduce(), sum(), itertools.chain(), and more.
#intermediate #data-science
By – | Dec 22, 2024
#Python Insider
Python 3.14.0 alpha 3 is out
By Hugo | Dec 17, 2024
#PyCoders
Issue #660 – PyMyFlySpy, Set Comprehensions, State of Typing, and More
By – | Dec 17, 2024
#Python Library
The Python Countdown to Christmas 2024 Giveaway
Happy Holidays and Merry Christmas from me to you! I have been giving away hundreds of Python books and courses for Christmas for the last couple of years! From now until Christmas, I will be giving away hundreds more. You can start learning Python for free using my books or courses. All you have to […]
#beginner #Python
By Mike | Dec 16, 2024
#Adam Johnson – Blogs
Django Quiz 2024
Yesterday, I held another quiz at the December edition of Django London. The quiz is a regular tradition at our meetup, a way of having a more relaxed event in December and giving away some nice prizes. This was the sixth quiz that I’ve presented, and the seventh overall.
By Adam Johnson | Dec 18, 2024
#Hashnode
Learn any programming language Like a Expert
Are you feeling stuck in your programming journey? As a software engineer with 14 years of experience and knowledge of 25+ languages, I understand your struggle. I’ve been there at the start of my career, and now I help others overcome these same cha…
By Dewmal Handapangoda | Dec 16, 2024
FastAPI Unveiled: Mastering the Magic of Lightning-Fast Python APIs
FastAPI is a modern, high-performance web framework for building APIs with Python. It’s designed to be easy to use, fast to code, and capable of handling production workloads. In this beginner-friendly guide, we’ll explore how FastAPI works behind th…
By Chetan Choudhary | Dec 16, 2024
Securing Your Web Applications with JWT Authentication and Refresh Token Rotation
In today’s digital landscape, user authentication and secure access management are critical components of any web application. As developers, we strive to strike the perfect balance between security and user experience, ensuring that our users can ac…
By Chetan Choudhary | Dec 16, 2024
Workflow automation with Github actions
Step-by-Step Guide to Automating Unit Tests for a Sample Python Calculator application with GitHub Actions
Introduction
In this guide, i will walk through writing unit tests for a simple Python calculator with four functions: add, subtract, multiply,…
By Vipin | Dec 16, 2024
Python Log Rotation: A Comprehensive Guide to Better Log Management
In production applications, logs are crucial for debugging, monitoring, and maintaining system health. However, without proper management, logs can quickly become overwhelming, consuming excessive disk space and degrading system performance. Enter lo…
By Chetan Choudhary | Dec 16, 2024
Metaclasses Demystified: Building Classes that Build Classes! 🚀
What’s a Metaclass?
In Python, when you define a class, Python uses a metaclass to determine how the class behaves. By default, the metaclass for all classes in Python is type.
Think of metaclasses as the architects of your classes. They don’t buil…
By Dhruvi Shah | Dec 16, 2024
Python for DevOps: Mastering Dictionaries and API Interactions with GitHub
Introduction
Understanding Dictionaries in Python
Why Dictionaries?
Dictionaries solve a common problem in data representation by using key-value pairs. Unlike lists, which store items in a sequential manner, dictionaries allow you to:
Store complex…
By Amulya | Dec 16, 2024
How to Build a Proxy Server with Python: A Step-by-Step Guide
Creating a proxy server in Python is a task involving network programming that allows you to intercept, modify, or forward HTTP (or HTTPS) requests and responses between a client and a target server. Although implementing a fully functional proxy ser…
By Lewis Kerr | Dec 16, 2024
Python Full Course for DevOps: A Beginner's Guide
Welcome to this Python full course tailored for DevOps professionals! In this series, we will walk through essential Python concepts and explain how they apply to DevOps practices. Whether you’re automating server management, handling configurations,…
By TK sahu | Dec 16, 2024
Improving memory efficiency in a working interpreter
Lifetimes are a fascinating feature of Rust and the human experience. This is a technical blog, so let’s focus on the former. I was admittedly a slow adopter for leveraging lifetimes to safely borrow data in Rust. In the treewalk implementation of Me…
By Jones Beach | Dec 16, 2024
Design (LLD) Online Book Management System – Machine Coding Interview
Asked in LLD Interview
Functional Requirements:
Search for a Book:
Users should be able to search for books in the system based on various criteria, such as title, author, or genre.
Read a Book:
A user should be able to select a book from the se…
By Subhahu Jain | Dec 16, 2024
Maximum Depth of a Binary Tree : Leetcode Solution.
Introduction
The depth of a binary tree is one of the fundamental properties used to understand its structure. Calculating the maximum depth of a binary tree involves determining the longest path from the root node to a leaf node. This article explai…
By VISHWANATH T S | Dec 16, 2024
Getting Started with Python
Hey there, fellow geeks and future coders! Welcome to Part 1 of our series, "Learn Python"! If you've ever wanted to learn Python but felt overwhelmed by where to start, you’re in the right place. We’re going to break it down in easy, bite-sized chun…
By Jeremy Morgan | Dec 16, 2024
What is RAG and why is it needed?
What is RAG?
Among the AI buzzwords that we've been hearing a lot these days, "RAG" is one of the most common ones. Also known as Retrieval Augmented Generation, RAG is a technique used in natural language processing (NLP) where a language model is c…
By Nishchit Bhandari | Dec 16, 2024
How to Convert HSL to RGB in Python
Recently, I’ve been dabbling into the world of color systems and I’ve been researching the conversions that happen between one color model to another. Most colour models that exist on your computer screen and browsers today draw from the sRGB colour …
By Sunkanmi Fafowora | Dec 16, 2024
Asynchronous Programming With Python: A Simple Overview
In programming, two primary ways to handle tasks are synchronously and asynchronously. Synchronous programming is a form of programming that lets you run only one task at a time. It is the traditional way of handling tasks. If you call a synchronous …
By Ademola Thompson | Dec 16, 2024
How to Use Sets to Validate YoY Data in Python
In this article, I will go through various methods to join sets as well as a practical example of how this may be used for data validation.
Consider an insurance policy which has policyholders changing from year to year. New policies come in, while o…
By Jacqueline Trapp | Dec 17, 2024
Git installation and configuration on Linux | GitHub | Central/remote repository | Git | basic knowledges | ubuntu
#for ubuntu/Debian:
1. update packages:
sudo apt update -y
install git:
sudo apt install git
verify installation:
git –version
#after installing git
configure your username and email (used in commits):
git config –global user.name "Yo…
By Birendra Chaudhary | Dec 17, 2024
How to Validate Rectangular Images in Django Using Python
When working with image uploads in a Django project, there may be situations where you need to enforce specific dimensions, such as ensuring the uploaded image is rectangular (not square). This can be particularly useful for profile headers, banners,…
By Vicente Reyes | Dec 17, 2024
It’s Ti-i-ime to Visualize the Christmas Dataset with Python and Flexmonster Pivot Table!
As the season of giving and shopping approaches, Christmas sales and trends become even more fascinating. This magical time is about traditions and discovery—finding the perfect gift, uncovering unique trends, or researching new tools to bring ideas …
By Svitlana Lorman | Dec 17, 2024
Understanding SOLID Principles: Essential Steps for Building Scalable Software
In the realm of software development, creating systems that are scalable, maintainable, and robust is a universal challenge. The SOLID principles provide a tried-and-true framework for achieving these goals by addressing common software challenges su…
By aakas | Dec 17, 2024
Tutorial: Building a Birthday Reminder Script in Python
Have you ever forgotten a friend's birthday and then had to go through an awkward conversation later on? Well fear not, I got you! With Python, you can create a simple yet effective script to ensure you are the first person to wish the next year or a…
By Mohammad Ariful Islam | Dec 17, 2024
How to Combine Sets in Python
In this article, I will go through various methods to join sets as well as an example of how these techniques may be used to explain year over year policyholder movement for an insurance policy.
Consider an insurance policy which has policyholders ch…
By Jacqueline Trapp | Dec 17, 2024
Python In Devops Fields
Python is a highly versatile and widely-used language in the DevOps field due to its simplicity, readability, and extensive library support. It plays a crucial role in automating and optimizing various DevOps processes, such as continuous integration…
By Sebastien Legrand Ngembou | Dec 17, 2024
GitSnap: A lightweight tool for creating Git repositories, committing, and pushing to GitHub.
December 17th 2024
Summary : In this article, I share how I wrote 500 lines of Python code to create a simple Git client. It can set up a repository, add files, commit changes, and even push itself to GitHub. I’ll walk you through the process and ex…
By Yashraj Tarte | Dec 17, 2024
Enhance Your Django App with Python Enum: A Practical Guide
Introduction
In the world of web development, Django stands out as a powerful and versatile framework for building robust applications. However, as applications grow in complexity, maintaining clean and efficient code becomes increasingly important. …
By Soumya Nasipuri | Dec 17, 2024
Automating Multi-Platform Tool Releases Using GitHub Actions
In this blog, we will explore how to leverage GitHub Actions for building and releasing tools written in languages such as Go, Python, Rust, and more and this will help you master the process of creating your tools binary releases that meet multi-pla…
By Hare Krishna Rai | Dec 18, 2024
Building django-tomselect
Dynamic form selection widgets with autocomplete can transform how users interact with your application. They make navigating through long lists of options faster and more intuitive, and when paired with multi-column support, they provide the clarity…
By Jack Linke | Dec 18, 2024
Extract Annotations from PDF Files in Python Like a Pro
Annotations in PDFs provide valuable context, clarify viewpoints, and often contain crucial information, such as detailed explanations or comments related to the content. Manually extracting them can be time-consuming, especially when dealing with la…
By Casie Liu | Dec 16, 2024
How I built Stock Stalker ?
Story Behind Stock Stalker
Back in 2020, when the world went into lockdown and everyone was stuck at home, I, like many others, found myself exploring new hobbies. The stock market was everywhere—on the news, social media, and even group chats. Peopl…
By Yash Brid | Dec 18, 2024
Guide Complet : Manipulation des Fichiers et Web Scraping en Python (Avec Exemples Concrets)
Python est un langage puissant pour traiter des fichiers (texte, JSON, etc.) et extraire des données en ligne (web scraping). Ce guide couvre deux aspects essentiels pour les développeurs modernes : manipuler des fichiers efficacement et scraper des …
By Fabrice Sangwa | Dec 18, 2024
My Python Learning Journey: Week 5 – Steps I Took, Problems I Faced, and How I Solved Them.
Hey everyone, in this week, I learned about the following Python concepts:
Type Hints.
Exception Handling.
if __name__ == “__main__”
Global Keyword.
Enumerate( ) Function.
List comprehension.
Newly Added Python Features: Walrus Operator (:=) …
By Sheikh Abdul Wahid | Dec 18, 2024
Needle in a haystack: How we found and solved a memory leak in our integration framework
Introduction
Memory leaks are a source of frustration for software engineers. They hide in the depths of complex codebases, manifesting subtly but growing steadily until they disrupt the entire system.
This was precisely the situation we faced in our…
By Tal Sabag | Dec 18, 2024
What is WSGI? Why is this needed for running apps in production?
This blog is written by Jeremy Rivera at KushoAI. We're building the fastest way to test your APIs. It's completely free and you can sign up here.
What is WSGI?
As a web developer doing much more work with Python, I’ve recently found deployment trick…
By Sakshi from KushoAI | Dec 18, 2024
How to connect to AWS OpenSearch or Elasticsearch clusters using python
Connecting to an OpenSearch (ES) service running in AWS using Python is painful. Most examples I find online either don't work or are outdated, leaving me constantly fixing the same issues. To save time and frustration, here’s a collection of working…
By Lucy Linder | Dec 18, 2024
Optimise AWS Costs: Automate Unused EBS Snapshot Cleanup with Lambda
💡 Introduction
Welcome to the world of DevOps! Today, we’ll dive into an exciting cost optimisation project that tackles a common challenge faced by AWS users—managing unnecessary EBS snapshots. In this project, we’ll create a Python program that au…
By Pravesh Sudha | Dec 18, 2024
Bringing Alice to Life in 7 Days
Github repo
This is an in-depth presentation of my final project at Ironhack AI Engineering Bootcamp, November 2024.
Meet Alice, your personal AI Librarian! Alice isn’t just any chatbot — she’s a next-lev…
By Alexandre Donciu-Julin | Dec 18, 2024
Exploring the World of Car Rental Management: Building a Python Application
Part 35: Managing Feature Releases and System Upgrades
As your car rental management system grows, introducing new features and upgrading the system will become an essential part of its lifecycle. This installment focuses on strategies for managing f…
By Bryan Samuel James | Dec 18, 2024
Mastering Order Processing Systems: A Comprehensive Guide to Building Efficient Business Solutions with Python
Part 6: Creating the User Interface – Introduction to Tkinter
Introduction
A user-friendly interface is a cornerstone of any successful application, and our order processing system is no exception. To achieve this, we will use Tkinter, Python’s stand…
By Bryan Samuel James | Dec 18, 2024
Day 12 of My 100-Day DevOps Challenge:
Introduction to Python Programming
Python is one of the most widely used programming languages in the DevOps community. It’s known for its simplicity and readability, making it an ideal language for automating infrastructure, deploying applications, …
By Thay | Dec 18, 2024
Exploring Residual Networks (ResNet): A Breakthrough in Deep Learning
Overview
The paper “Deep Residual Network for Image Recognition”, authored by aiming He, Xiangyu Zhang, and others in 2015, introduce new CNN-based architecture known as ResNet This paper became one of the breakthrough in the development of deep lear…
By Fadhil Elrizanda | Dec 18, 2024
SOLID Principles for NetDev Engineers
Tech Gauge:
🟩🟩🟩⬜⬜ (3/5)
This article is moderately technical and suitable for readers with some background in Python and OOP.
I dare say the typical background of today's Network Automation Developer looks like this:
A network geek who knows ser…
By André Lima | Dec 18, 2024
3 Steps to Convert Text to Word or Word to Text in Python
The conversion between text and Word documents is common in both business and life. For instance, you might need to create a well-structured Word report with images and text from a plain text file or extract only the text from a Word document for lig…
By Casie Liu | Dec 17, 2024
Tutorial: Building a Birthday Reminder Script in Python
Have you ever forgotten a friend's birthday and then had to go through an awkward conversation later on? Well fear not, I got you! With Python, you can create a simple yet effective script to ensure you are the first person to wish the next year or a…
By Mohammad Ariful Islam | Dec 17, 2024
From Branches to Forests: Decision Trees and Random Forests in Python
In an era where data guides our decisions, the ability to derive meaningful insights from complex datasets is crucial. Machine learning offers powerful tools to achieve this, and among these, Decision Trees and Random Forests stand out for their uniq…
By Jyotiprakash Mishra | Dec 19, 2024
Solving 'Final Array State After K Multiplication Operations' : Leetcode Solution
In this article, we will discuss a solution to the LeetCode problem "Final Array State After K Multiplication Operations". This problem challenges us to repeatedly multiply the smallest element in an array by a given multiplier and return the final s…
By VISHWANATH T S | Dec 19, 2024
Redis Cache: The Complete Guide to High-Performance Caching
Introduction
In today's digital landscape, application performance is crucial for user experience and business success. Enter Redis (Remote Dictionary Server), an open-source, in-memory data structure store that has revolutionized the way we handle c…
By Vedant Sagolale | Dec 19, 2024
Boto3: Python's AWS Interaction Powerhouse for DevOps
Introduction to Boto3
Boto3 is a powerful Python package that allows developers and DevOps engineers to interact programmatically with AWS services. It simplifies the process of creating, managing, and automating AWS resources through Python scripts….
By Amulya | Dec 19, 2024
How to Set Up a Django Frontend: A Complete Tutorial
Previous Related Blog : How to Use Django Admin and Models: A Beginner's Guide
Prerequisites:
To access the frontend files, go to my GitHub repository, download the zip file containing the Starter-kit, and extract it as follows:
Download the starte…
By Rohit Rajput | Dec 19, 2024
From Python to Cybersecurity: My Journey Through Tech and IT
Short history of my IT and Tech journey
I’ve started with an intense 9 months course – Python from Scratch.
The course was taken remotely. On weekends, we (the students) joined online Zoom meetings with our teacher.
I had practice with SQL, Git (Gi…
By Jonas Satkauskas | Dec 19, 2024
Python Socket Programming: A Comprehensive Guide for Network Applications
Introduction
Socket programming is a fundamental technology that powers much of today's internet and network communications. This comprehensive guide will explore Python's socket programming capabilities, from basic concepts to practical implementati…
By Ashutosh Rath | Dec 19, 2024
[Python] How Closures and Decorators in Python Work Together to Simplify Code
What Is Closure?
A closure is created when a function (the inner function) is defined within another function (the outer function) and the inner function references variables from the outer function.
def func1():
a = []
def func2(v):
…
By Lim Woojae | Dec 19, 2024
Top Python Web Scraping Libraries-2025
Introduction
Web Scraping is a powerful technique used to extract data from websites, and Python offers several libraries that make this process efficient and straightforward. Whether you are looking to scrape static pages or handle dynamic content, …
By Lucy | Dec 19, 2024
How to Build a Honeypot: A Practical Guide to Security Deception
In cybersecurity, a honeypot is a decoy system that’s designed to attract and then detect potential attackers attempting to compromise the system. Just like a pot of honey sitting out in the open would attract flies.
Think of these honeypots as secur…
By Chaitanya Rahalkar | Dec 19, 2024
Day-15 of #90DaysOfDevOps
Basics of Python for DevOps Engineers
Welcome to Day 15 of my #90DaysOfDevOps journey! Today, we dive into Python basics, covering its installation across various operating systems and a detailed look at its built-in data types.
What is Python?
Pyth…
By Amitabh soni | Dec 19, 2024
React vs. Vue vs. Svelte: The Ultimate Guide to Choosing the Best Framework for 2024
Chapter 1: Choosing the Right JavaScript Framework
Research the frameworks:
Compare React, Vue, and Svelte based on project requirements (e.g., flexibility, learning curve, performance).
Consider React if you need flexibility and a large ecosystem…
By Rave Entertainment Hub | Dec 19, 2024
What is ORM and How it is Helpful to Us?
Introduction to ORM
Imagine you’re a developer managing a complex web application for an e-commerce platform. You’re dealing with tons of data: customer records, order details, inventory management, and more. Each day, you write SQL queries to insert…
By Tarun Sharma | Dec 19, 2024
Debunking myths about Ruby
We’ve been reading and hearing a lot of criticism of Ruby and Ruby on Rails since we began working with them back in 2010. In this post, we will try and debunk four widespread myths about Ruby.
A bit of context
Ruby is an interpreted language designe…
By Sinaptia | Dec 19, 2024
Supercharge Your Python Logs with Annotated Logger
Logging is crucial for debugging, monitoring, and analyzing application behavior. However, basic logging often lacks the context necessary for efficient troubleshooting, especially in complex systems. The annotated-logger Python package addresses th…
By Sylvester Das | Dec 19, 2024
Design Logging library like log4j – Machine Coding
Features Required
Logging Levels: Logging should support multiple levels like DEBUG, INFO, WARN, ERROR, and FATAL.
Helps filter messages based on severity.
Ensures flexibility to control verbosity.
High Performance:
Must handle 1 million concu…
By Subhahu Jain | Dec 19, 2024
Top 20 Python API Frameworks with OpenAPI Support
It seems like every month, a new Python web framework is launched – with a new set of features, better performance, or a cleaner syntax than its predecessors. One feature that often gets ignored, however, is OpenAPI support. We've talked at great len…
By Adrian Machado | Dec 20, 2024
Korrektor: Wie KI Clean Code zugänglich macht
Die Idee kam spontan: "Wie viel kann man in nur 30 Minuten mit modernen KI-Tools erreichen?". Die Antwort: mehr als erwartet. Mit Korrektor entstand ein funktionaler Prototyp – ein Tool, das Code analysiert und basierend auf den Prinzipien von Clean …
By Torben Haack | Dec 20, 2024
Convert Excel to SVG in Python Like a Pro | Guide
At first glance, Excel spreadsheets and SVG files might not seem related. Yet, there are situations where you need to convert an Excel table into SVG format—for instance, when you want to display Excel-generated data on a website or other visual plat…
By Casie Liu | Dec 20, 2024
Risk-Free Arbitrage on Algorand
Introduction
Arbitrage is the simultaneous purchase and sale of the same or similar asset in different markets in order to profit from tiny differences in the asset’s listed price.
Source: Arbitrage: How Arbitraging Works in Investing, With Examples…
By Alexander Codes | Dec 20, 2024
Optimizers in Deep Learning
Optimizers play a crucial role in the training process of deep learning models. They are algorithms or methods used to adjust the parameters of a neural network, such as weights and biases, to minimize the loss function. This article delves into the …
By Rohit Paul | Dec 20, 2024
Convert Markdown to Word and Word to Markdown in Python: Quickly and Easily
Markdown, a lightweight markup language, is ideal for online publishing and widely supported by text editors. Word documents, however, excel in creating professional, polished reports. Often, you may need to switch between these two formats—like turn…
By Casie Liu | Dec 20, 2024
Building Scalable Applications with Django and Next.js: A Full-Stack Guide
Introduction:
As a Senior Full Stack Engineer and Product Lead at Zettaworks Technologies, I’ve had the opportunity to build scalable applications that solve real-world problems. One of my most notable projects is Qomuniti, a platform for estate safe…
By Chidozie Managwu | Dec 20, 2024
Mistral 7B – InDepth Paper Presentation
I had the opportunity to dive into the Mistral 7B paper and present it recently for a job interview. This is a recap of my presentation, covering the following topics:
🌟 Model Overview: Release context and promises
🧠 Architecture: Key design choi…
By Alexandre Donciu-Julin | Dec 20, 2024
QuickTest: Switching Between Fabric Python And PySpark Notebooks
File this under a test I have been wanting to do for some time. If I am exploring some data in a Fabric notebook using PySpark, can I switch between Python and PySpark engines with minimal code changes in an interactive session? The goal is to use th…
By Sandeep Pawar | Dec 20, 2024
Enforcing Best Practices in Python Modules with `flake8-all-not-strings`
Ensuring that the __all__ attribute in your Python modules contains only strings is crucial for maintaining clear and error-free code. The flake8-all-not-strings plugin for Flake8 helps enforce this best practice by identifying any non-string entries…
By Gaurav Gupta | Dec 21, 2024
OOPs principles in Python
In this blog, I will discuss Object-Oriented programming concept using python. OOPs is a programming paradigm which is centered around the classes and objects. classes serve as blueprints that encapsulates data (attributes) and functions (methods) an…
By spandana patil | Dec 21, 2024
How to Deploy Django on Vercel?
Recently I consulted a client where I helped him deploy his django application on vercel successfully. So, I thought of documenting this process so as to help you deploy your django application on vercel for free.
Step 1: Add a vercel.json Configurat…
By Rhythm Rawat | Dec 21, 2024
PydanticAI: Crafting Intelligent Agents with Ease
Introduction
In the rapidly evolving landscape of artificial intelligence, the ability to build robust, production-grade applications with generative AI is becoming increasingly essential. Enter PydanticAI, a Python agent framework designed to simpli…
By Nikhil Akki | Dec 21, 2024
Solving Leetcode 2872: Find the Maximum K-Divisible Components
Leetcode Question Link: https://leetcode.com/problems/maximum-number-of-k-divisible-components/description/
Intuition
Initially, I thought of approaching it with array and tree traversal but didn't think of any other method. I got struck on how to pr…
By Kumar Spandan Pattanayak | Dec 21, 2024
Automating JIRA Ticket Creation with a Flask API: A GitHub Webhook Integration Guide
💡 Introduction
Welcome to the world of DevOps! Today, we are diving into an exciting project that bridges Jira and GitHub for seamless integration. The goal of this project is to automate the creation of Jira tickets directly from GitHub issue comme…
By Pravesh Sudha | Dec 21, 2024
Bookify Extension: Simplifying Cross-Browser Bookmarking.
Managing bookmarks across multiple browsers can be a hassle. With browsers storing bookmarks locally, switching between Chrome, Edge, Brave or other browsers and different devices often results in duplicated or missing links. To solve this problem, I…
By Rujan Tandukar | Dec 21, 2024
Part 3 – the grocery list program: lists, dictionaries, and loops
« Previous article
We'll create a program to simulate a grocery list. Users can add items, remove them, and print their grocery list on the screen.
First version: general outline
Let's start by creating an outline for our program. It will contain a v…
By Had Will | Dec 21, 2024
Python: Why Quart Might Be the Better Choice over FastAPI
Python's diverse ecosystem of web frameworks offers developers a wide range of choices for building robust and efficient applications. In the realm of asynchronous frameworks, Quart and FastAPI have emerged as popular options. While FastAPI has gaine…
By Shailendra Singh | Dec 21, 2024
Building Bookmark Sync Extension with Django and JavaScript.
Managing bookmarks across multiple browsers can be a hassle. With browsers storing bookmarks locally, switching between Chrome, Edge, Brave or other browsers and different devices often results in duplicated or missing links. To solve this problem, I…
By Rujan Tandukar | Dec 21, 2024
Predicting gold prices with SARIMAX
I had a little fun with data from the St. Louis Fed (FRED). Note: not investment advice
I collected 54 years of gold price data starting 9/30/71 (end of the US federal government fiscal year after gold was allowed to float). I also collected the 10-y…
By Keith Winston | Dec 22, 2024
Mastering RAG: Guide to Retrieval-Augmented Generation in Python
Introducing RAG
Have you ever wondered how AI systems seem to recall knowledge so well? Enter Retrieval-Augmented Generation (RAG), a cutting-edge approach that combines large language models with external data for enhanced performance. In this blog …
By DeDevs | Dec 22, 2024
“with” in Python: The Secret to Cleaner Resource Management✨
If you've ever found yourself juggling file handles, database connections, or network sockets in Python, you know how easy it is to forget to close them properly. with is with you for situation just like this 😉
What is the with Statement?
The with …
By Dhruvi Shah | Dec 22, 2024
Fraud Detection using Machine Learning
The banking industry processes billions of transactions daily, making it a major target for fraudulent activities. Traditional fraud detection methods—rule-based systems, manual reviews by fraud analysts, or static thresholds with fixed limits—often …
By Bhoomika Lohana | Dec 22, 2024
Implementing a Password Strength Checker in Python
Passwords are the frontline of security for digital systems, yet many users still rely on weak passwords. To help promote better password practices, we’ll build a simple but effective password strength checker in Python. This blog will guide you thro…
By Yaakulya | Dec 22, 2024
Convert Sorted Array to Binary Search Tree : Leetcode Solution.
Problem Statement
You are given an integer array nums where the elements are sorted in ascending order. Convert it into a height-balanced binary search tree. The problem can be found on LeetCode.
Intuition
The first thought is that a binary search t…
By VISHWANATH T S | Dec 22, 2024
Python Web Apps and Free Deployment Methods — a Handy Resource
When I started exploring Python web app frameworks, I often found myself bouncing between documentation, deployment guides, and examples. So, I created a Google Sheet that gathers popular Python web app frameworks, learning resources, free deployment…
By Shantala Mukherjee | Dec 22, 2024
#406 – Matthias
Object-based assets for Django's forms.Media
Object-based assets for Django’s forms.Media
The pull request for adding object-based script media assets into
Django is in a good state and I
hope it will be merged soon. I have been using object-based assets long before
Django actually added …
By Matthias Kestenholz | Dec 18, 2024
Weeknotes (2024 week 51)
Weeknotes (2024 week 51)
Building forms using Django
I last wrote about this topic in April. It has resurfaced on Mastodon this week. I’m thinking about writing a feincms3-forms demo app, but I already have too much on my plate. I think composi…
By Matthias Kestenholz | Dec 20, 2024
#Python Software Foundation
Do you know the PSF's next sponsor?
By Loren Crary | Dec 17, 2024
Announcing Python Software Foundation Fellow Members for Q3 2024! 🎉
By Marie Nordin | Dec 18, 2024
PSF Grants: Program & Charter Updates (TLDR)
By Marie Nordin | Dec 19, 2024
PSF Grants: Program & Charter Updates (Part 3)
By Marie Nordin | Dec 19, 2024
PSF Grants: Program & Charter Updates (Part 2)
By Marie Nordin | Dec 19, 2024
PSF Grants: Program & Charter Updates (Part 1)
By Marie Nordin | Dec 19, 2024
#Dev.to
Advent of Code 2024 – Day 14 : Restroom Redoubt
#adventofcode #python
By Grant Riordan | Dec 16, 2024
Flowers102 in PyTorch
#python #pytorch #flowers102 #dataset
By Super Kai (Kazuya Ito) | Dec 16, 2024
My Python Language Solution to Task 1 from The Weekly Challenge 299
#theweeklychallenge #perl #python #raku
By Robert McIntosh | Dec 16, 2024
📊 AI Dashboard Builder: Create Insightful Dashboards just Droppping your Data
#dataengineering #datascience #llm #python
By Pablo | Dec 16, 2024
Playing with a Stock API: A JavaScript/React Developer Learns Python
#python #api #dataanalysis #stockmarket
By Jesse Chong | Dec 16, 2024
Python Day-22 String Functions logic using loops, Recursion, Tasks
#payilagam #python #string #loops
By Guru prasanna | Dec 16, 2024
Build an API to Keep Your Marketing Emails Out of Spam
#python #marketing #seo
By H4cker | Dec 16, 2024
Application and development of proxy IP in the AI era
#ai #proxyip #python
By 98IP 代理 | Dec 16, 2024
StanfordCars in PyTorch
#python #pytorch #stanfordcars #dataset
By Super Kai (Kazuya Ito) | Dec 16, 2024
Getting Started with Python: Why and How to Learn This Amazing Language
#beginners #opensource #basic #python
By Dohal Islam | Dec 16, 2024
Diary App, memories AI integration
#ai #django #api #gemini
By Saad Alkentar | Dec 16, 2024
AISuite: Simplifying GenAI integration across multiple LLM providers
#python #genai #beginners
By Vishnu Sivan | Dec 16, 2024
Design Patterns: Your Secret Weapon in Software Engineering
#designpatterns #developer #softwaredevelopment #python
By Biswajit Patra | Dec 16, 2024
Boost Your Productivity: 7 Python Libraries Every Developer Should Know 🚀🐍
#python #tooling #coding #webdev
By Crypto.Andy (DEV) | Dec 16, 2024
The ultimate guide to Retrieval-Augmented Generation (RAG)
#python #rag #genai #beginners
By Vishnu Sivan | Dec 16, 2024
Everything You Need to Know About LLMs Observability and LangSmith
#webdev #datascience #python #programming
By Adipta Martulandi | Dec 16, 2024
How to Create Your Own RAG with Free LLM Models and a Knowledge Base
#python #ai #rag #vectordatabase
By Alexander Uspenskiy | Dec 16, 2024
Why Rewriting Everything in Rust Won’t Solve All Your Problems
#rust #programming #javascript #python
By PRANTA Dutta | Dec 16, 2024
Introducing uv: Next-Gen Python Package Manager
#python
By Vishnu Sivan | Dec 16, 2024
In my Problem Solving Journey
#beginners #python #productivity #learning
By Karthika Movva | Dec 17, 2024
My Problem Solving Experience
#beginners #python #productivity #learning
By Karthika Movva | Dec 17, 2024
Problem Solving Experience
#beginners #python #productivity #learning
By Karthika Movva | Dec 17, 2024
Get Started with Python
#python #beginners #tutorial #programming
By Jeremy Morgan | Dec 17, 2024
Advent of Code 2024 – Day 15: Warehouse Woes
#python #adventofcode
By Grant Riordan | Dec 16, 2024
How to containerize Django application with Docker compose
#django #docker #nginx #tutorial
By Shakhzhakhan Maxudbek | Dec 16, 2024
Generate audio clips with Gemini 2.0 Flash
#ai #python #api #machinelearning
By Wesley Chun (@wescpy) | Dec 16, 2024
Improving memory efficiency in a working interpreter
#rust #python #programming
By Jones Beach | Dec 16, 2024
Using Managed Identities for Secure Cross-Service Communication in Azure
#microsoft #azure #python #cloud
By Marco Platzer | Dec 17, 2024
Forecast anything without the ML hustle.
#machinelearning #ai #python #datascience
By Dominik Safaric | Dec 17, 2024
AI Pronunciation Trainer
#python #javascript #pytorch #machinelearning
By Alessandro T. | Dec 17, 2024
AI Pronunciation Trainer
#python #machinelearning #javascript #pytorch
By Alessandro T. | Dec 17, 2024
Code Better, Debug Smarter: Tips Every Developer Needs
#programming #beginners #productivity #python
By 0x3d Site | Dec 17, 2024
Building AI-Powered Real-Time Object Detection with OpenCV, Flask, Gemini Vision, and GitHub Actions CI/CD on AWS EC2
#webdev #ai #devops #python
By Toyyib Muhammad-Jamiu | Dec 17, 2024
Building a Fantasy Player Analysis Tool Using Python
#python #datascience #programming #sideprojects
By b c | Dec 17, 2024
Practical Application of Proxy IP in Machine Learning
#proxy #ai #python
By 98IP 代理 | Dec 17, 2024
Building a Local AI Code Reviewer with ClientAI and Ollama – Part 2
#llm #ai #python
By Igor Benav | Dec 17, 2024
Building a Local AI Code Reviewer with ClientAI and Ollama
#llm #ai #python
By Igor Benav | Dec 17, 2024
My Python Language Solution to Task 1: Beautiful Arrangement from The Weekly Challenge 300
#theweeklychallenge #python #perl #raku
By Robert McIntosh | Dec 17, 2024
Building a Local AI Task Planner with ClientAI and Ollama
#llm #python #ai #opensource
By Igor Benav | Dec 17, 2024
Sorting Algorithms || Python || Data Structures and Algorithms
#python #algorithms #interview #tutorial
By Rishab Trivedi | Dec 17, 2024
How to Learn Python From Scratch in 2025: An Expert Guide
#python #training #education #course
By Ellis Velly | Dec 17, 2024
Python Day-23 Lists and list functions,Task
#payilagam #python #list #functions
By Guru prasanna | Dec 17, 2024
Mastering Daytona Integration in Python: A Detailed Step-by-Step Guide 🚀
#webdev #python #daytona #reflex
By Vraj Chaudhari | Dec 17, 2024
Need Guidance: Is Django a Good Choice for Building My Portfolio and Landing an Internship?
#django #webdev #discuss #help
By Bukkuru Syam | Dec 17, 2024
Two-Factor Authentication System
#python #security #tutorial #development
By Rahul Varma | Dec 17, 2024
Password Hashing in Python
#python #security #development #tutorial
By Rahul Varma | Dec 17, 2024
How to Use Typing Module to Annotate Function Definition with Input and Output Types in Python
#baezley #python #racket
By Pavol Z. Kutaj | Dec 17, 2024
day-23 at payilagam [Lists]
#python #lists #new
By Kuhanraja A R | Dec 17, 2024
How to Validate Rectangular Images in Django Using Python
#python #django
By Vicente G. Reyes | Dec 17, 2024
Introduction to Textual: Building Modern Text User Interfaces in Python
#python #tui #programming #textual
By Developer Service | Dec 17, 2024
5 Powerful Python Data Validation Techniques for Robust Applications
#programming #devto #python #softwareengineering
By Aarav Joshi | Dec 17, 2024
Building SaaS Faster with Ercas for SaaS: A Template for Indie Hackers
#saas #python #webdev #fullstack
By Edun Rilwan | Dec 17, 2024
Using Python to Analyze Genomic Data for Personalized Medicine
#python #programming #machinelearning
By Vaishali | Dec 17, 2024
👋🏻Goodbye Power BI! 📊 In 2025 Build AI/ML Dashboards Entirely Within Python 🤖
#datascience #data #machinelearning #python
By Rym | Dec 17, 2024
Decorators & Class Property in Python
#python #oop #developer
By Elchonon Klafter | Dec 17, 2024
Convert Emojis to Text in SMS with Infobip: A Step-by-Step Guide
#python #productivity #programming #webdev
By oteri | Dec 17, 2024
My Python Language Solution to Task 2: Nested Array from The Weekly Challenge 300
#theweeklychallenge #python #perl #raku
By Robert McIntosh | Dec 18, 2024
Automating Debian Package Update Summaries with Python and Gemini (gemini-1.5-flash)
#python #devops #ai #debian
By Everton Tenorio | Dec 18, 2024
Understanding Pagination with NewsDataHub API
#api #python #data #webdev
By olga s | Dec 18, 2024
The Kth factor of N – an O(sqrt n) algorithm
#interview #beginners #algorithms #python
By AlvBarros | Dec 18, 2024
Birthday Cake Candles – HackerRank Problem Solving
#algorithmssolutions #python #hackerrank #easylevel
By Deepak Raj | Dec 18, 2024
AI-Powered Graph Exploration with LangChain's NLP Capabilities, Question Answer Using Langchain
#llm #python #chatgpt #openai
By Deepak Raj | Dec 18, 2024
3 Python Projects to Kickstart Python Learning
#python #devops #coding #programming
By Pravesh Sudha | Dec 18, 2024
Optimizing Geometric Overlap Detection: A Deep Dive into Spatial Indexing with Python
#python #geospatial #data
By Denny Danuwijaya | Dec 18, 2024
Hacking the Python Import System and Rewriting the AST For Durable Execution
#python #opensource #webdev #programming
By haimzlato | Dec 18, 2024
How to connect to AWS OpenSearch or Elasticsearch clusters using python
#python #aws #todayisearched #elasticsearch
By Lucy Linder | Dec 18, 2024
Optimise AWS Costs: Automate Unused EBS Snapshot Cleanup with Lambda
#devops #aws #python #cloudcomputing
By Pravesh Sudha | Dec 18, 2024
PROJECT-991 ( MASH AI )
#ai #nlp #python #devops
By Mayank Chawdhari | Dec 18, 2024
TableSavvy ( MYSQL DATABASE MANAGEMENT SOFTWARE )
#webdev #mysql #python #database
By Mayank Chawdhari | Dec 18, 2024
Automatic Files Generator Python
#webdev #javascript #programming #python
By Mayank Chawdhari | Dec 18, 2024
PyApiGen Python Program
#python #user #api #programming
By Mayank Chawdhari | Dec 18, 2024
Video data IO through ffmpeg subprocess
#python #ffmpeg #mpegts #asynchronousprogramm
By Choon-Siang Lai | Dec 18, 2024
🗞 Rapyd Developer Newsletter: December 2024 💰 From API Security to Global FX: Must-Know Dev Tools This Month
#rapydnews #payments #webdev #python
By Drew Harris | Dec 18, 2024
Tareas repetitivas
#python
By José Manuel Tena | Dec 18, 2024
Find and Fix N+1 Queries in Django Using AppSignal
#django #python
By Nik Tomazic | Dec 18, 2024
Como criar um projeto iniciante em análise de dados
#dataanalysis #tableau #python #sql
By vikttu | Dec 18, 2024
Deploy your Discord Bot using Amazon EC2
#python #discord #aws #ec2
By Gen Benedict Casio | Dec 18, 2024
How do I create a class system in my programming language
#python #ajuda #oop #programming
By Jhonata Rios | Dec 18, 2024
Python Unleashed: Three Cutting-Edge Learning Paths for Modern Developers
#getvm #python #programming #tutorials
By GetVM | Dec 18, 2024
Datasets for Computer Vision (5)
#python #pytorch #dataset #computervision
By Super Kai (Kazuya Ito) | Dec 18, 2024
The Art of Naming in Programming: Why Good Names Matter!
#programming #python #cleancode #webdev
By Abu Bakar Siddik | Dec 19, 2024
AI-Powered PR Review Bot – Looking for Contributors!
#opensource #python #contributorswanted #webdev
By Asaf Ben Shabat | Dec 18, 2024
Dirty Code: Simple Rules to Avoid It
#coding #programming #python #javascript
By Kaan Kaya | Dec 18, 2024
Débusquer les Goulots d'Étranglement Django : Une Analyse Approfondie avec Django-Silk
#webdev #django #python #terraform
By Dominique Megnidro | Dec 18, 2024
zip in Python
#python #zip #for #iterable
By Super Kai (Kazuya Ito) | Dec 19, 2024
What I'd do differently in Bootcamp. (spoiler: Everything)
#python
By Alexander McMillan | Dec 19, 2024
Playing with a Stock API: A JavaScript/React Developer Learns Python
#api #stockmarket #dataanalysis #python
By Jesse Chong | Dec 19, 2024
Integrate the zip.zax Sales Tax API in Your Python App
#python #api #salestax #programming
By hi | Dec 19, 2024
Master Python with the Best Python Institute in Delhi
#python #pythoninstitute #pythoncourse #ai
By Daksh Kataria | Dec 19, 2024
What is Python end= Command
#python #oop #programming
By zehra hindioğlu | Dec 19, 2024
Unlock Your Creativity: 6 End-to-End Python Projects Using Open-Source APIs
#python #startup #opensource
By Abhiraj Adhikary | Dec 19, 2024
HOCON – secret behind .conf files
#python #pyhocon #tooling #productivity
By sriram sridhar | Dec 19, 2024
Python Day-24 List Functions
#payilagam #python #list #coding
By Guru prasanna | Dec 19, 2024
Top 20 Python API Frameworks with OpenAPI Support
#python #api
By Adrian Machado | Dec 19, 2024
Hacking Python functions by changing their source code
#python #pikotutorial #security #coding
By pikoTutorial | Dec 19, 2024
Getting Started with Python: Why and How to Learn This Amazing Language
#beginners #opensource #basic #python
By Dohal Islam | Dec 19, 2024
Day 21- String Functions
#python #payilagam #string #function
By Lakshmi Pritha Nadesan | Dec 19, 2024
enumerate in Python
#python #enumerate #for #iterable
By Super Kai (Kazuya Ito) | Dec 19, 2024
Aprende a programar con Python y Thonny 🐍
#spanish #python #thonny
By Sergio U | Dec 19, 2024
Can AI finally generate best practice code? I think so.
#ai #dataengineering #python
By Quinton | Dec 20, 2024
De cero a Ingeniero de Software
#python #softwareengineering #career #careerdevelopment
By Victor A. | Dec 20, 2024
Day 22- String Functions and Recursion
#python #payilagam #string #function
By Lakshmi Pritha Nadesan | Dec 20, 2024
Always is best I am accepting predict through ML with python research and coding challenge
#frontendchallenge #devchallenge #css #python
By Iqra Irfan | Dec 20, 2024
Django project – Part 5 Dev Tools
#marimo #djangobrowserreload #djangoextensions #django
By Pedro Campos | Dec 20, 2024
Police Department Management Simulator
#python #codenewbie #mentorship #beginners
By Dillon Honore | Dec 20, 2024
Column Lineage for sql DDLs
#python #sql #discuss
By Vijay Mailaram | Dec 20, 2024
range in Python
#python #range #for #function
By Super Kai (Kazuya Ito) | Dec 20, 2024
Python Day-25 List functions, Tasks
#payilagam #python #list #function
By Guru prasanna | Dec 20, 2024
Build Your YouTube Video Transcriber with Streamlit & Youtube API's 🚀
#webdev #python #streamlit #showdev
By Jagroop Singh | Dec 20, 2024
Using AWS Lambda as data processing for any IoT project.
#python #mqtt #aws #beginners
By Ken Cameron | Dec 20, 2024
Complete Python Logging Guide: Best Practices & Implementation
#webdev #programming #tutorial #python
By Alexandr Bandurchin | Dec 20, 2024
8 Powerful Python Testing Strategies to Elevate Code Quality
#programming #devto #python #softwareengineering
By Aarav Joshi | Dec 20, 2024
Strings in Python: Indexing and Slicing for Beginners
#python #programming #beginners #tutorial
By Job Ready Programmer | Dec 20, 2024
Python: A Comprehensive Overview in One Article
#python #flask #webdev #machinelearning
By Abhay Singh Kathayat | Dec 20, 2024
You know when you've been Wordled…
#beginners #python
By matt_k | Dec 20, 2024
How to Build a Face Mask Detection System: A Practical Guide for Beginners
#ai #python #webdev #javascript
By Chidozie Managwu | Dec 20, 2024
Deploy a Django App from GitHub on AWS Lightsail Using the Bitnami Django Stack
#aws #django #cloud #python
By Alyssa Mhie Matila | Dec 20, 2024
Turn GitHub profiles into auto-updating portfolios using AI
#webdev #opensource #python #github
By SUNITH VS | Dec 20, 2024
This Runtime Meta-Programming Pattern in Python is Interesting
#python #computerscience #designpatterns
By Ahmed Rakan | Dec 20, 2024
Why Python is the Language of Choice for Developers
#python #machinelearning #datascience #automation
By Abhay Singh Kathayat | Dec 20, 2024
How to create own Python project in 5 minutes
#python #programming #docker #devops
By GU aka Matteo Guadrini | Dec 20, 2024
This Week In Python
#thisweekinpython #python
By Bas Steins | Dec 20, 2024
Automating Email Validation with Python: A Step-by-Step Tutorial
#python #regex
By Team mailfloss | Dec 20, 2024
How to make an AI agent with OpenAI, Langgraph, and MongoDB 💡✨
#mongodb #python #langchain #openai
By zpillsbury | Dec 20, 2024
Building a Cooking Expert AI Agent with Phidata and Django Rest Framework (DRF)
#phidata #django #ai #aiagent
By Bidut Sharkar Shemanto | Dec 21, 2024
Unveiling Python 3.12: A Leap Forward in Programming Excellence
#python
By JetThoughts Dev | Dec 21, 2024
Carla Simulator 2 : Welcome to the Ride, Brian Cooper Here! 🚗🏍️
#carla #flask #python #simulation
By Mitansh Gor | Dec 21, 2024
Places365 in PyTorch
#python #pytorch #places365 #dataset
By Super Kai (Kazuya Ito) | Dec 21, 2024
Session Crashing
#ai #python #machinelearning #api
By Emmanuel Timothy | Dec 21, 2024
Introducing Altikrity: A Multi-Layer Encryption Library
#altikrity #python #security #programming
By Unknown | Dec 21, 2024
6 Advanced Python Context Managers for Efficient Resource Management
#programming #devto #python #softwareengineering
By Aarav Joshi | Dec 21, 2024
From Concept to Impact: A Journey Through My Fraud Detection Model
#frauddetection #machinelearning #datascience #python
By Blessing Angus | Dec 21, 2024
Stack and Queue || Python || Data Structures and Algorithms
#learning #python #programming #algorithms
By Rishab Trivedi | Dec 21, 2024
VizBlend: Solving the Challenge of Interactive Data Reporting with Python 🚀
#plotly #datascience #analytics #python
By Mahmoud Housam | Dec 21, 2024
Advent of Code 2024 – Day 19: Linen Layout
#python #adventofcode
By Grant Riordan | Dec 21, 2024
De cero a Ingeniero de Software
#python #softwareengineering #career #careerdevelopment
By L Rodríguez | Dec 20, 2024
Using Data to Drive Mental Health Outcomes
#programming #beginners #ai #python
By Pretty Soul | Dec 21, 2024
Automating JIRA Ticket Creation with a Flask API: A GitHub Webhook Integration Guide
#devops #python #programming #automaton
By Pravesh Sudha | Dec 21, 2024
Understanding Lambda, Map, and Filter in Python
#python #lambda #tutorial #learning
By Carlos Armando Moreira | Dec 21, 2024
Python Day-26 List comprehension-Exercises
#payilagam #python #list #comprehension
By Guru prasanna | Dec 21, 2024
How to run llama 405b bf16 with gh200s
#llm #cloud #python
By Luke Harold Miles | Dec 22, 2024
Handling Python event loop shutdown without exceptions
#python
By Talles L | Dec 22, 2024
Generating SECRET_KEY for production deployment of Django project
#python #django #security #secretkey
By Shakhzhakhan Maxudbek | Dec 22, 2024
Tips to learn python
#coding #python #machinelearning #django
By Mehfila A Parkkulthil | Dec 22, 2024
Six Triple Eight Redux: Fine-Tuning LLMs to Tackle Impossible Mail Mysteries of WWII
#webdev #llm #python #finetuning
By es404020 | Dec 22, 2024
Monte Carlo Laser Localization
#python #programming #softwareengineering
By Jorge Martin | Dec 22, 2024
RandomVerticalFlip in PyTorch
#python #pytorch #randomverticalflip #v2
By Super Kai (Kazuya Ito) | Dec 22, 2024
Title: Building a Grading System with Python:
#webdev #beginners #python #learning
By Bakare sukurat Aderonke | Dec 22, 2024
Weekend Tasks – List
#payilagam #python #task #list
By Guru prasanna | Dec 22, 2024
Working with XML in Python Requests library
#python #xml #requests #parsing
By Shakhzhakhan Maxudbek | Dec 22, 2024
RandomHorizontalFlip in PyTorch
#python #pytorch #randomhorizontalflip #v2
By Super Kai (Kazuya Ito) | Dec 22, 2024
Nested beauty
#perl #python #theweeklychallenge
By Simon Green | Dec 22, 2024
Используя цикл for и библиотеку черепашки, составьте алгоритм рисования звезды с 5-9 концами, на ваш выбор.
#python #programming #tutorial
By CraftBlockser | Dec 22, 2024
Webscraping com Python: usando CSV como base de dados
#beginners #tutorial #python #webscraping
By Vinicius Basilio | Dec 22, 2024
Steps to Create AI ML Solution
#machinelearning #ai #development #python
By Jaimin Bariya | Dec 22, 2024
A Journey into Machine Learning Simplification
#ai #machinelearning #python #computerscience
By Musharaf Hussain Abid | Dec 22, 2024
The Easiest Way to Package Your Python Files(Turn to .exe Files)
#python #programming
By SomeB1oody | Dec 22, 2024
#Daniel Roy Greenfeld Blogs
TIL: Using hx-swap-oob with FastHTML
How to have the injected content know where to go instead of assigning it from the form.
By Daniel Roy Greenfeld | Dec 18, 2024