#Real Python
Speed Up Your Python Program With Concurrency
In this tutorial, you'll explore concurrency in Python, including multi-threaded and asynchronous solutions for I/O-bound tasks, and multiprocessing for CPU-bound tasks. By the end of this tutorial, you'll know how to choose the appropriate concurrency model for your program's needs.
#advanced #best-practices
By – | Nov 25, 2024
Python Set Comprehensions: How and When to Use Them
In this tutorial, you'll learn how to write set comprehensions in Python. You'll also explore the most common use cases for set comprehensions and learn about some bad practices that you should avoid when using them in your code.
#intermediate #python
By – | Nov 27, 2024
What Does if __name__ == "__main__" Do in Python?
Learn how to use Python's if __name__ == "__main__" idiom to control code execution. Discover its purpose, mechanics, best practices, and when to use or avoid it. This tutorial explores its role in managing script behavior and module imports for clean and effective Python programming.
#intermediate #best-practices
By – | Nov 30, 2024
How to Check if a Python String Contains a Substring
In this tutorial, you'll learn the best way to check whether a Python string contains a substring. You'll also learn about idiomatic ways to inspect the substring further, match substrings with conditions using regular expressions, and search for substrings in pandas.
#basics #best-practices #python
By – | Dec 01, 2024
#PyCoders
Issue #657 – NumPy, Loop Targets, Vector Animation, and More
By – | Nov 26, 2024
#Python Library
Black Friday Python Deals 2024
Black Friday and Cyber Monday are nearly here, so it’s time to do a Python sale! All my books and courses are 35% off until December 4th if you use this code: BF24 at checkout. You can learn about any of the following topics in my books and courses: Basic Python (Python 101) PDF Processing […]
#Books #Python #Testing
By Mike | Nov 25, 2024
#Adam Johnson – Blogs
Django: fix a view using a debugger with
Python’s breakpoint() function opens its debugger, pdb, which pauses the program and allows you to inspect and modify things. Let’s look at an example of using it within a Django view, from a sample project included in Boost Your Django DX.
By Adam Johnson | Nov 26, 2024
Django: launch pdb in templates with a custom
In my recent Boost Your Django DX update, I added a new chapter on debuggers. Here’s an extra technique I didn’t finish in time for the update, but I will include it in the next one.
By Adam Johnson | Nov 28, 2024
#Hashnode
Use Django, Celery, and Redis to Automate CSV Data Import
In this small project, I Used Django, a Python Framework to build a robust application that imports any large CSV Dataset into a Table. The app allows you to specify which model you want to import data into, the application will check the header of t…
By Taufique iradukunda | Nov 25, 2024
Models And Databases
In Django, models are the core component for defining the structure of your data. They represent the database tables and act as a bridge between the database and your application. In Django, models are defined as Python classes, and Django uses these…
By Abhay Pratap Maurya | Nov 25, 2024
Automatización de Pruebas en Oracle APEX: Un Ejemplo Práctico con Python y Selenium
La automatización de pruebas es esencial para garantizar la calidad de las aplicaciones en entornos dinámicos como Oracle APEX. En este artículo, exploraremos cómo configurar y ejecutar pruebas automatizadas utilizando Selenium y Python, con una prue…
By Cristhian Cano Bogado | Nov 26, 2024
Building an llms.txt Generator
As a developer who's deeply interested in both web technologies and AI, I've been fascinated by how we can better connect these two worlds. That's why I created the llms.txt Generator – a tool that helps websites communicate their content more effect…
By Martin Bowling | Nov 25, 2024
Node.js vs Django: Choosing the Right Backend Framework
When it comes to backend development, two popular frameworks that often come to mind are Node.js and Django. Both have their strengths and weaknesses, and choosing the right one for your project can be a daunting task. In this article, we’ll delve in…
By Winner | Nov 25, 2024
Day 15 Essentials: Python Fundamentals for DevOps Engineers
Welcome, future DevOps rockstars! If you think Python is just for data scientists or web developers, think again! As a DevOps engineer, mastering Python is your secret weapon to automate tasks, create custom scripts, and solve problems faster than yo…
By Syed Dadapeer | Nov 25, 2024
Kicking Off My Coding Journey
A Little About Me
Hi there! I’m a 31-year-old living and working in the suburbs of Chicago. My background is in Manufacturing Engineering Technology, which I studied in college. Currently, I work in the foundry industry—also known as metalcasting. If…
By John Hambleton | Nov 25, 2024
An interpreter inside an interpreter
A few months into development, I decided my north star for Memphis would be to run a Flask server entirely within my interpreter. I had no idea how much work this would entail, only that it sounded cool and would probably teach me a lot along the way…
By Jones Beach | Nov 25, 2024
Week in Review: Python, PyTorch, and Building with Tkinter 🚀
This week, I took a deep dive into Python and PyTorch, while also exploring GUI development with Tkinter. It was an enriching journey where I not only learned core programming concepts but also applied them in a small project. Here’s a summary of my …
By AbuBakar khan lakhwera | Nov 25, 2024
Exploring the Magic of 432 Hz: Building a Music Frequency Analyzer
In the realm of music and sound, there's a fascinating debate about frequency that has captured the attention of musicians, historians, and scientists alike. At the heart of this discussion lies the number 432 Hz, often referred to as the "natural fr…
By Vicente Reyes | Nov 26, 2024
Why Python is the Ultimate Programming Language for Data Science
Data science is revolutionizing industries by uncovering actionable insights from raw data. To excel in this field, choosing the right programming language is crucial. Among the many options available, Python has firmly established itself as the go-t…
By pallavi chauhan | Nov 26, 2024
Mastering Tuples in Python: A Comprehensive Guide
Tuples are an essential data structure in Python, offering a convenient way to store ordered and immutable data collections.
In this blog, you’ll learn everything about tuples in Python, including creation, slicing, methods, and more.
Let’s jump righ…
By Shefali | Nov 26, 2024
Activity 41: Python Flask Hash
Setting up Activity 41 with the required endpoints for hash handling in Python Flask. This will include a POST and GET method for hashing, as well as login and register routes.
Set Up Your Flask Project
Create a New Project Folder:
mkdir nicolas_p…
By Walter John Salibay | Nov 26, 2024
Activity 40: Documentation of Python Flask Cookie
Documentation of Activity 39: Python Flask Cookies
What are Cookies?
Cookies are small pieces of data stored on the user's computer by the web browser while browsing a website. They are used to remember information about the user, such as login statu…
By Walter John Salibay | Nov 26, 2024
Activity 39: Python Flask Cookie
Implementation of a Flask application that handles cookies using both POST and GET methods as per the Activity 39 requirements.
Implementing Cookies in Flask
Step 1: Set Up Your Flask Project
Create a New Project Folder:
mkdir nicolas_python_flask…
By Walter John Salibay | Nov 26, 2024
Activity 38: Documentation of your Python .env and gitignore
What is a .env File?
A .env file is a straightforward text file that serves to store environment variables. Within a Flask application, it is typically used to safeguard sensitive information, such as:
Database credentials
API keys
Secret keys for…
By Walter John Salibay | Nov 26, 2024
Activity 37: Python Flask .env and gitignore
To complete this activity on using .env and .gitignore in a Python Flask project, set up a secure environment configuration and then push the project to GitHub:
Set Up a New Flask Project
Create a new project folder:
mkdir salibay_env_gitignore
…
By Walter John Salibay | Nov 26, 2024
How to Create a Number-Guessing Game in Python
Hello there! 👋
In this guide, you will learn how to build a number-guessing game using basic Python concepts, such as loops, if-else statements, handling inputs, and more. This is inspired by the Number guessing game project in the Roadmap projects …
By Sophia Iroegbu | Nov 26, 2024
Python Project: Building a Currency Converter.
Introduction:
In this project, I built a simple currency converter in Python that reads conversion rates from a .txt file and allows the user to convert an amount from INR to various currencies. This project helped me practice reading files, using d…
By Sheikh Abdul Wahid | Nov 26, 2024
ML Chapter 8.2 : Deep Learning
Welcome to Part 8.2 – Deep Learning! Deep Learning is the most exciting and powerful branch of Machine Learning.
If you're new to this blog, I strongly advise you to read the previous blogs because this one is quite advanced. Thank you!
Plan of attac…
By Fatima Jannet | Nov 26, 2024
GhostLLM: Creating the DBus server with Ollama integration
Hello,
This is part two of my GhostLLM project. This project is about integrating “Rewrite Text” functionality natively into GTK3 widgets. Check the part one post if you missed it.
In this part, I will going over the DBus server code (written in Pyth…
By Surya Teja Karra | Nov 26, 2024
Design Principles in Software Development
Design principles aim to provide solutions to recurring problems in software architecture. Below is a detailed article explaining common design patterns using real-world analogies, the problem they solve, and their implementation in both Python and J…
By ritiksharmaaa | Nov 26, 2024
Day 9: Cleaning Data (Handling Missing Data and Outliers)
Welcome to Day 9! Today, we’re focusing on one of the most crucial steps in the data analysis process: cleaning data. This step ensures that the data is accurate, consistent, and ready for analysis. We will cover techniques for handling missing data …
By Anastasia Zaharieva | Nov 26, 2024
Mastering Microservices and Event-Driven Systems with Python
Software development has undergone significant changes in the past decades. What started as procedural programming evolved into object-oriented design, monolithic architectures, and eventually distributed systems. With growing system complexity and d…
By Ahmad W Khan | Nov 26, 2024
ECS + Flask APP
Te guiaré paso a paso para crear un clúster de ECS (Elastic Container Service) en AWS y desplegar la aplicación Flask con Apache utilizando la imagen Docker que creaste.
1. Configuración Inicial
Instala AWS CLI: Si aún no tienes la AWS CLI instalada…
By Matias Martinez | Nov 27, 2024
Notio – Hashnode Post-Publication LLM Toolkit
As someone who manages various communities with different languages, personalities, and audiences, I've always wanted them all to benefit my Hashnode blogs, but I haven't been successful.
Some readers found my articles boring, while others thought th…
By Sadra Yahyapour | Nov 27, 2024
Machine Learning Chapter 9: Dimensionality Reduction
Welcome to Part 9 – Dimensionality Reduction!
In chapter 3 – Classification, we used datasets with two independent variables to better visualize Machine Learning models and because we can often reduce variables to two using Dimensionality Reduction.
…
By Fatima Jannet | Nov 27, 2024
How to Integrate Auth0 SSO with FastAPI
If you want to integrate Auth0 SSO (or any social login) for all your authentication and authorization needs, you're in the right place! Let's get started together!
Here are the steps
Step 1: Use FastAPI-Auth0 python library.
Step 2: Create Auth0 F…
By Akash Desarda | Nov 27, 2024
Speech to Musical Notation with AssemblyAI
This is a submission for the AssemblyAI Challenge : Sophisticated Speech-to-Text.
What I Built
I built Speech-to-Note, an innovative web application that combines speech recognition and musical note detection. The application allows users to record a…
By Vicente Reyes | Nov 27, 2024
ML chapter 10: Model Selection & Boosting
Welcome to the final part of our journey.
After we built our Machine Learning models, I guess we still have some questions:
How do we handle the bias-variance tradeoff when building a model and checking its performance?
How do we pick the best valu…
By Fatima Jannet | Nov 27, 2024
Day 10: Data Transformation
Welcome to Day 10! Today, we’re diving into data transformation, an essential step to prepare raw data for analysis and machine learning. Data transformation includes scaling, normalizing, encoding, and reshaping data, ensuring it’s in the optimal fo…
By Anastasia Zaharieva | Nov 27, 2024
Typer: Observations, Dos and Don'ts of the Python Command Line Application Builder
Typer is a library for building command line interface(CLI) applications based on Python type hints. We have seen CLI applications like Curl, Git and the likes, Typer comes in handy for projects like these. Currently building an application with it a…
By Stephen Odogwu | Nov 27, 2024
Python in DevOps
What is Python?
Python is a high-level, interpreted programming language known for its simplicity and versatility. Created by Guido van Rossum and first released in 1991, Python emphasizes readability and ease of use, making it an excellent choice fo…
By Vanshika Sharma | Nov 27, 2024
Activity 44: Documentation of Python Flask Encryption and Decryption
What is Python Flask Encryption and Decryption?
Encryption and decryption are two fundamental concepts in cryptography that are used to ensure the security of sensitive data.
Encryption: The process of converting readable data (plaintext) into an un…
By Walter John Salibay | Nov 28, 2024
Activity 42: Documentation of Python Flask hash
Documentation of Activity 41: Python Flask Hash
Introduction to Hashing
In this activity, I explored the critical concept of hashing, a fundamental practice for securing sensitive information, particularly passwords. Hashing is a process that transfo…
By Walter John Salibay | Nov 28, 2024
Sorting Algorithms.
Sorting algorithms are used to arrange data in a specific order, typically ascending or descending. There are four basic sorting algorithms Bubble Sort, Selection Sort, Merge Sort, and Quick Sort
1. Bubble Sort
Bubble Sort is one of the simplest sort…
By Akash De Alwis | Nov 28, 2024
Comparative Study: PCA & Classification in Breast Cancer Detection
PCA-Based Classification for Breast Cancer Detection
Early detection of breast cancer can significantly improve patient outcomes, making accurate diagnostic tools essential. Machine learning (ML) has revolutionized medical diagnostics by providing p…
By govinda tak | Nov 28, 2024
Building a Smart To-Do List Manager with Python, MongoDB & Kivy (Part 1: Project Overview and Setup)
Introduction
One of the best ways to prove your skills is by actually building something cool, right? Until recently, most of the projects in my portfolio were from work or school. But as I am navigating my career, I’ve come to realise how important …
By Mahugnon DOUSSO | Nov 28, 2024
The Ultimate Guide to Web3.py for Developers
For Python developers looking to interact with Ethereum, web3.py is the go-to library. This guide shows you how to use web3.py with BuildBear RPC to test, deploy, and manage dApps effortlessly within a realistic testing environment. We’ll also demons…
By BuildBear | Nov 28, 2024
Streamlining Your Databricks Environment Setup
I'm pretty sure that if you're using Databricks to run your PySpark job, these might be your typical steps:
Design and develop business logic.
A notebook that performs all the business logic.
Running that notebook using Databricks Workflow.
This…
By Akash Desarda | Nov 28, 2024
Day 11: Feature Engineering
Welcome to Day 11! Today, we’re focusing on feature engineering, one of the most creative and impactful stages in any data science project. Feature engineering involves creating, modifying, or selecting features to improve the performance of machine …
By Anastasia Zaharieva | Nov 28, 2024
Python Programming Language Roadmap
Basic Python Concepts
Introduction to Python and Installation
Python Syntax and Data Types
Variables, Constants, and Operators
Control Flow Statements (if, else, while, for)
Lists, Tuples, Dictionaries, and Sets
String Manipulation
Functions a…
By Mohammed Shakeel | Nov 28, 2024
How to Replace Text in Word Documents Using Python: Fast and Effective
Find and Replace is a handy feature for updating specific information or correcting errors in Word documents. While MS Word offers this functionality, handling multiple documents manually can be time-consuming. A programmatic solution, such as using …
By Casie Liu | Nov 28, 2024
Hackathon Highlights: Story from Hackz 2024 Finalist
This past weekend, I had the honor of leading my team in Hackz 2024, an intense 24-hour hackathon that stretched from 10 AM on November 23rd to 10 AM on November 24th. The event was buzzing with energy, creativity, and an overwhelming sense of purpos…
By Metta Surendhar | Nov 28, 2024
Python Pandas for Data Analysis (Learn what Matters)
What is Pandas?
Pandas is a Python library designed to handle structured data easily. It offers powerful data structures, namely Series and DataFrames, to manage and manipulate data effectively. With Pandas, you can clean, analyze, and even visualize…
By Sutapa Biswas | Nov 28, 2024
Understanding Data Variability: Advanced SQL Techniques Made Easy
Hey Everyone! 👋
If you don’t know me yet, I’m Dhyuthidhar Saraswathula, and I love writing about Computer Science and Data Science topics. Today, let’s explore an essential concept in SQL and data analysis: Variability.
Fasten your seatbelts because…
By S.S.S DHYUTHIDHAR | Nov 29, 2024
Django Project Management Rest API
Django Python Machine Test
• Consider the following scenario where we have 3 entities in our system.
User
Client
Project
We have the number of users registered in our system.
You can use Django's default admin template to create/register users b…
By Vidyesh Churi | Nov 29, 2024
serverless uploading to AWS S3
Uploading large files (up to 5TB) efficiently and securely from a React application to an AWS S3 bucket is a common use case. In this blog, I'll walk you through implementing this solution using pre-signed URLs, with AWS Lambda handling backend logic…
By ABHINANDHAN S | Nov 29, 2024
How Recursive Calls Work
1. How Recursive Calls Work
When a recursive function is called, the current state of the function (parameter values, local variables, etc.) is saved onto the stack, and control moves to the newly called function. Then, the function completes its exe…
By KiwiChip | Nov 29, 2024
Python for DevOps: Your Gateway to Advanced Automation
Why Python Matters in DevOps
As a DevOps engineer, your toolkit is your superpower. While shell scripting has been the traditional go-to, Python emerges as a game-changing language that elevates your automation capabilities.
Shell Scripting vs Python…
By Amulya | Nov 29, 2024
Day 12: Exploratory Data Analysis (EDA) Techniques
Welcome to Day 12! Today, we’re diving into Exploratory Data Analysis (EDA), a critical step in any data science project. EDA helps us uncover patterns, relationships, and distributions within our data, providing insights to guide further analysis an…
By Anastasia Zaharieva | Nov 29, 2024
Step 2 to Mastering Machine Learning: Preprocessing, Training, and Tuning Models
4. Preprocessing Guide
4.1 Data Loading and Exploration
4.1.1 Loading Data with Pandas
Reading Datasets (.csv, .xlsx, .json, etc.) Using pandas.read_* Functions
Pandas is the most widely used library for loading and manipulating tabular data in Pyth…
By Cyber Michaela | Nov 29, 2024
Getting Started with the Python Turtle Module: Basics, Functions, and Fun Projects
The turtle module in Python is a great way to learn graphics programming and have fun with visual creations. This blog will guide you through the basics of the turtle module, including its functions and attributes, and help you build projects that co…
By Mehfooj Alam | Nov 29, 2024
Personalized Confirmation Tickets with FastAPI and Pillow
While working as a backend developer for AIESEC in Nigeria, I encountered a challenge during conference registrations: creating personalized tickets for attendees. Traditional methods, like writing extensive MJML templates, felt cumbersome and time-c…
By Mogboluwaga Onayade | Nov 29, 2024
Building a Flask-based API Server for KeePass Database Operations
Table of Contents
Understanding KeePass
KeePass Basics
Database Structure
Security Features
PyKeePass Integration
Maintenance and Troubleshooting
Architecture Overview
Component Structure
Design Patterns
Technology Stack
Project Struct…
By Rendy Saputra | Nov 29, 2024
How to Use Django Admin and Models: A Beginner's Guide
Previous Related Blog : Getting Started with Django: Basic Setup and Overview
What is Django Admin ?
Django Admin is a powerful panel which has built-in interface for managing Django Models. It allows us to quickly perform CRUD (Create, Read, Update…
By Rohit Rajput | Nov 29, 2024
Step 1 to Mastering Machine Learning: Exploring Categories and Key Algorithms
1. Introduction
1.1 What is Machine Learning?
Machine learning is a field of computer science that allows systems to learn and make decisions from data without being explicitly programmed. Instead of following a set of hard-coded rules, machine learn…
By Cyber Michaela | Nov 29, 2024
Use Cases of Python in E-commerce
Python has emerged as a pivotal technology in e-commerce, enabling businesses to enhance customer experiences, streamline operations, and boost sales. This blog explores various use cases of Python in e-commerce, including personalized recommendation…
By Lucy | Nov 29, 2024
Avoiding Pitfalls in Amazon S3: Handling Case Sensitivity in Python Workflows
As When working with Amazon S3, it’s easy to overlook an important nuance: case sensitivity. While bucket names are case-insensitive, object keys (file paths) are case-sensitive. This distinction can lead to unexpected bugs in your workflows. For ins…
By Nextwebb | Nov 29, 2024
Exploring the Uncharted Territories of LangGraph in AI Development
Introduction
In the rapidly evolving landscape of artificial intelligence, LangGraph emerges as a powerful tool for orchestrating complex, stateful, multi-agent applications. While much has been discussed about its foundational capabilities, there re…
By Nikhil Akki | Nov 30, 2024
How to Set Up Jenkins on AWS: A Step-by-Step Guide
Jenkins is a popular open-source automation server that helps streamline your software development and deployment pipelines. In this guide, we’ll walk through setting up Jenkins on AWS, step by step.
Prerequisites
AWS Account: Ensure you have acces…
By Harendra Barot | Nov 30, 2024
Part II – growing a program step by step: a restaurant bill calculator
While this article touches upon many subjects, it is really about the process of creating a program iteratively. When starting with an idea for a program, we have to start from somewhere. Try to see how the code evolves through the article; this migh…
By Had Will | Nov 30, 2024
Day 13: Advanced EDA Techniques
Welcome to Day 13! Today, we’re building on the foundational EDA techniques we explored yesterday by diving into advanced EDA methods. These approaches help us uncover deeper insights, especially in larger or more complex datasets.
Advanced EDA Tech…
By Anastasia Zaharieva | Nov 30, 2024
Securely Managing Database Credentials in Python with dotenv
Introduction
Before pushing your code to GitHub, you may want to hide some sensitive information from the public eye 👀.We can make use of the ‘dotenv’ module in Python.
The dotenv Python module helps us to load environment variables from a ‘.env’ fi…
By Rhoda Oduro-Nyarko | Nov 30, 2024
Time Complexity: Beyond Interview Questions
During technical interviews, many developers first encounter Big O notation and time complexity analysis. This often leads to the misconception that these concepts are merely academic exercises. However, understanding time complexity is crucial for b…
By Mohammed Anwar | Nov 30, 2024
Build and Understand LeNet 5 Architecture Using TensorFlow
Machine learning algorithm especially in computer vision is rapidly developed. In order to achieve the rapidly algorithm development we must learn continuously from the basic. One of the basic is the development by Yann Lecun is LeNet. We will try to…
By Fadhil Elrizanda | Nov 30, 2024
Two-tier-flask-app deployment with docker🐠…!!
Firstly, we have to pull the mysql server. Steps to do this:
Open your EC2 terminal.
Run: docker pull mysql
Then, clone the application to your EC2 server.
Open your EC2 terimal.
Run: git clone https://github.com/prem14choudhary/two-tier-flask-…
By Prem Choudhary | Nov 30, 2024
Mastering Python Functions: Simplified Guide to Logical Flow and Execution
IntroductionFunctions are a fundamental concept in Python and serve as the building blocks of effective programming. Although they are a basic concept, functions are incredibly versatile and play a crucial role in making code reusable, organized, and…
By Subbu Tech Tutorials | Nov 30, 2024
Beginning of Software: An Introduction
Hi I’m new to developing software as intricate as I’m trying to develop. I beekeeper of five years. I have five beehives. I have looked around for beekeeping software that I like. I decided I would start my own open source software after seeing the s…
By Austin Arvonio | Nov 30, 2024
Building a Flask-based API Server for KeePass Database Operations
KeePass Basics
KeePass is a free, open-source password manager that helps users store and manage their passwords securely. It stores all passwords in a single encrypted database file (.kdbx), protected by a master password and/or key file.
Database S…
By Rendy Saputra | Nov 29, 2024
Comparing List, Tuple, and Set: Key Differences
Introduction
In this article, we'll explore the differences between lists, tuples, and sets in Python. A basic understanding of Python syntax is assumed. Let's dive in 🚀.
Lists
A list is a Python object that stores multiple items of potentially diff…
By Tochukwu Chidi Daniel | Nov 30, 2024
Build a simple calculator using Python
Introduction
In this article, we will build a simple calculator that anyone can use in the Python console. Along the way, you will learn how to create it using functions, conditional statements, loops, and f-strings. Ready… Let's go
Prerequisites
T…
By Tochukwu Chidi Daniel | Nov 30, 2024
Defeated remnants of Sekigahara
My New Horizon
At 20 years old, I stand at a crossroads—no longer confined by the narrow corridors of Korea's exam-driven education system, but finally free to explore the vast, complex world around me. For most of my early years, life revolved aroun…
By Miyamoto Muhwanshi | Dec 01, 2024
How I Solved Common Prisma ORM Errors: Debugging Tips and Best Practices
Prisma ORM is a powerful companion for every software engineer, indie maker, and SaaS founder who wants to add type safety to the queries executed on the database.
I have been using Prisma for the last 2 years, and I have experience on troubleshootin…
By Luca Restagno | Dec 01, 2024
[CS fundamentals] Mutable vs. Immutable
Introduction
This article introduces concepts of mutability and immutability in computer science. It’s very important to understand it because it’s going to help you to solve errors in the future. Especially, beginners often face situations such that…
By Lim Woojae | Dec 01, 2024
Advent of Code: 2024 Solutions
This article contains solutions to the Advent of Code 2024 Christmas coding challenges.
Check out Advent of Code here: https://adventofcode.com/2024
All solutions will be available in this GitHub repository:https://github.com/redtrib3/advent-of-code-…
By Anirudh | Dec 01, 2024
Mastering the Fibonacci Sequence: Implementing Recursion and Dynamic Programming in Python
The Fibonacci sequence is a famous series in mathematics where each number is the sum of the two preceding ones, usually starting with 0 and 1. It’s a great example to understand two fundamental concepts in computer science: recursion and dynamic pro…
By SuperHuman | Dec 01, 2024
Working With Lists
I imagine that for most people, this topic might seem too simple to be worth reading. However, I've spent the past week trying to become more comfortable working with lists in Python. By working with them, I mean creating, modifying, and leveraging l…
By John Hambleton | Dec 01, 2024
5 Técnicas de List Comprehension en Python Que Deberías Conocer
Las list comprehensions son una de las características más poderosas y elegantes de Python. Si bien la sintaxis básica es sencilla, hay algunos patrones avanzados que pueden hacer tu código más eficiente y legible. Veamos 5 técnicas que todo desarrol…
By Joaquín Gutiérrez | Dec 01, 2024
#Python Software Foundation
PSF Board Retreat 2024
By Unknown | Nov 25, 2024
#Dev.to
A surprising thing about PyPI's BigQuery data
#python #pypi #bigquery #google
By Hugo van Kemenade | Nov 25, 2024
Introducing LiteLookup: Your Terminal Assistant
#productivity #python #opensource #programming
By Abdulmumin Akinde | Nov 25, 2024
El Poder de lo Simple: Regresión Lineal para Predecir Precios de Casas
#machinelearning #linearregression #python #datascience
By Edgar Cajusol | Nov 25, 2024
UV the game-changer package manager
#programming #python #beginners #computerscience
By Cloud Native Engineer | Nov 25, 2024
VisAssist: An Accessible Transcription Assistant for auditory impaired individuals.
#javascript #webdev #python #assemblyaichallenge
By Cosmas Mandikonza | Nov 25, 2024
Asynchronous Python
#python #async #concurrency #http
By Owais | Nov 25, 2024
Strategy Design Pattern
#lld #systemdesign #designpatterns #python
By Naresh Babu | Nov 25, 2024
Writing Clean Python Code: Embracing the Zen of Python 🐍✨
#python #programming #cleancoding #code
By Jomer Ventolero | Nov 25, 2024
Django accounts management app (3), forgot password and account details
#django #python #accounts
By Saad Alkentar | Nov 25, 2024
Mastering Python Metaclasses: Supercharge Your Code with Advanced Class Creation Techniques
#programming #devto #python #softwareengineering
By Aarav Joshi | Nov 25, 2024
What Are the Top 10 Python Libraries for Data Science
#python
By Nanditham | Nov 25, 2024
Asking for feedback on open source CLI tool that exports Markdown to PDF using html and css templates(MDExport)
#cli #markdown #python #opensource
By Andy Verstraeten | Nov 25, 2024
Cosine Similarity Search on Vectors in Postgres with pgvector
#vectordatabase #postgres #nlp #django
By AJAY SHRESTHA | Nov 25, 2024
Python's Gradual Typing: Flexibly Enhancing Code Safety and Performance
#programming #devto #python #softwareengineering
By Aarav Joshi | Nov 25, 2024
Mastering Async Context Managers: Boost Your Python Code's Performance
#programming #devto #python #softwareengineering
By Aarav Joshi | Nov 25, 2024
Building a chatbot with Semantic Kernel – Part 1: Setup and first steps 👣
#ai #semantickernel #python #microsoft
By David Sola | Nov 25, 2024
How to Run Samurai on Google Colab
#googlecolab #python #machinelearning #motiontracking
By 0xkoji | Nov 26, 2024
Calculate savings with Python!
#beginners #programming #webdev #python
By Andrew Rawson | Nov 26, 2024
Crossing the Line before the Finish Line. Also the line before that.
#python #flask #backenddevelopment #sql
By Alexander McMillan | Nov 26, 2024
# BUILDING AN IMAGE GENERATOR USING FLET WITH PYTHON
#python #ai #tutorial #programming
By Arsey Kun | Nov 26, 2024
10 Tips on How to Effectively Prompt Amazon Q
#aws #cloudcomputing #developerproductivity #python
By Nat Ndlovu | Nov 26, 2024
A Beginner's Guide to Python Libraries: Unlocking the Power of Pre-Written Code 🐍📚
#python #micropython #mojo #django
By Hexadecimal | Nov 25, 2024
Global Navigation + Gradient Path Planning
#python #automation #navigation
By Jorge Martin | Nov 26, 2024
Python Day- 10 Looping
#payilagam #python #whileloop #coding
By Guru prasanna | Nov 25, 2024
Guide to 24 Essential Open Source Projects from Package Managers to AI apps
#javascript #programming #beginners #python
By fast-d3v | Nov 25, 2024
Journal Transcriber: Write journal by dictating it
#voicetotext #python #productivity #linux
By Slobi | Nov 25, 2024
Node.js vs Django: Choosing the Right Backend Framework
#webdev #javascript #python #programming
By Winner | Nov 25, 2024
An interpreter inside an interpreter
#rust #python #programming
By Jones Beach | Nov 25, 2024
9 must-know dev tools to build cool AI apps 🧙♂️🪄
#ai #python #javascript #programming
By Ayush Thakur | Nov 25, 2024
Building a Kubernetes Client for Google Kubernetes Engine (GKE) in Python
#googlecloud #python #googlekubernetesengine #gke
By polar3130 | Nov 25, 2024
Mastering Query Answering with RAG: Overcoming Key Challenges in Large-Scale Meeting Data
#ai #python #learning #datascience
By Cognilium AI | Nov 25, 2024
Day 10 – Looping
#python #payilagam #looping #while
By Lakshmi Pritha Nadesan | Nov 25, 2024
Day 9 – Looping
#python #payilagam #looping #while
By Lakshmi Pritha Nadesan | Nov 25, 2024
Building Race Riot: A Racing Game with Pygame and a CI/CD Pipeline
#python #cicd #gamedev #devops
By Chirag Sagar | Nov 26, 2024
Datasets for Computer Vision (3)
#python #pytorch #dataset #computervision
By Super Kai (Kazuya Ito) | Nov 26, 2024
Exploring the Magic of 432 Hz: Building a Music Frequency Analyzer
#python #music #machinelearning
By Vicente G. Reyes | Nov 26, 2024
A Very Deep Dive Into Docker Builds
#docker #sre #python #security
By Jakob Beckmann | Nov 26, 2024
Unlocking the Power of Django: Build Secure and Scalable Web Apps Fast
#django #webdev #python #frameworks
By SnapNews | Nov 26, 2024
Mastering Tuples in Python: A Comprehensive Guide
#webdev #python #programming #beginners
By Shefali | Nov 26, 2024
I built a Learning Management System with Django
#webdev #django #programming #opensource
By Vijay Thapa | Nov 26, 2024
Building Your First WhatsApp Bot in Python: A Beginner’s Guide
#python #beginners #api #whatsapp
By WhatsApp API for developers | Nov 26, 2024
Python's Hidden Superpowers: Mastering the Metaobject Protocol for Coding Magic
#programming #devto #python #softwareengineering
By Aarav Joshi | Nov 26, 2024
Building state machine library with help from AI tools
#finitestatemachine #python #ruleengine #generativeaitools
By Choon-Siang Lai | Nov 26, 2024
Update Django Key using .env
#python #howto
By Dimitrios Desyllas | Nov 26, 2024
How to Create a Number-Guessing Game in Python
#programming #tutorial #python #beginners
By Sophia Iroegbu | Nov 26, 2024
Building Maintainable Python Applications with Hexagonal Architecture and Domain-Driven Design
#python #coding #webdev #discuss
By Hieu Tran | Nov 26, 2024
Simple Python Logging – and a digression on dependencies, trust, and Copy/pasting code
#python #logging #snippet
By Tai Kedzierski | Nov 26, 2024
How to load .env in Django Project
#howto #python #django
By Dimitrios Desyllas | Nov 26, 2024
Creating an AI-powered Image Generation API Service with FLUX, Python, and Diffusers
#ai #python #opensource #api
By Komninos Chatzipapas | Nov 26, 2024
Ternary Conditional Operators
#python #programming #go #learning
By Alexandre Bento Freire | Nov 26, 2024
Any Country's capital finder in Python
#javascript #flask #python #webdev
By Aj | Nov 26, 2024
Deploy Hugging Face Models to AWS Lambda in 3 steps
#aws #machinelearning #serverless #python
By Christian Nuss | Nov 26, 2024
What is `functools partial`?
#python #functools #partial #learning
By Muhammad Atif Iqbal | Nov 26, 2024
Save time with the Amazon Bedrock Converse API!
#aws #bedrock #python #genai
By Faye Ellis | Nov 26, 2024
Towards Effortless Python Configuration Files Version 3
#python #configu #configparser
By Humberto A Sanchez II | Nov 27, 2024
Towards Effortless Python Configuration Files Version 2
#python #configuration #configparser
By Humberto A Sanchez II | Nov 27, 2024
Towards Effortless Python Configuration Files Version 1
#python #configure #configparser
By Humberto A Sanchez II | Nov 27, 2024
Towards Effortless Python Configuration Files Version Ø
#python #configparser #dynamic
By Humberto A Sanchez II | Nov 27, 2024
QtWidgets and QtCore
#tutorial #python #ai #github
By Junissen | Nov 27, 2024
PyQt5 isn't only for frontend
#webdev #python #database #programming
By Junissen | Nov 27, 2024
Planning To Resolve Automatic Feedback Loop
#webdev #python #ai #rag
By Kannav Sethi | Nov 27, 2024
把class当做一个数据类型使用
#python
By Qingguang Zeng | Nov 27, 2024
PWA and Django #3: Online and offline resources in a PWA – Developing Progressive Web Applications with Django
#django #python #pwa #webdev
By Andrés Álvarez Iglesias | Nov 27, 2024
Some QtGui structures
#javascript #python #api #testing
By Junissen | Nov 27, 2024
Flask or FastAPI: Choosing the Right Python Framework for Your Project
#webdev #python #flask #api
By Abhinav Anand | Nov 27, 2024
🚀 AdminProber v1.1: The Ultimate Admin Panel Finder Tool for Penetration Testers and Ethical Hackers
#programming #python #git #cybersecurity
By Trix Cyrus | Nov 27, 2024
extra_kwargs arguments
#django #drf #webdev
By Gahyun Son | Nov 27, 2024
Why is coding becoming so popular? Is coding good for kids?
#python #codingcourse #kodeclik #beginners
By Kodeclik Online Academy | Nov 27, 2024
How to Create a Number-Guessing Game in Python
#programming #tutorial #python #beginners
By Sophia Iroegbu | Nov 26, 2024
Building a Flexible Notification System in Django: A Comprehensive Guide
#python #django #notificationsystem
By Mehedi Bappi | Nov 27, 2024
Day 11 – Looping exercises
#python #payilagam #looping #function
By Lakshmi Pritha Nadesan | Nov 27, 2024
🖼️ Build an Image Converter WebApp Using Python and Streamlit
#python #streamlit #tutorial #learning
By Lawani Elyon John | Nov 28, 2024
Why Seeing Data Beats Reading It: The Case for Data Visualization
#datascience #seaborn #beginners #python
By Arum Puri | Nov 28, 2024
Building a Simple Chatbot with Llama2 [Chat with Excel]
#python #nlp #llm #datascience
By shadowb | Nov 28, 2024
AssertionError: 403
#drf #django
By Gahyun Son | Nov 28, 2024
Secure Device Authentication in Python: Introducing the System Hardware ID Generator Script
#python #security #opensource #tutorial
By Pavel Izosimov | Nov 28, 2024
Master Python Coroutines: Create Custom Async Tools for Powerful Concurrent Apps
#programming #devto #python #softwareengineering
By Aarav Joshi | Nov 28, 2024
Unlocking AI's Full Potential: How Claudie AI Agent Transforms Workflows
#ai #deeplearning #python #chatgpt
By Abhinav Anand | Nov 28, 2024
Python Day – 11 Looping-Examples and Tasks
#payilagam #python #looping #coding
By Guru prasanna | Nov 28, 2024
DSPy: A New Approach to Language Model Programming
#python #ai #opensource
By Gabriel Vanderlei | Nov 28, 2024
How TeamStation AI Evaluates, Validates, and Vets Top Python Developers
#webdev #python #programming #ai
By TeamStation AI | Nov 28, 2024
Python Fundamentals: Building the Foundation for Your Programming Journey
#python #programming #softwareengineering #softwaredevelopment
By Zahid Abbas | Nov 28, 2024
Day 12 – Looping Excercises
#python #payilagam #looping #while
By Lakshmi Pritha Nadesan | Nov 28, 2024
Vedro Hooks
#python #testing #vedro
By Mickey Streicher | Nov 28, 2024
How to Build your very own Google's NotebookLM
#python #ai #machinelearning #google
By Shagun Mistry | Nov 28, 2024
Custom Django Python Migration
#django #python #migration #coding
By Gajanan Rajput | Nov 28, 2024
Maximize Your FastAPI Efficiency: Blazingly Fast Implementation of Caching and Locking with py-cachify
#python #webdev #fastapi #opensource
By Kekzzy | Nov 29, 2024
Graphs as methods of implication
#jupyter #python #tutorial #database
By Junissen | Nov 29, 2024
Game strategies tree
#jupyter #python #productivity #learning
By Junissen | Nov 29, 2024
Detecting and Mitigating PyPI Attacks Targeting AI Enthusiasts: A Deep Dive into JarkaStealer Campaigns
#python #ai
By Osagie Anolu | Nov 29, 2024
Learning Python
#javascript #python #beginners #developer
By Jahmari Maxwell | Nov 29, 2024
Seaborn Plot Selection Made Easy: How to Visualize Your Data Effectively
#datascience #beginners #seaborn #python
By Arum Puri | Nov 29, 2024
Progress on Automatic Feedback Loop
#python #ai #opensource #github
By Kannav Sethi | Nov 29, 2024
CV2: What is an Image?, Lets adjust the Brightness and Contrast of an image
#python #cv2 #datascience #programming
By Daniel Jarvis | Nov 29, 2024
Adding new columns – lowCalAlt_update5
#database #python #postgres #backend
By Kazi Priom | Nov 29, 2024
Python Day-12 Looping-Exercises,Number game and Tasks
#payilagam #python #coding #looping
By Guru prasanna | Nov 29, 2024
Multimodal AI Explained: Why It’s Transforming the Future of Technology
#ai #python #coding #mutilmodalai
By Abhinav Anand | Nov 29, 2024
How to Detect and Defend Against SQL Injection Attacks(Part-1)[Must Read]
#sql #mariadb #python #cybersecurity
By Trix Cyrus | Nov 29, 2024
Python Day-13 Looping-puzzles
#payilagam #python #puzzles #looping
By Guru prasanna | Nov 29, 2024
Building a Voice Transcription and Translation App with OpenAI Whisper and Streamlit
#python #streamlit #openai #ai
By oteri | Nov 29, 2024
Winning the Battle Against User Disengagement with Django Push Notifications
#python #django
By Tech Tales | Nov 29, 2024
Mastering Packaging and devlopment: Packaging and Running Apps on Gunicorn.
#devops #python #kubernetes #flask
By Pratham Dabhane | Nov 29, 2024
Python Virtual Environments for Beginners
#python #programming #venv
By Russell Jones | Nov 29, 2024
Using DSPy(COPRO) to refine prompt instructions
#llm #ai #python #rag
By Mayank Laddha | Nov 29, 2024
Native App vs. Web App: The 2025 Showdown – Which One is Right for Your Business?
#webdev #programming #react #python
By Purvi Tuvar | Nov 29, 2024
Cut off the excess (approximate)
#jupyter #python #productivity #learning
By Junissen | Nov 29, 2024
Wagtail localize and snippets
#wagtail #django
By code-on | Nov 29, 2024
Wagtail localize db transfer
#wagtail #django
By code-on | Nov 29, 2024
"Unauthorized: No token provided")
#node #jwt #python #express
By AJ | Nov 30, 2024
Cookiecutter for fast starting with polylith
#python #polylith #monorepo #programming
By Yoel Benítez Fonseca | Nov 30, 2024
A New Blog Series: Python for AI Basics
#python #ai #machinelearning #computerscience
By Praneeth | Nov 30, 2024
YouTube Channel Name Generator
#python #learning #discuss #coding
By Safe | Nov 29, 2024
Getting to know Python Streamlit Web Framework
#python #webdev #programming #beginners
By InterSystems Developer | Nov 29, 2024
Day 13 – Looping and Puzzle program
#python #payilagam #looping #while
By Lakshmi Pritha Nadesan | Nov 29, 2024
Currency Converter in python
#python #html #flask #web
By Aj | Nov 29, 2024
Beyond the Basics: Mastering Python's Hidden Features for Efficient Coding
#python #productivity #developer #programming
By CodePicker | Nov 29, 2024
Fast programming
#python #github #coding #opensource
By KateMLedy | Nov 29, 2024
Build a Competitive Intelligence Tool Powered by AI
#ai #python #llm #opensource
By Shola Jegede | Nov 29, 2024
This Week In Python
#python #thisweekinpython
By Bas Steins | Nov 29, 2024
Lower bound on unitarity
#jupyter #python #discuss #cloud
By KateMLedy | Nov 29, 2024
[CV2] HSV vs RGB: Understanding and Leveraging HSV for Image Processing
#cv2 #python #programming #beginners
By Daniel Jarvis | Nov 30, 2024
Building Real-time Object Detection on Live-streams
#ai #python
By Spring-0 | Nov 30, 2024
Seeking Help to Create a Simple API for Pokémon Data
#api #backenddevelopment #beginners #python
By Sudhanshu Ambastha | Nov 30, 2024
How AI is Shaping Smarter Games and Simulated Worlds
#ai #openai #python
By Abhinav Anand | Nov 30, 2024
Understanding Closures in Python
#python #closure #counter
By Mehedi Bappi | Nov 30, 2024
Hello world!
#webdev #django #react
By Aashish Basnet | Nov 30, 2024
Cómo crear un Wallpaper dinámico con la Hora y Fecha usando Python
#python #pillow #programacion #tutorial
By Code Chappie | Dec 01, 2024
"IpSurv", an IP survey tool made in Python, has been released.
#python #network #tutorial #opensource
By Deer hunt | Nov 30, 2024
Clean architecture and Python Polylith – a real example
#python #programming #polylith #architecture
By Yoel Benítez Fonseca | Nov 30, 2024
Creating a Simple a Virus using Python
#python #cybersecurity #automation #webdev
By Isaeus "Asi" Guiang | Nov 30, 2024
Jinbase – Multi-model transactional embedded database
#showdev #database #python #productivity
By Alex Rustic | Dec 01, 2024
Configuring Django project to storing sensitive data in YAML file
#python #django #yaml #development
By Shakhzhakhan Maxudbek | Dec 01, 2024
Sending message from Telegram bot to users
#python #telegram #api #bot
By Shakhzhakhan Maxudbek | Dec 01, 2024
Optimizing Large-Scale Data Processing in Python: A Guide to Parallelizing CSV Operations
#webdev #python #csv #dataengineering
By pawan deore | Dec 01, 2024
Datasets for Computer Vision (4)
#python #pytorch #dataset #computervision
By Super Kai (Kazuya Ito) | Dec 01, 2024
Python Development in VSCode Using Devcontainer
#devcontainer #docker #python #vscode
By John Ajera | Dec 01, 2024
Unlocking Text from Embedded-Font PDFs: A pytesseract OCR Tutorial
#python #tutorial #ocr #pdf
By Prahlad Yeri | Dec 01, 2024
Setting Up a Conda Environment for Your Python Projects
#python #ai #programming #beginners
By Ajmal Hasan | Dec 01, 2024
Python – Level : 1 Tasks
#payilagam #python #coding #tasks
By Guru prasanna | Dec 01, 2024
Get Started with Amazon Transcribe in Easy Steps
#aws #python #serverless #ai
By Adil Ansari | Dec 01, 2024
Simple Code to Understand Self-Reflection (Agentic Design Pattern)
#ai #llm #python
By Mayank Laddha | Dec 01, 2024
De Datos a Estrategias: Cómo la Estadística Puede Impulsar Decisiones Confiables en Marketing
#statistics #python #marketing #customeranalysis
By Edgar Cajusol | Dec 01, 2024
Advanced Python Concepts – Networking with Python
#python #networking
By CoderLegion | Dec 01, 2024
Advanced Python Concepts – Metaprogramming
#python #metaprogramming
By CoderLegion | Dec 01, 2024
Comprehensive Beginner's Guide to Generative AI with LangChain and Python – 3
#langchain #ai #python #beginners
By Ajmal Hasan | Dec 01, 2024
Beginner's Guide to Python: A Quick Tutorial – 2
#programming #python
By Ajmal Hasan | Dec 01, 2024
Weekly Challenge 297
#perl #python #theweeklychallenge
By Simon Green | Dec 01, 2024
[Blog] CV2 Video, and motion detection and tracking
#python #cv2 #programming #beginners
By Daniel Jarvis | Dec 01, 2024
Why Is Spark Slow??
#spark #python #etl
By hirayuki | Dec 01, 2024
UV как альтернатива Poetry
#python #poetry #uv #package
By dmkjfs | Dec 01, 2024
Python – Level : 2 Tasks
#payilagam #python #coding #tasks
By Guru prasanna | Dec 01, 2024
Suppressing "KeyboardInterrupt" Message on Python Script
#python
By Talles L | Dec 01, 2024
#Daniel Roy Greenfeld Blogs
TIL: Python Dictonary Merge Operator
Did you know there's a merge operator for Python dictionaries? I didn't until today!
By Daniel Roy Greenfeld | Nov 29, 2024
#Site Point
Your own Image Generation API service with FLUX, Python, and Diffusers
#APIs #Python #Web
By Komninos Chatzipapas | Nov 25, 2024