#Real Python
Using the len() Function in Python
In this tutorial, you'll learn how and when to use the len() Python function. You'll also learn how to customize your class definitions so that objects of a user-defined class can be used as arguments in len().
#basics #python
By – | Nov 16, 2024
Using the Python zip() Function for Parallel Iteration
In this step-by-step tutorial, you'll learn how to use the Python zip() function to solve common programming problems. You'll learn how to traverse multiple iterables in parallel and create dictionaries with just a few lines of code.
#basics #python
By – | Nov 17, 2024
#Django Project – Weblog
Announcing DjangoCon Europe 2025 in Dublin, Ireland! 🍀
By DjangoCon Europe 2025 Organizing Team | Nov 11, 2024
Django’s technical governance challenges, and opportunities
By Django Software Foundation Board | Nov 14, 2024
#PyCoders
Issue #655 – Web Scraping Tips, Python 3.13 Performance Boosts, Writing Interpreters & More
By – | Nov 12, 2024
#Python Library
ANN – The textual-cogs Package – Creating Reusable Dialogs for Textual
Textual-cogs is a collection of Textual dialogs that you can use in your Textual application. You can see a quick demo of the dialogs below: Dialogs included so far: Generic MessageDialog – shows messages to the user SaveFileDialog – gives the user a way to select a location to save a file SingleChoiceDialog – gives the user a series […]
#Cross-Platform #Python #Python GUI Toolkits
By Mike | Nov 13, 2024
#Hashnode
Q-Seg: Quantum Magic for Image Segmentation (Yes, You Heard Right)
Intro
Let's talk image segmentation. It's basically telling a computer, "Hey, divide this image up so it makes sense." Whether it's for recognizing cats in photos or spotting flood zones from space, segmentation is everywhere, from health diagnostics…
By Supreeth Mysore Venkatesh | Nov 11, 2024
How to efficiently Sending Emails Asynchronously in Django
Sending email in a Django project is quite a simple task. You import the send_mail function and use it. We usually send emails at critical times, like when a visitor signs up, or for more specific tasks, like sending an autogenerated invoice or when …
By adonis simo | Nov 11, 2024
Top 10 Platforms to Practice Python
Python is one of the most popular programming languages today, renowned for its simplicity and versatility. Whether you're a beginner looking to get started or an experienced developer aiming to hone your skills, practicing Python is essential. Fortu…
By Devstories Playground | Nov 11, 2024
Creating Apps with Offline Functionality for Better User Experience
Introduction
Ever tried using an app, only to be greeted by a loading screen because you lost internet connection? Frustrating, isn’t it? That’s where offline functionality comes in.
It allows apps to function smoothly even without a network, providi…
By CodnestX | Nov 11, 2024
Unlocking the Power of Tokenization: A Deep Dive into Generative AI and NLP
Introduction
Definition of Generative AI
Generative AI is a fascinating realm of artificial intelligence that focuses on creating new and original content, mimicking the data it was trained on. Imagine a digital artist, composer, or writer that learn…
By genvia | Nov 11, 2024
Image-to-Text Extraction with Llama3.2-vision and Python
Generative AI for image-to-text has been out for a while now, so we’ve all seen how well it can extract text compared to traditional OCR (optical character recognition). Sure, it can hallucinate, but OCR isn’t perfect either. If you’re just looking t…
By GreenFlux | Nov 11, 2024
Exploratory Data Analysis (EDA): The Essential First Step in Data Science
Introduction
Hey everyone, welcome back! If you’re new here, I’m Dhyuthidhar Saraswathula. I write blogs focused on computer science, with a special emphasis on data science and analytics.
Today’s topic is one of the most essential and exciting parts…
By S.S.S DHYUTHIDHAR | Nov 11, 2024
An Introduction to Different Types of Variables in Python – day 36
Introduction :
Welcome back to my Python journey! Previously, I started the OOPs concept in python in python.
Today, I dove into types of Variables, Let's explore what I learned!
Types of Variables:
Python support 3 types of variables
1. Instance Va…
By Archana Prusty | Nov 11, 2024
Understanding Randomized MAC Addresses for Better Privacy
In today’s hyper-connected world, privacy is more important than ever. Devices we carry and connect with other networks leave digital traces wherever we go, making our privacy increasingly elusive. One way that our privacy can be protected is by empl…
By Mohammad Ariful Islam | Nov 11, 2024
Deep Learning Essentials
It is a subset of machine learning that focuses on using neural networks with many layers to model and understand complex patterns in data.
Neural network is a type of machine learning algorithm that are designed to learn from data by adjusting the w…
By Madhav Ganesan | Nov 11, 2024
If Computing Power is the Engine of AI, Data is the Fuel: Understanding the Core Drivers of Artificial Intelligence
Introduction
Imagine a high-performance car: the engine propels it forward, while fuel keeps the engine running smoothly. In the realm of artificial intelligence (AI), a similar relationship exists. Computing power serves as the engine driving AI's c…
By Johnson Ojo | Nov 11, 2024
Securing Our REST API with JWT & OAuth
When building a secure backend for a REST API, two key terms often come up: JWT (JSON Web Tokens) and OAuth. You might be wondering, what exactly are they, and why is everyone using them?
Let’s dive in, because as they say, ‘Don’t underestimate the p…
By Anurag Kumar | Nov 11, 2024
Write a Django app to maintain a Media files. Create a model named Media with fields: name, type, format, size, duration_secs (default 0)
Project setup for Apple mac:
Open terminal with Cmd+Space → type terminal → Enter
python3 –version
pip3 –version
brew install uv # installing uv python manager via homebrew
# for more info go to https://docs.astral.sh/uv/
cd ~ # go to home
cd /Us…
By Vidyesh Churi | Nov 11, 2024
Comment Moderation API with FastAPI and Google Generative AI
In this guide, we'll develop a comment moderation API using Python's FastAPI framework and Google Generative AI. The API will analyze comments for potentially harmful content and return a JSON object indicating if the comment should be flagged. This …
By Shivam Vishwakarma | Nov 11, 2024
10 Python Scripts to Automate Your Daily Tasks
Python's versatility makes it ideal for automating various tasks and improving productivity. Here are 10 simple Python scripts to help you streamline your day
1. Email Automation
Easily automate sending emails, whether it's daily updates, reminders, …
By Vashishth Gajjar | Nov 11, 2024
Week in Review: Starting with Flask – Learning and Teaching Together
Introduction
This week, I took on the challenge of learning Flask, a lightweight and flexible Python framework for web development. It’s been an exciting journey to start working with this new framework while also introducing the basics to my younger…
By AbuBakar khan lakhwera | Nov 11, 2024
getting started with FastAPI: the beginner's guide to building high-performance apis with python
hello, i'm back with another article! today, let’s dive into understanding FastAPI—what it is, why it’s becoming so popular, and why you might want to use it for your python projects.
if you've worked with python backend frameworks, you've likely com…
By Vinayak Gavariya | Nov 11, 2024
Finding eBay Items with Python and Exporting to Excel
Why Build an eBay Search Tool?
If you collect items like entertainment memorabilia or retro gaming consoles, you know that finding specific listings can be time-consuming. This Python program automates that search by connecting to the eBay API, retri…
By Steve Hatmaker Jr. | Nov 12, 2024
Why I'm Learning Go and Not Rust?
For years, Python has been my go-to programming language. I used it for Web Development, Cryptography, Data Science, and AI/ML (Before ChatGPT, okay). Python also gave me an edge in the hacking world, since it's widely used for developing tools and e…
By FlareXes | Nov 12, 2024
📦 Mastering JSON Manipulation in Python: A Comprehensive Guide
Hey Devs! 👋
If you've ever dealt with APIs, web development, or data interchange, you've likely encountered JSON (JavaScript Object Notation). It's everywhere! JSON is a lightweight format that’s easy for both humans and machines to read and write. …
By Krishnat Ramchandra Hogale | Nov 12, 2024
Data Science Career Paths: Which Role is Right for You?
As the field of data science continues to evolve, organizations across industries are leveraging data to inform their decisions and drive growth. The surge in big data and machine learning has led to a growing demand for data science professionals, r…
By pallavi chauhan | Nov 12, 2024
Learning Python
Follow me on my journey as I “re-learn” python! I recently realised my IoA subscription provided me FREE access to partner providers including Datacamp and Dataquest.
So I thought it’ll be a perfect opportunity to start a blog (lol). The benefits is …
By funky | Nov 12, 2024
How to Add or Remove Text Box in Word Documents with Python [Fast and Active]
Inserting text boxes in Word documents is a popular way to emphasize key information or create callouts. While Microsoft Word offers built-in features for adding text boxes, manually repeating this task can become time-consuming, especially with larg…
By Casie Liu | Nov 12, 2024
LightningChart Python 1.0
Hey guys! I'm excited to share with you that LightningChart is officially releasing its Python graphics visualization library version 1.0.
As some of you may know, I usually write tutorials and articles about JavaScript (and .NET too!) but this time,…
By Omar Urbano | LightningChart | Nov 12, 2024
Basics of Python for DevOps Engineers
Getting Started with Python: Installation and Data Types
Welcome to the exciting world of Python programming! In this blog post, we will walk you through the steps to install Python on your operating system and explore the various data types availabl…
By Ammar Khan | Nov 12, 2024
Activity 18: Master Python Dictionaries Data Structure
In this activity, you will practice using dictionaries to store and manage multiple instances of objects like Product, Employee, Books, University, and Restaurant. You will create dictionaries for these objects and populate them with details (e.g., n…
By Janus Crico Gumapas | Nov 12, 2024
Bus Crowd Detection System
Managing crowd levels in public buses is a challenge for many cities around the world. Overcrowding can lead to safety concerns, discomfort, and delays. To help address this issue, I've developed a Bus Crowd Detection System using computer vision and…
By Neel Patel | Nov 12, 2024
A Data-Driven Dive into Movie Trends: Insights from IMDb Data
Introduction
Movies are a reflection of our culture and collective tastes. From cult classics to blockbusters, each movie has a story behind it, not just in its plot, but in its ratings, audience engagement, and trends over time. In this blog, I’ll b…
By Rohit Kumar | Nov 12, 2024
Step-by-Step Guide to Deploy a Django Notes App Using Jenkins CI/CD and GitHub
This comprehensive documentation outlines the process of setting up a CI/CD pipeline using Jenkins, GitHub, and Docker for deploying a Django Notes Application. The integration allows for seamless deployments whenever changes are made in the GitHub r…
By Amitabh soni | Nov 12, 2024
A Step-by-Step Guide to Advanced Task Scheduling using Celery Beat and Django
In my asynchronous Python blog, I explored multitasking, distributed computing, and related best practices. But sometimes we need to run programs in a periodic manner, where running tasks in parallel does not matter. In many applications, periodic ta…
By Snehangshu Bhattacharya | Nov 12, 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
To make our order processing system user-friendly, we’ll build a graphical user interface (GUI) using Tkinter, Python's standard GUI toolkit. Tkinter allows us to create windo…
By Bryan Samuel James | Nov 12, 2024
Small Wins in Python: How a CLI Todo App Changed My Perspective on Coding
It’s been a while since my first post “Navigating the Fog of Tech: My Journey as an Introverted Tech Enthusiast”, In that time, a lot has happened so there may be a slight change in my writing style. Based on how you perceive it, may be considered as…
By Leafy | Nov 12, 2024
Comprehensive Guide to Python Data Structures: Lists and Tuples
Key Takeaways
ConceptSummary
ListsMutable, ordered collections that can store different types of data.
Creating ListsLists can be created using square brackets [].
TuplesImmutable, ordered collections that store different types of data.
Cre…
By Arnav Singh | Nov 12, 2024
Taming Error Flow with Result Objects in Python
Error handling is a critical aspect of software development, yet it's often overlooked or implemented in ways that can lead to confusing and hard-to-maintain code. This article explores the limitations of traditional exception-based error handling an…
By Sam Keen | Nov 12, 2024
Python ultrapassa JavaScript e IA ainda não vai roubar nossos empregos
Saiu o Octoverse 2024, relatório anual do GitHub que traz uma análise dos dados da plataforma sobre desenvolvimento de software.
A grande novidade? Python ultrapassou o JavaScript! 👀💔
Sim, isso mesmo, Python se tornou a linguagem mais popular em p…
By Alessandro Gonçalves | Nov 12, 2024
Getting Started with Python for Web Developers
Python has become one of the most popular programming languages in the world, known for its readability, versatility, and vast ecosystem of libraries and frameworks. If you're a web developer looking to expand your skill set, Python can be a valuable…
By Ayusharpcoder | Nov 13, 2024
Django Setup and Basic Overview
What is Django ?
A Python-based Web Framework designed for rapid development of efficient web applications.
It is also referred as "batteries included" framework because it provides built-in features for various aspects of web development these fea…
By Rohit Rajput | Nov 13, 2024
Web Scraper using Python
Introduction:
Today, data is everywhere – be it market research or content aggregation there is unbound information just waiting to be analyzed. Manually collecting data from websites doesn't work out to be practical or even time-consuming at times. …
By Yaswanth Merugumala | Nov 13, 2024
Find and Highlight Text in Word Documents with Python [Simple Tips]
Word documents often contain large amounts of text and images, making it essential to highlight key information or to make the document more visually engaging. While MS Word offers a built-in highlighting feature, manually finding the text to highlig…
By Casie Liu | Nov 13, 2024
How to Send HTTP/2 Request?
What is HTTP/2? 🤔
HTTP/2 📡 is the latest version of the Hypertext Transfer Protocol, designed to improve performance and speed of web browsing. Unlike HTTP/1.1, HTTP/2 uses multiplexing, header compression, and prioritization to enhance efficiency …
By Coco Min | Nov 13, 2024
Is async django ready for prime time?
We have traditionally used Django in all our products. We believe it is one of the most underrated, beautifully designed, rock solid framework out there.
https://x.com/Jonathan_Adly_/status/1855357440034009362
However, if we are to be honest, the h…
By Jonathan Adly | Nov 13, 2024
Understanding Ternary Operators: Simplifying Ternary Conditional Logic over If/Else Statements
Introduction
My first encounter with conditional (ternary) operations was when I first ventured into the world of programming. Along my journey, I was tasked with writing a monty program, where I had to define a data structure to use in the program a…
By Yushahu Yussif Azara | Nov 13, 2024
Hello, World!
print("Hello, World!")
By baziar | Nov 13, 2024
The Ethics and Legalities of Web Scraping: What You Should Know
Web scraping, the process of extracting data from websites, has become a valuable tool for industries worldwide. While web scraping is incredibly useful, it’s also essential to consider the ethical and legal implications of scraping data. In this art…
By Paras | Nov 14, 2024
Some basic commands for using the nano text editor:
Here are some basic commands for using the nano text editor:
Opening and Navigating Files
Open a file: nano filename
Move cursor: Use the arrow keys.
Go to a specific line and column: Ctrl + _, then enter the line and column number.
Editing Text…
By Masum Kazi | Nov 14, 2024
print(result) "Part 6 of NotADev"
Aligning the Trading Script with the Enhanced Model
In the last article, I talked about how I collaborated with ChatGPT to introduce new features to my trading model, such as Recursive Feature Elimination (RFE), XGBoost, and hyperparameter tuning. Wi…
By Isa | Nov 14, 2024
How to Build an Impressive Data Analytics Portfolio
In data analytics, a strong portfolio is essential. It shows your data handling, insight generation, and visualization skills. Whether you're new or experienced, a good portfolio highlights your abilities. Here's a guide to building a standout portfo…
By Sai Sravanthi | Nov 14, 2024
Starting with Sentiment Analysis with Python
Hey everyone! I wanted to share this project I recently worked on—it’s all about sentiment analysis using Python. If you've ever been curious about how people feel when they post on social media or wanted to dig into public opinion on a topic, then s…
By Divya Goyal | Nov 14, 2024
Get Started with Tableau
Data is the fuel of modern business. But data alone is not enough; it needs to be presented in a way that makes sense and drives decision-making. That’s where Tableau, a leading data visualization tool, comes into play. Whether you’re a beginner or l…
By Sai Sravanthi | Nov 14, 2024
Understanding Ternary Operators: Simplifying Ternary Conditional Logic over If/Else Statements
Introduction
My first encounter with conditional (ternary) operations was when I first ventured into the world of programming. Along my journey, I was tasked with writing a monty program, where I had to define a data structure to use in the program a…
By Yushahu Yussif Azara | Nov 13, 2024
My Python Learning Journey: Week 2 – Steps I Took, Problems I Faced, and How I Solved Them.
Hey everyone, in this week, I learned about the following Python concepts:
Conditional Expression (if, elif, else)
Loops in Python (while and for)
Functions (def) and Recursions
These are the steps I took to grasp the concepts:
Used if, elif,…
By Sheikh Abdul Wahid | Nov 14, 2024
How to Use Python for DevOps: Essential Skills and Tools for Beginners (Part-1)
💡 Introduction
Welcome to the world of DevOps! Today, we're tackling one of the most frequently asked questions in the DevOps community: How much Python is needed for DevOps? This blog will take you through everything essential in Python, from begin…
By Pravesh Sudha | Nov 14, 2024
10 Useful yet Rarely Used OS Functions in Python
You must have used functions provided by the os module in Python several times in your projects. These could be used to create a file, walk down a directory, get info on the current directory, perform path operations, and more.
In this article, we’ll…
By Sachin Pal | Nov 14, 2024
Regressão Linear em Python
Neste artigo, vamos aprender um pouco sobre regressão linear em Python, explorando conceitos básicos e desvendando códigos que te levarão entender essa ferramenta. Estes conhecimento pode abrir portas para a análise de dados e a construção de modelos…
By Marcel Otavio Cerri | Nov 14, 2024
Python .env and .gitignore
What is .env file?
The .env file is used in projects to store configuration settings, environment variables, and sensitive information securely. It provides a convenient way to manage and organize various parameters that your project needs without h…
By Cañete,Brandon L. | Nov 14, 2024
22 GitHub Repositories for Learning Web Development: HTML, CSS, MERN, Python, and Django
If you're on a journey to becoming a skilled web developer or full-stack engineer, finding the right resources is essential. GitHub is a goldmine for such resources, with repositories that cover everything from basic HTML and CSS to advanced topics l…
By Bonaventure Ogeto | Nov 14, 2024
Programming Languages Are Invented Almost Like Art
You know, sometimes I wonder: where do programming languages really come from? Was Guido van Rossum just minding his business one day, chilling with a pet python, and suddenly thought, “Hey, I’ll name my language after you!” Or maybe Brendan Eich was…
By Nicsady Ngwenya | Nov 14, 2024
Deploying web app with Nginx and Cloudflare
This setup is for Django app but can also applies to other platform as well. The general setup before we get into details:-
Run django with gunicorn
Manage the gunicorn process with systemd
Nginx as reverse proxy that forward incoming requests to …
By Kamal Mustafa | Nov 14, 2024
Installation
Building SPA with Django and HTMX, tailwind
What I will do:
Install packages for the project
Create a Django project app and set up templates and static at the project level
Create an app tracker with Tailwind
Set up basic templates for Htmx
In…
By Yoojin Ko | Nov 14, 2024
Manage Permissions in a Langflow Chain for LLM Queries using Permit.io
AI technology is advancing faster than ever, and managing access control and permissions within large language model (LLM) workflows is crucial, mainly when you’re dealing with sensitive data or optimizing resource usage.
Without a well-structured ac…
By Mr. Ånand | Nov 15, 2024
Dockerizing Django- A Python Based Web-Framework
Introduction
In the last post of the series, we saw a brief introduction to containerization and Docker. In this blog, we will see how to install Django- A Python-based web framework and run an application over it, and further, we will see how to doc…
By Akash Sutar | Nov 15, 2024
Future-Proof Your Skills: The 5 Best Programming Languages for 2024
Programming language theory is the subfield of computer science that studies the design, implementation, analysis, characterization, and classification of programming languages.
1. Java
You might ask, “Is Java obsolete?” Of course not.
Why is Java st…
By Leo Q | Nov 15, 2024
Python Tricks I use a lot
This article explores some of Python's essential functions—enumerate(), reversed(), zip(), map(), filter(), sorted(), and lambda—showing how they can be used to enhance scripts, simplify data processing, and improve overall network management. This i…
By Pedro D | Nov 15, 2024
Docker Project for DevOps Engineers
Today, we're diving into something really exciting: Docker. If you're a DevOps enthusiast or developer looking to streamline your workflow, Docker is an essential tool. In this post, we'll walk you through how to create a simple web application using…
By Ammar Khan | Nov 15, 2024
Garbage Collection: How It Works and Why It Matters
Garbage collection is one of the really important processes of programming languages as it collects vacant memory quite efficiently with the help of automatic memory reclamation. If not for this, developers would have to manually allocate as well as …
By Laasya Kandukuri | Nov 15, 2024
Python Request with Sample Output
1. Introduction to HTTP Request
Explanation: Making a request to the web server to fetch resources.
response = requests.get("https://aijobs.net/")
print(response.status_code) # Status of the request
Sample Output:
200
2. Python Modules
Relevant …
By Anix Lynch | Nov 16, 2024
BeautifulSoup with Sample Output
Introduction to Web Scraping with BeautifulSoup
Using BeautifulSoup to Parse HTML
Here’s how you can fetch and parse a webpage using requests and BeautifulSoup:
from bs4 import BeautifulSoup
import requests
# Step 1: Fetch the HTML content
url = "ht…
By Anix Lynch | Nov 16, 2024
My Python Project: Playing Snake-Water-Gun Game with Python:
Introduction:
This Snake-Water-Gun game project helped me practice logical thinking, conditional statements, and randomization in Python. In this article, I’ll share how I built the game, the challenges I faced, and their solutions.
These are the st…
By Sheikh Abdul Wahid | Nov 16, 2024
Day 5: Flashcard App – A Python Learning Tool for Beginners
Welcome to Day 5 of my Data Science and Python journey! Today, we're diving into the creation of a simple yet powerful Flashcard app that helps learners (like myself!) review Python basics. Flashcards are a fantastic way to test memory retention and …
By Anastasia Zaharieva | Nov 16, 2024
Building a Real-Time Object Detection and Text Recognition System with YOLOS, TTS, and OCR
In the ever-evolving world of artificial intelligence, integrating computer vision with real-time functionalities is opening doors to smarter, interactive applications. In this blog, we will build a Real-Time Object Detection and Text Recognition Sys…
By Shivani Yadav | Nov 16, 2024
Pedalling Through Montreal's BIXI Data
In our previous article, we discussed the risks of oversimplification and showed how common statistics like the average and standard deviation can be misleading if the raw data is not properly examined first. We’d like to continue this discussion by …
By Mathieu Torchia | Nov 16, 2024
ML Chapter 7: Natural Language Processing
Natural Language Processing (NLP) involves using machine learning models to work with text and language. The goal of NLP is to teach machines to understand spoken and written words. For example, when you dictate something into your iPhone or Android …
By Fatima Jannet | Nov 16, 2024
Code Smell 279 – Loop Premature Optimization
TL;DR: Don't optimize loops without a clear need and concrete real-world evidence
Problems
Premature Optimization
Reduced readability
Increased complexity
Difficult to maintain
Slower debugging
Solutions
Keep it simple
Prioritize clarity
Avoid pr…
By Maxi Contieri | Nov 16, 2024
How to Build No-Code Modal Components for Wagtail CMS Content Editors
What is a modal ?
A good way to promote something on a website is to make it appear as a modal on several pages. It can appear after a few seconds or right after the user opens the site. It’s very handy when you can do that easily from the CMS, inste…
By adonis simo | Nov 17, 2024
10 Must-Know Tips for New Web Developers Entering the Backend World
Transitioning into backend development can be both exciting and overwhelming for web developers primarily versed in frontend technologies. While frontend focuses on the visuals and user interactions, backend development powers the functionality behin…
By Ayusharpcoder | Nov 17, 2024
How to Use Python for DevOps: Essential Skills and Tools for Beginners (Part-2)
💡 Introduction
Welcome back to our journey through Python for DevOps! 🚀 In Part 1, we explored the foundational Python concepts that every DevOps engineer should know, including data types, functions, variables, and more. If you missed it, catch up…
By Pravesh Sudha | Nov 17, 2024
Day 6: Flashcard Data – Organization and Scalability
In today’s post, we will explore the data behind our Python flashcard app, which is stored in a TypeScript file. The main focus will be on the content of the flashcards — the questions, answers, explanations, and code examples that make up the heart …
By Anastasia Zaharieva | Nov 17, 2024
The Mystery of if __name__ == '__main__': in Python – Explained with a Post Office Analogy
When you're learning Python, stumbling upon the line if __name__ == '__main__': might feel like deciphering a secret code. But trust me, it’s simpler than it seems! This line serves as a gatekeeper, determining whether your Python script should execu…
By Akshay Siwal | Nov 17, 2024
Blockchain Data Structures in Python: Creation and Management Tips
With the rise in blockchain technology, different fields of studies are experimenting vigorously to see how blockchain fits into their own environment. The wait is over!!
This python library allows creating secure blockchains with system level speed …
By Soumyo Deep Gupta | Nov 17, 2024
Python Virtual Environment
why virtual environment?
→ Each project demands different version of dependencies (libraries, packages, etc.), So the purpose of virtual environment is to isolate each dependencies for each projects.
→ So dependencies will not installed globally that…
By keerthi raja P | Nov 17, 2024
Python internal working.
Python is an object oriented programming language. It is also called an interpreted language. The standard implementation of python is called “cpython”.
Python internally works as:
First we create a source file using a “.py” Extension. Then the sourc…
By Tiku Sarkar | Nov 17, 2024
How To Create A Safe Virtual Environment To Work On Python Projects
Think that as a developer you are working on some Python projects, each one with their dependencies and packages. If in these projects there are different versions of the same packages or dependencies or even if they use different Python versions you…
By Pedro Henrique | Nov 17, 2024
Practical Data Science: Rectangular Data and Estimation Techniques
Hey everyone, welcome back! If you’re new here, I’m Dhyuthidhar Saraswathula. I write blogs focused on computer science, with a special emphasis on data science and analytics.
Today I will explain Rectangular Data and the measures used to analyze the…
By S.S.S DHYUTHIDHAR | Nov 17, 2024
The Start: 5 Days, 10+ Math Problems
Over the last 5 days, I’ve focused on solving math-based coding problems. These problems not only improved my logical thinking but also helped me strengthen the basics of problem-solving. Here are a few things I’ve learned:
Breaking complex problems…
By Rajesh Sahu | Nov 17, 2024
Week 2 updates
"Life is full of twists and turns; it's how we navigate them that defines our journey."
After a successful Week 1, I was all geared up to replicate the same momentum in Week 2. Much like a car that takes a little extra time to start in winter, beginn…
By Abhishek Dubey | Nov 17, 2024
Building an AI Chat with Google Docs Knowledge Base Using Colab + Pinecone
LLMs can be a huge productivity boost for work, but the output is only as good as the input. To get the best results, you often have to provide extra reference data to go with the query. This is know as RAG (Retrieval Augmented Generation), and can b…
By GreenFlux | Nov 17, 2024
Installing Python and Miniconda on Windows PowerShell.
id.241017155.452718
Here’s a block of commands for installing Python and Miniconda on Windows PowerShell, and then creating an environment named env001:
# Step 1: Install Python
# Download the Python installer
Invoke-WebRequest -Uri https://www.pytho…
By user1272047 | Nov 17, 2024
#Dev.to
Making the Ivorian Labor Code Accessible and Understandable through the RAG System
#devchallenge #database #ai #python
By rezar12 | Nov 11, 2024
Natural Language Processing (NLP)
#beginners #ai #python #nlp
By Manav Saxena | Nov 11, 2024
Effizientes Scrapen von JavaScript-Webseiten
#java #python #javascript #bigdata
By hanna Fischer | Nov 11, 2024
Discover the Best Programming Codes – No Signup or Fees Required!
#programming #python #webdev #javascript
By Waqarabbas | Nov 11, 2024
Django accounts management app (2), login and change password
#django #python #accounts
By Saad Alkentar | Nov 11, 2024
How to Build a Website Using Python
#python
By Sachin Eng | Nov 11, 2024
Top 10 Platforms to Practice Python
#python #tutorial
By Devstories Playground | Nov 11, 2024
Finding the Ideal 💻 Programming Language for Your Project: A Comprehensive Guide 📚✨
#programming #python #softwaredevelopment
By Shreyash Hexadecimal | Nov 11, 2024
Building a Real-Time Location Tracking Solution with Pulsetracker, Laravel, and Python
#laravel #webdev #backend #python
By Walid LAGGOUNE | Nov 11, 2024
Deep Learning Essentials
#deeplearning #programming #python #beginners
By Madhav Ganesan | Nov 11, 2024
How to Send Emails in Python Using Gmail’s Free SMTP Mail Server API
#python #api #gmail #server
By Ali | Nov 11, 2024
a cool db migration project for python
#python #devops #productivity #database
By Raz Kaplan | Nov 11, 2024
10 Mind-Blowing AI Predictions That Will Change Our World by 2030
#ai #python #productivity #career
By Bhanu Srivastav | Nov 11, 2024
Validating JSON Schema with Fixed and User-Defined Keys in Python
#python #json #django #schema
By Sanskar A | Nov 11, 2024
Introducing InsightfulAI: Open-Source Machine Learning Templates for Everyone
#python #ai #machinelearning #nlp
By Philip Thomas | Nov 12, 2024
Implementing CI/CD for ReadmeGenie
#opensource #cicd #testing #python
By Henrique Sagara | Nov 12, 2024
Discover the Best Programming Codes – No Signup or Fees Required!
#webdev #python #javascript #programming
By Yogesh Chavan | Nov 12, 2024
Discover the Best Programming Codes – No Signup or Fees Required!
#javascript #programming #python #productivity
By Amelia james | Nov 12, 2024
Problem solving TASK – 2
#python
By Danielprem | Nov 12, 2024
Building a desktop launcher
#python #desktopapp #launcher
By Choon-Siang Lai | Nov 12, 2024
Odoo Implementation – 10 Key Steps for a Successful Implement Odoo
#odoo #odooimplementation #python
By Nirav Parmar | Nov 12, 2024
Unlocking Django: The Ultimate Framework for AI Web Applications
#django #webdev #python #aiapplications
By SnapNews | Nov 12, 2024
☘️ Growing 3D grass on Your GitHub Profile
#github #githubactions #blender #python
By Ryosuke | Nov 12, 2024
LightningChart Python 1.0
#python #datascience #dataengineering #datavisualization
By Omar Urbano | LightningChart | Nov 12, 2024
Full stack python developer – Day 2
#python #payilagam #functions
By Lakshmi Pritha Nadesan | Nov 12, 2024
How to use the Python better_profanity Filter API with GraphQL
#python #webdev #api #howto
By Frank Joseph | Nov 12, 2024
Full Stack Python Developer – Day 1
#python #payilagam #linux
By Lakshmi Pritha Nadesan | Nov 12, 2024
Everything you need to know about SQLAlchemy
#python #django
By Armen-Jean Andreasian | Nov 12, 2024
Devtools Startup Ideas: Building an AI-Powered Debugging Assistant With Code Samples!
#webdev #ai #startup #python
By Dumebi Okolo | Nov 12, 2024
Python – Functions
#python #payilagam #functions
By Payilagam | Nov 12, 2024
Fun terminal only dice game
#beginners #python #learning
By samuel eldridge | Nov 12, 2024
🎉 Dive into Python 3.13: New Features, JIT Compiler, Free threading & Installation Guide! 🎉
#webdev #python #beginners #programming
By Oliver Bennet | Nov 12, 2024
How I Automated My Workflow by Connecting Python to Google Sheets API
#python #api #googlecloud #data
By Kevin Meneses González | Nov 12, 2024
Building a simple Python app to boost productivity using AI and the BotHub API
#python #productivity #programming #ai
By veseluhha | Nov 12, 2024
Python Object-Oriented Programming (OOP): Making Your Code Smarter and Classier
#python
By Aishwarya Raj | Nov 12, 2024
Taming the Cost of Prompt Chaining with GemBatch
#promptengineering #ai #llm #python
By Benno | Nov 12, 2024
Node.js vs Django: A Backend Developer’s Perspective
#programming #node #django #intertechub
By Samuel Aberra | Nov 12, 2024
Local Workflow: Orchestrating Data Ingestion into Airtable
#programming #tutorial #python #automation
By Akan | Nov 12, 2024
Web canvas with generative neural networks with elements of visual programming.
#ai #python #javascript
By German Whiskey | Nov 12, 2024
Automate code commenting using VS Code and Ollama
#webdev #python
By Megan Lee | Nov 12, 2024
Clerk Update – November 12, 2024
#clerk #nextjs #python #stripe
By Brian Morrison II | Nov 12, 2024
pyCBuild
#python #c #cpp #git
By Jaipal001 | Nov 12, 2024
Part 3: Implementing Vector Search with Ollama
#database #docker #ai #python
By yukaty | Nov 13, 2024
Alive Progress Bars 🚀
#python #programming #development #design
By Lawani Elyon John | Nov 13, 2024
Mathpix is hiring
#hiring #devops #python #machinelearning
By Pablo Jimenez | Nov 13, 2024
🔥 Ultimate Python Utilities Guide: 100 Essential Tools for Every Developer
#python #productivity #automation #tools
By Bohdan Lukianets | Nov 13, 2024
We'll write a little virus with python (Learning)
#webdev #javascript #beginners #python
By Manjiro | Nov 13, 2024
Enhancing Observability in Machine Learning with OpenTelemetry: InsightfulAI Update
#machinelearning #opentelemetry #observability #python
By Philip Thomas | Nov 13, 2024
Getting Started with Python for Web Developers
#python #programming #django #beginners
By Ayush Kumar Vishwakarma | Nov 13, 2024
Let's dive deeper into Python’s **Object-Oriented Programming (OOP)** principles and concepts, with real examples
#programming #python #oop
By Aishwarya Raj | Nov 13, 2024
Why Django is the Top Choice for Building Scalable, Secure Web Applications?
#webdev #beginners #tutorial #django
By Jagruti Rana | Nov 13, 2024
Understanding Generative AI
#python #ai
By Tech Festus | Nov 13, 2024
How I can massively uplaod files into openai do I can make my vector?
#ai #python #help
By Dimitrios Desyllas | Nov 13, 2024
Master Data Science with Python – Enroll Now for Expert-Led Training!
#datascience #python #webdev
By Lokesh Emexo | Nov 13, 2024
Practical Experience: Integrating Over 50 Neural Networks Into One Open-Source Project
#python #tutorial #ai #refactorit
By Vladislav Radchenko | Nov 13, 2024
Cloud VPS Hosting: The Key to Optimized Python Development Environments
#cloudhosting #vpshosting #pythonhosting #python
By Shreyas Joshi | Nov 13, 2024
Who’s Really Following You on Dev.to? A Guide to Analyzing Your Audience
#beginners #python #tooling
By Olga Braginskaya | Nov 13, 2024
Getting Started with Django: Basic Setup and Overview
#webdev #django #python #beginners
By Rohit Rajput | Nov 13, 2024
Password, please! – Building an open source password generator with FastAPI
#python #fastapi #webdev #opensource
By Alex | Nov 13, 2024
How to Send HTTP/2 Request?
#http #echoapi #python #node
By Philip | Nov 13, 2024
How to Automatically Remove All LinkedIn Connections with Python
#python #selenium #automation #webscraping
By Muhammad ABir | Nov 13, 2024
Streamlit Part 7: Build a Chat Interface
#webdev #python #streamlit #tutorial
By James | Nov 14, 2024
🏠 GPT Home 🤖💬 an Open-source Raspberry Pi Home Assistant!
#ai #python #raspberrypi #javascript
By Judah Paul | Nov 14, 2024
What is the flet ?
#flet #python #ui
By Jvan Nichervan | Nov 14, 2024
Looking for some chill games?
#programming #python #webdev #learning
By Miguel | Nov 14, 2024
Introducing InsightfulAI: Public Alpha API for Simplified Machine Learning
#python #machinelearning #datascience #opensource
By Philip Thomas | Nov 14, 2024
JavaScript is like Python
#javascript #python
By Adrian | Nov 14, 2024
What is Computer Vision? (1)
#python #pytorch #computervision #deeplearning
By Super Kai (Kazuya Ito) | Nov 14, 2024
Proqramçı olmaq istəyirəm
#programming #beginners #howto #python
By Karim Tahiroglu | Nov 14, 2024
Echtzeit-Aktienkurse mit Python erhalten
#python #aktienkurse #aktien #webdev
By hanna Fischer | Nov 14, 2024
Data Preprocessing Techniques for ML Models
#machinelearning #datascience #python #data
By Ife | Nov 14, 2024
🚀 Project Journey #1: Picking the Tech Stack & Diving into AI 🤖
#programming #ai #openai #python
By 0x2e73 | Nov 14, 2024
Can Machines Think? The Role of the Turing Test in Artificial Intelligence
#ai #machinelearning #python #programming
By Bikash Daga | Nov 14, 2024
How Python Powers Personalized Recommendations and Boosts Sales.
#python #machinelearning #ai #recommendationsystem
By Vaishali | Nov 14, 2024
Manage Permissions in a Langflow Chain for LLM Queries using Permit.io
#ai #programming #python #tutorial
By Astrodevil | Nov 14, 2024
Notes on GPU-Mode lecture 1
#ai #python #learning #beginners
By Mitchell | Nov 14, 2024
Taming the Machine Learning Pipeline Beast: ZenML Edition
#machinelearning #zenml #python #datascience
By Arka Dash | Nov 14, 2024
The Adventures of Blink S2e10: Artificially Intelligent Hangman (Season Finale!)
#ai #docker #opensource #python
By Ben Link | Nov 14, 2024
10 Useful but Rarely Used OS Functions in Python
#python #os #functions
By Sachin | Nov 14, 2024
Python Modules and Packages: Unpacking Code Reusability
#python
By Aishwarya Raj | Nov 14, 2024
Transform UI Screenshots into HTML & CSS with Qwen Coder and Qwen VL
#webdev #javascript #tutorial #python
By Aryan Kargwal | Nov 14, 2024
Python Error Types Explained: Troubleshooting for Beginners
#python #coding
By Namima Islam | Nov 15, 2024
Python vs. Java: Which Language is Better?
#webdev #javascript #python #programming
By Techpulse | Nov 15, 2024
Why use Python for data analysis (when you have Excel or Google Sheets)
#spreadsheets #analytics #python #sheets
By Marc Dupuis | Nov 15, 2024
Validatorian
#webdev #sql #python #flask
By Chevy Vall | Nov 14, 2024
Best Programming Languages for Beginners: Where to Start in 2024
#webdev #beginners #programming #python
By Techpulse | Nov 14, 2024
7 AI Open Source Libraries To Build RAG, Agents & AI Search
#beginners #ai #python #opensource
By Saurabh Rai | Nov 15, 2024
UV – A Ferramenta que Simplifica o Gerenciamento de Ambientes e Dependências no Python
#python #uv #productivity #programming
By Kevin | Nov 15, 2024
How to Use Proxies in Python
#python #webscraping #development
By Federico Trotta | Nov 15, 2024
Feature Selection with the IAMB Algorithm: A Casual Dive into Machine Learning
#machinelearning #python #ai
By Hilda Ogamba | Nov 15, 2024
Ensuring Fair Processing with Celery — Part I
#python #backend #celery #tutorial
By Yuyi Kimura (YK46) | Nov 15, 2024
An Open-Source Platform for Multi-Agent AI Orchestration
#ai #python #opensource
By Jeremy Rivera | Nov 15, 2024
# From Jest to Pytest: A JavaScript Developer's Journey into Python Testing
#python
By Peter Wan | Nov 15, 2024
Setting up a REST API in Python for DynamoDB
#flask #python #aws #dynamodb
By Sreekesh Iyer | Nov 15, 2024
python session day 2 at payilagam
#python #functions #predefined #userdefined
By Kuhanraja A R | Nov 15, 2024
python session day-1 at payilagam
#python #beginners
By Kuhanraja A R | Nov 15, 2024
python session day-1 at payilagam
#python #beginners
By Kuhanraja A R | Nov 15, 2024
Stop Reading Your Code, Start Seeing It: The Visual Development Revolution
#development #python #programming #vscode
By shinoj cm | Nov 15, 2024
Who is Ksoft Technologies?
#beginners #python #php #softwaredevelopment
By Ksoft Technologies | Nov 15, 2024
Python Decorators: Adding Magic to Your Functions, One Layer at a Time
#python #decorators
By Aishwarya Raj | Nov 15, 2024
Working With Dates And Times In Python
#python #beginners #webdev #tutorial
By dev_neil_a | Nov 15, 2024
Introduction to Using Python in DevOps for Beginners
#beginners #python #devops #coding
By Kiran Baliga | Nov 15, 2024
Deploying a Flask-based Intrusion Detection System to AWS ECS with CI/CD
#devops #python #aws #docker
By victoriliya | Nov 15, 2024
Graph + LLM or simply LLM for summarization?
#llm #ai #python
By Mayank Laddha | Nov 15, 2024
Mastering TicTacToe : My first Python Project
#beginners #python #learning #softwareengineering
By Angela Molina | Nov 15, 2024
MSN2: An Experimental Programming Language for the Bold Developer
#python #computerscience #backend #javascript
By masonmarker | Nov 15, 2024
Context Managers Demystified: Simplify Your Resource Handling in Python
#python #coding #programming #softwaredevelopment
By Meqdad Darwish | Nov 15, 2024
Conceitos de POO em Python para Programadores C++98
#cpp #python #oop
By Vinnícius Cedraz Ribeiro | Nov 15, 2024
POC : Tamil Date parser using parse
#python #opentamil #dateparsing #poc
By Hariharan | Nov 15, 2024
Comment créer un bot de traduction vocale avec witai
#django #python #ai #googlecloud
By Dominique Megnidro | Nov 15, 2024
Conditional Logic in Python: Examples to Enhance Skills
#conditionallogic #python
By Hasan Mahmud Rhidoy | Nov 15, 2024
Yami – An Open-Source Music Player With Simple Ui
#showdev #python #music #opensource
By deverm | Nov 15, 2024
Deploying a Flask-based Intrusion Detection System to AWS ECS
#devops #python #aws #docker
By Victor | Nov 15, 2024
This Week In Python
#python #thisweekinpython
By Bas Steins | Nov 16, 2024
Mastering Python's Async: Boost Your App Performance with Coroutines and Event Loops
#programming #devto #python #softwareengineering
By Aarav Joshi | Nov 16, 2024
Top 10 Python Frameworks for 2024
#python #pythonframeworks #deeplearning #webdev
By HUSSIEN | Nov 16, 2024
Task Manager App with Flask and MySQL
#devops #python #aws #cloud
By Matthew M Tarfa | Nov 16, 2024
Python Day 1- Build a community
#python #internship #linux
By Guru prasanna | Nov 16, 2024
Scrape but Validate: Data scraping with Pydantic Validation
#python #pydantic #scraping #beautifulsoup
By Ajit Kumar | Nov 16, 2024
Automate Slack Notifications with Graphs Using Cloud Run Functions and Cloud Scheduler
#beginners #googlecloud #webdev #python
By Atsushi Suzuki | Nov 16, 2024
Python Day 2 -Functions-Meaning & types, Data type
#python #functions #datatype #coding
By Guru prasanna | Nov 16, 2024
How to level up your backend skills
#webdev #beginners #python #programming
By Namubiru Rose | Nov 16, 2024
Customizing Retry Predicates in Google Cloud Python Libraries
#googlecloud #python #programming
By Marcelo Costa | Nov 16, 2024
Simplify Your Django Admin with django-unfold
#django #python #tailwindcss #webdev
By Eshat Jubayer | Nov 16, 2024
Unlock Python's Hidden Power: Master Abstract Syntax Trees for Code Wizardry
#programming #devto #python #softwareengineering
By Aarav Joshi | Nov 16, 2024
AITranscriptor
#devchallenge #assemblyaichallenge #ai #python
By Elmer Urbina | Nov 16, 2024
Exploring the Instructor Library: Structuring Unstructured Data (and Some Fun along the Way)
#python #ai #architecture #promptengineering
By Marco A. | Nov 16, 2024
Quick and Dirty Guide to Running a Local LLM and Making API Requests
#ai #llm #python #localmodel
By Marco A. | Nov 16, 2024
Quick and Dirty Guide to Running a Local LLM and Making API Requests
#llm #ai #python
By Marco Amato | Nov 16, 2024
A Comprehensive Guide to Django Models
#webdev #beginners #django
By Ijeoma M. Jahsway | Nov 16, 2024
Notación Big O – Python
#python #performance #bestpractice
By Alexander Jimenez | Nov 16, 2024
Java vs Python: Which Should You Choose for Your Career?
#webdev #java #python #blog
By CodePicker | Nov 16, 2024
How to get refund from Phone Pe wrong transaction? !
#javascript #programming #ai #python
By Ram Kumar | Nov 16, 2024
How to install jupyter notebook
#jupyter #python #ai #machinelearning
By Sandeep | Nov 16, 2024
The Rise of AI Tools in Programming: How They're Changing the Game
#webdev #javascript #programming #python
By Techpulse | Nov 17, 2024
How do you advise someone to practice DSA in their final year of college ?
#datastructures #python #career #webdev
By Sanjay | Nov 17, 2024
10 Advanced Tips to Improve Your Python Code
#python #code #programming #productivity
By HUSSIEN | Nov 16, 2024
Deploying a Flask-based Intrusion Detection System to AWS ECS (Project Summary)
#devops #aws #docker #python
By Victor | Nov 17, 2024
Code Smell 279 – Loop Premature Optimization
#webdev #python #beginners #programming
By Maxi Contieri | Nov 17, 2024
ML Chapter 7: Natural Language Processing
#machinelearning #nlp #tutorial #python
By Fatima Jannet | Nov 17, 2024
What is Computer Vision? (2)
#python #pytorch #computervision #deeplearning
By Super Kai (Kazuya Ito) | Nov 17, 2024
Advanced Wi-Fi Hacking: Cracking WPA3 and Modern Wireless Security
#cybersecurity #wifi #python #programming
By Trix Cyrus | Nov 17, 2024
Demand Forecasting and Inventory Management in Retail Store – SARIMA Model
#datascience #machinelearning #python
By Nivedha | Nov 17, 2024
Python Decorators: More Understanding into Functionality Enhancement
#python
By Aishwarya Raj | Nov 17, 2024
How Qubits are physically implemented?
#python #computerscience #programming #learning
By Ansh Gupta | Nov 17, 2024
The Break Game
#perl #python #theweeklychallenge
By Simon Green | Nov 17, 2024
Write a program to EMI calculator
#python #payilagam #emi
By Lakshmi Pritha Nadesan | Nov 17, 2024
Kohya brought massive improvements to FLUX LoRA (4 GB GPUs) and DreamBooth / Fine-Tuning (6 GB GPUs) training
#beginners #tutorial #ai #python
By Furkan Gözükara | Nov 17, 2024
Write a Python program to BMI calculator
#python #payilagam #bmi
By Lakshmi Pritha Nadesan | Nov 17, 2024
Write a program to SSLC Mark Percentage Calculator
#python #payilagam #percentage
By Lakshmi Pritha Nadesan | Nov 17, 2024
Day 4 – None Datatype & input() function in Python
#python #payilagam #datatype #function
By Lakshmi Pritha Nadesan | Nov 17, 2024
I Tried 33 Data Analytics Courses and These 5 Are the Best
#data #analytics #datacamp #python
By Kevin Meneses González | Nov 17, 2024
Python Day 2 -Functions-Meaning & types, Data type
#python #functions #datatype #coding
By Guru prasanna | Nov 16, 2024
Regular Expressions for Highlighting Comments in PyCharm
#python #pycharm #regex #tricks
By Oleksii Lytvynov | Nov 17, 2024
Write a program to EB bill calculator
#python #payilagam #ebbill
By Lakshmi Pritha Nadesan | Nov 17, 2024
Named Tuples in Python: what type are they?
#python
By guzmanojero | Nov 17, 2024
#Daniel Roy Greenfeld Blogs
TIL: Making pytest use Ipython's PDB
Once I've isolated a test failure to a very small set of failures I use this instead of running pytest directly. What it does on exception is start the IPython pdb interface.
By Daniel Roy Greenfeld | Nov 13, 2024
TIL: LiteCLI, Improved SQLite CLI
LiteCLI is a command line interface for SQLite with auto-completion and syntax highlighting.
By Daniel Roy Greenfeld | Nov 14, 2024