#Real Python
Beautiful Soup: Build a Web Scraper With Python
In this tutorial, you'll walk through the main steps of the web scraping process. You'll learn how to write a script that uses Python's Requests library to scrape data from a website. You'll also use Beautiful Soup to extract the specific pieces of information you're interested in.
#intermediate #data-science #tools #web-scraping
By – | Oct 28, 2024
Python Dictionary Comprehensions: How and When to Use Them
In this tutorial, you'll learn how to write dictionary comprehensions in Python. You'll also explore the most common use cases for dictionary comprehensions and learn about some bad practices that you should avoid when using them in your code.
#intermediate #python
By – | Oct 30, 2024
The Python Square Root Function
In this quick and practical tutorial, you'll learn what a square root is and how to calculate one in Python. You'll even see how you can use the Python square root function to solve a real-world problem.
#basics
By – | Nov 03, 2024
#Django Project – Weblog
2025 DSF Board Candidates
By Thibaud Colas | Oct 28, 2024
#PyCoders
Issue #653 – Sudoko in Packaging, Thread Safety, Sigstore, and More
By – | Oct 29, 2024
#Hashnode
Dockerizing Django with Postgres, Gunicorn, and Nginx
Dockerizing Django with Postgres, Gunicorn, and Nginx
This is a step-by-step tutorial that details how to configure Django to run on Docker with Postgres. For production environments, we'll add on Nginx and Gunicorn. We'll also take a look at how to …
By S. M. Arefin Rumi | Oct 28, 2024
Python Lists: An In-Depth Guide
Introduction
In Python, a list is a built-in data structure that is mutable, ordered, and allows duplicate elements. Lists are versatile and widely used for storing collections of items such as numbers, strings, or even other lists.
Table of Content…
By Sai Prasanna Maharana | Oct 28, 2024
Streamlining Design-to-Development with Custom Tools
In the fast-paced world of software development, the journey from design to code is often fraught with challenges. Designers meticulously craft user interfaces, carefully selecting colors, typography, and spacing, yet translating these into code can …
By Ahmed Ramzy | Oct 28, 2024
To !pip or %pip Install Python Libraries In A Spark Cluster ?
The answer is %pip. That’s what I have always done just based on experience and it’s explicitly mentioned in the documentation as well. But I wanted to experimentally verify myself. When you use !pip , it’s a shell command and always installs the lib…
By Sandeep Pawar | Oct 28, 2024
Como fazer o deploy do Python Sphinx no Github pages
Hoje veremos como utilizar o GitHub Actions para automatizar o processo de deploy do Python Sphinx no Github Pages.
O que é o Sphinx?
O Sphinx é uma poderosa ferramenta de documentação que facilita a criação de documentação para projetos Python.
Ele …
By Renato Cruz | Oct 28, 2024
How to Delete Rows and Columns from Excel in Python: Quick Guide
When working with Excel files, it's common to delete rows or columns that are either unnecessary or empty. While Excel does offer built-in options for deleting data, handling this manually can be time-consuming and prone to error.
To streamline the p…
By Casie Liu | Oct 28, 2024
Introduction to Knowledge-Based AI Agents
Artificial Intelligence (AI) has come a long way from simple rule-based systems to highly sophisticated models capable of learning from experience, understanding context, and reasoning under uncertainty. At the core of some of the most powerful AI ap…
By The Paritosh Kumar | Oct 28, 2024
Python Classes: A Comprehensive Guide
Introduction
In Python, a class is a blueprint for creating objects (instances) that encapsulate data and functionality together. Classes define the structure and behavior of the objects, allowing you to model real-world entities in your code. Unders…
By Sai Prasanna Maharana | Oct 28, 2024
Introducing File Cleaner Pro: Your AI-Powered Digital Space Organizer🚀
TL;DR: File Cleaner Pro is a revolutionary AI-powered file management tool that intelligently organizes your digital space, eliminates duplicates, and optimizes storage – all while protecting your important files. Built with cutting-edge machine lear…
By conquerR | Oct 28, 2024
Python "venv" is a Virtual Environment. But what does that mean?
VENV – It stands for virtual environment in python. It’s a tool that helps us to create an isolated environment for our projects. When we are working with multiple projects it allows us to work with its particular dependencies. Or maybe when our proj…
By spandana patil | Oct 28, 2024
Python Functions: A Comprehensive Guide
Introduction
In Python, a function is a reusable block of code that performs a specific task. Functions help break our program into smaller and modular chunks, making it more organized, manageable, and reusable. Python functions can accept inputs (pa…
By Sai Prasanna Maharana | Oct 28, 2024
Object-Oriented Programming (OOP): An In-Depth Guide
Introduction
Object-Oriented Programming (OOP) is a programming paradigm centered around objects rather than actions. It allows developers to model real-world entities using classes and objects, promoting code reusability, modularity, and maintainabi…
By Sai Prasanna Maharana | Oct 28, 2024
Linguagens de programação.
O processo de produção de um software exige basicamente dois elementos: uma linguagem de programação e um compilador (ou interpretador). A linguagem de programação é uma linguagem de alto nível que o profissional da computação utiliza para expressar …
By Nathan Virgílio | Oct 28, 2024
Automating Fabric: Kickstart your Fabric Data Platform setup
Setting up and managing workspaces in Microsoft Fabric can be a time-consuming task, especially when you need multiple workspaces for various stages of the data lifecycle across different environments. This blog post demonstrates how to streamline yo…
By Peer Grønnerup | Oct 28, 2024
Python tkinter alert calendar project .
Python tkinter alert calendar project .
https://github.com/Risico98908/alert.calendar.py.tkinker/tree/main
#!/usr/bin/env python3
#/0.myfiles/notify.02.py
import json
import tkinter as tk
from tkinter import messagebox
from datetime import datetime
…
By user1272047 | Oct 28, 2024
User Registration with OTP verification
In this article we’ll learn how to perform user registration with OTP verification. This is a beginner level article but you need to have basic knowledge about django and django rest framework.
If you’re not aware those, you can refer following tutor…
By Abishek Reddy | Oct 29, 2024
Automate Your Backups to Amazon S3 with Python
As data continues to be a critical asset in the digital world, creating reliable backups is more important than ever. Automating backups can help prevent data loss, streamline restoration, and reduce manual effort, especially for crucial files and di…
By Shivam Soni | Oct 29, 2024
Understanding and verifying Ethereum transaction calldata
The Radiant Capital hack, which resulted in a loss of approximately $50 million, shows the importance of verifying calldata before signing transactions. In this sophisticated attack, hackers compromised developers' hardware wallets and injected malwa…
By valens | Oct 29, 2024
How Concept Learning Powers Recommendation Systems?
Introduction
Recommendation systems have become an integral part of online platforms, guiding users to the products, services, or content they might enjoy based on their preferences and interactions. Whether it's Netflix suggesting a movie, Amazon re…
By Paras | Oct 29, 2024
Como fazer o deploy de um aplicativo Qt com Github Actions
Como fazer o deploy de um aplicativo Qt com Github Actions
Hoje veremos como utilizar o GitHub Actions com Nuitka para automatizar o processo de deploy de um aplicativo que utiliza a linguagem de programação Python e o binding PySide6.
O que é o Gith…
By Renato Cruz | Oct 29, 2024
ML Classification: Logistic Regression
Welcome to part 3!
In regression we used to predict a continuous number. But in classification, we will predict a categorical value. Wide variety of classification models are used in machine, marketing, business medicine; such as: Logistic regression…
By Fatima Jannet | Oct 29, 2024
Python for AI
Code Your Way to the Future: The Power of Python
Have you ever wondered how computers understand and execute our commands? The answer lies in the art and science of computer programming. It's like teaching a computer a new language, giving it precise…
By Dataclin | Oct 29, 2024
"Unlocking the Power of Functions in Python 🐍"
What is a Function?
A function is a block of reusable code that performs a specific task. It allows you to break down programs into smaller, manageable parts. Functions improve code readability, reusability, and structure.
Defining a Function
In Pyth…
By Sandeep | Oct 29, 2024
Linked Lists (3) – Prepend, Pop First, Get, Set, Insert
I haven't taken the course because I had to work on my paper…
Today, I learned about Prepend, Pop First, Get, Set, and Insert in Linked Lists (LL).
Prepend
def prepend(self, value):
new_node = Node(value)
if self.length == 0:
…
By KiwiChip | Oct 29, 2024
How I used Voice AI to bring imaginary characters to life!
Most evenings, when tucking my daughter in(she’s 6 years old); I read a bedtime story to her, but not your conventional bedtime storybooks, no. One of the most fun things we love doing is to make up our own imaginary characters and stories.
One such …
By Kevin Naidoo | Oct 29, 2024
ML Classification: K-NN (K-Nearest Neighbor)
Hello and welcome back to the ML blogs. Today we will learn about the K nearest neighbor. Let’s get started!
Intuition
Let’s say you have a plot where you have two types of category, red data and green data. Now, if a new data point appears where sho…
By Fatima Jannet | Oct 29, 2024
AWS Lambda & it's layered problems 🧵
This article focuses on how "layers" within AWS Lambda can sometimes become problematic and how we can solve this issue using containerized Lambda functions.
AWS Lambda a serverless compute service used for performing short running tasks, With lambda…
By Anirudh Singh Bhadauria | Oct 29, 2024
🚀 Day 15 Task: Basics of Python for DevOps Engineers 🐍
Hey Dosto! 👋 Today, we’re diving into the fundamentals of Python, an essential language for DevOps engineers. Python makes scripting, automation, and data manipulation simpler and more efficient — skills that are vital in DevOps.
🔍 What is Python?…
By Naushad Khan | Oct 29, 2024
أهم الأنماط البرمجية لحل مشاكل المقابلات التقنية بكفاءة
لما نحكي عن البرمجة التنافسية أو المقابلات التقنية، بنلاحظ إنه المشكلة مش بعدد المسائل اللي بنحلها، بل في الأنماط البرمجية اللي بنتعلمها ونتقن استخدامها. تعلم الخوارزميات وأنماط البرمجة الفعّالة مش بس بيمكنك من حل مجموعة متنوعة من المشاكل بسرعة وكفاء…
By Salman Iyad | Oct 29, 2024
Mathober2024_Hypergeometric
BeyondTheStats
For the 23rd piece of Mathober2024,The prompts being used are the 12th prompt with Hypergeometric and the 31st Prompt with Lie. BeyondTheStats, takes the hypergeometric of fictional citizens of various planets with the mathematical fic…
By Kofi / Illestpreacha | Oct 29, 2024
Day 15: Basics of Python for DevOps Engineers 🐍💻
Let's begin with the fundamentals of Python, as it's essential for DevOps Engineers to develop logic and build programs.
What is Python?
Python is an open-source programming language, which means it’s free to use, and anyone can contribute to improvi…
By Anjali Kashyap | Oct 30, 2024
2684. Maximum Number of Moves in a Grid
class Solution:
def maxMoves(self, grid: List[List[int]]) -> int:
ans = 0
def traverse(a, b, prevVal):
nonlocal count, ans
if (a, b) in visited:
return
visited.add((a, b))
…
By Tapan Rachchh | Oct 30, 2024
Understanding Activation Functions in GANs
Generative Adversarial Networks (GANs) have gained significant traction in deep learning, largely due to their ability to generate data resembling real-world data. Central to the functionality and performance of GANs are activation functions, which i…
By Arya M. Pathak | Oct 30, 2024
ML Classification: Support Vector Machine (SVM)
Support Vector Machines (SVMs) were initially developed in the 1960s and refined in the 1990s. Currently, they are becoming very popular in machine learning because they have demonstrating that they are very powerful and somewhat different from other…
By Fatima Jannet | Oct 30, 2024
Automating Microsoft Fabric:
Private Endpoint Setup in workspaces
In an exciting development, Microsoft Fabric just announced support for APIs dedicated to managing private endpoints, a crucial feature for organizations prioritizing secure and private data access. Building on my previous posts on automating Fabric …
By Peer Grønnerup | Oct 30, 2024
Day 15 : Basics of Python for DevOps Engineers
What is Python?
Python is an open-source, general-purpose, high-level, and object-oriented programming language created by Guido van Rossum. It has a vast ecosystem of libraries and frameworks, such as Django, TensorFlow, Flask, Pandas, Keras, and ma…
By Shivani Singh | Oct 30, 2024
Checkpoint #4, 28/10/2024 – Learning API Programming
The goal of this mini project was to get an introduction to API programming by creating a very simple API that would retrieve information from a database and storage account, both of which would be hosted on Azure’s cloud servers. Along with Python, …
By Yashasvi Rallabandi | Oct 30, 2024
Understanding Conda: Your Guide to Virtual Environment Management
Anaconda Distribution is a free Python/R data science distribution. It contains:
conda – a package and environment manager for your command line interface. conda is also written in python and is a python package.
Anaconda Navigator – a desktop appli…
By Shivanshu Semwal | Oct 30, 2024
Journey of Deploying a React App Using Jenkins, Docker, and Kubernetes
Deploying a React application can be an intricate process, especially when integrating powerful tools like Jenkins, Docker, and Kubernetes. This blog covers the journey, challenges encountered, and solutions applied, leading to a seamless deployment….
By Tanay Thulkar | Oct 30, 2024
Threading and Multiprocessing in Python: An In-Depth Guide
Introduction
Threading and multiprocessing are techniques to achieve concurrency in programs, allowing them to perform multiple tasks simultaneously. Understanding these concepts is crucial for optimizing program performance, especially in applicatio…
By Sai Prasanna Maharana | Oct 30, 2024
Building Infinity: Actions – The Building Blocks
At its heart, Infinity is built around Actions. Think of them as little packets of Python code that do one specific thing. They're like Lego blocks, but instead of plastic, they're made of code. And just like Legos, you can snap them together to buil…
By always wrong | Oct 30, 2024
Nornir Fundamentals and Configuration
This chapter introduces the Nornir framework and its core components. You'll learn how to set up Nornir, define
Introduction to Network Automation
In today's dynamic and complex network environments, manual configuration and management are becoming i…
By Pedro D | Oct 30, 2024
ErgoVision: Complete Technical Documentation and Implementation Guide
ErgoVision is an AI-powered ergonomic assessment system developed in collaboration with SIIR-Lab at Texas A&M University. This documentation provides comprehensive implementation details and setup guidelines.
Technical Architecture
1. System Componen…
By Chidozie Managwu | Oct 30, 2024
Building event driven application using Fast API, Django, and Kafka
In this article, I’ll walk through how to build a basic to-do app using event-driven architecture principles. This system is designed to handle high traffic workloads and achieve scalability.
Prerequisites
This article will focus on using Kafka with …
By Gaurav Jaiswal | Oct 31, 2024
Basics of Python for DevOps Engineers
Today, let’s start with Python – one of the most essential languages for DevOps engineers. Knowing Python opens the door to automating tasks, building applications, managing infrastructure, and much more. Let's dive into the basics of Python, from in…
By Spoorti Shetty | Oct 31, 2024
Linked List (3) – Prepend, Pop First, Get, Set, Insert
I haven't taken the course because I had to work on my paper…
Today, I learned about Prepend, Pop First, Get, Set, and Insert in Linked Lists (LL).
Prepend
def prepend(self, value):
new_node = Node(value)
if self.length == 0:
…
By KiwiChip | Oct 29, 2024
How to Convert HTML to PDF in Python [Quickly in 3 Steps]
How do I change an HTML file to a PDF?
You may have seen this question on Reddit and have the same request. The conversion between HTML and PDF can be a crucial step in creating reports, archiving web content, sharing data and so on. While manually …
By Casie Liu | Oct 31, 2024
Beginner's Python for Leetcode
A beginners guide to strings and arrays in Python for Leetcode
Getting started with leetcode was a rough task for me. I’d open up the site all motivated, hyped to go on a problem solving rampage thinking the “easy” tag actually meant easy. However, I…
By Arjun Patil | Oct 31, 2024
Using Python functions in Jinja templates
In certain situations, Jinja templates can become overly complex and difficult to manage due to the presence of numerous deeply nested if statements, which can make the logic hard to follow and maintain, and methods used to handle variables can becom…
By Pedro D | Oct 31, 2024
Como criar um aplicativo com Python e GTK no Windows WSL 2
Hoje veremos como preparar o ambiente de desenvolvimento para a criação de aplicativos com a linguagem de programação Python (PyGObject) e o toolkit gráfico GTK no WSL 2 (Windows Subsystem for Linux) do Microsoft Windows.
Através do WSLg (Windows Sub…
By Renato Cruz | Oct 31, 2024
GIT : Behind the scene
Introduction to Git and Version Control Git is a powerful version control system used to manage and track changes in code. Whether you're a beginner or an experienced developer, understanding the nuances of Git commands can greatly enhance your codin…
By Abhishek Dubey | Oct 31, 2024
Applying OASIS-3 Data to TFF
https://arxiv.org/abs/2112.05761
https://github.com/GonyRosenman/TFF
Pre-processing codes
preprocessing.py
import os
import numpy as np
import nibabel as nib
import torch
from multiprocessing import Process, Queue
def read_hcp(file_path,global_nor…
By KiwiChip | Oct 31, 2024
Building a Cloud-Native Code Compiler with Django and AWS ECS: A Learning Journey
Introduction
Hey fellow developers! Today I'm excited to share my journey building an online code compilation system that combines Django with AWS ECS. This project started as an exploration into cloud-native applications and evolved into a practical…
By Kanav Gathe | Oct 31, 2024
"Lambda Functions in Python 🐍"
Lambda Functions (Anonymous Functions)
A lambda function is a simple function that can be defined without a name.. It is also known as an anonymous function because it doesn't require the use of the def keyword to create a function with a name. Lambd…
By Sandeep | Oct 31, 2024
Simplify SaaS App Form Customization With Django Tenant Options
I've been working on a Django package for a couple of years now that solves a specific, but common problem in B2B SaaS applications. If you've ever built a multi-tenant application where different business customers need to customize form options whi…
By Jack Linke | Oct 31, 2024
Batch Normalization in GANs: A Mathematical Guide for Stable Training
Generative Adversarial Networks (GANs) are powerful but often challenging models to train, particularly when targeting sophisticated applications. Unlike straightforward classifiers, GANs rely on a nuanced interplay between a generator and a discrimi…
By Arya M. Pathak | Oct 31, 2024
Crear entornos virtuales
Un entorno virtual en Python es un espacio aislado donde puedes instalar paquetes y bibliotecas sin afectar el resto del sistema o tus otros proyectos. Esto te permite mantener dependencias específicas para cada proyecto, evitando conflictos y asegur…
By Marco Meza | Oct 31, 2024
print(result) "Part 5 of NotADev"
Advancing the Model with New Features and Overcoming Challenges
As I continue my journey to enhance my trading bot, I've reached a significant milestone—the integration of new machine learning features into my model. This has been both an exciting an…
By Isa | Nov 01, 2024
A Beginner’s Guide to Kafka with Python: Real-Time Data Processing and Applications
Introduction to Kafka
Kafka is an open-source distributed event streaming platform developed by Apache.
Originally created by LinkedIn, it was designed to handle high throughput, fault-tolerant, and real-time data streaming.
Kafka allows systems t…
By keshav dk | Nov 01, 2024
Linked List Exercise (1) – Middle of the linked list
Leetcode – middle of the linked list (URL)
Entire code
class Node:
def __init__(self, value):
self.value = value
self.next = None
class LinkedList:
def __init__(self, value):
new_node = Node(value)
self.head…
By KiwiChip | Nov 01, 2024
Como criar um aplicativo com Python e GTK no ChromeOS
Hoje veremos como preparar o ambiente de desenvolvimento para a criação de aplicativos com a linguagem de programação Python (PyGObject) e o toolkit gráfico GTK no Chromebook (ChromeOS) 🤩.
OBS: Antes de mais nada, é necessário que o ambiente Linux …
By Renato Cruz | Nov 01, 2024
Convert HTML to Word with Python: A Simple Three-Step Guide
“How to convert HTML text to MS Word Doc?”
Interest in converting between HTML and Word documents has been high for years, with questions on the topic appearing on forums as early as 2012. Whether for creating reports or collecting content for offli…
By Casie Liu | Nov 01, 2024
Swarm: El Framework Experimental de OpenAI para Orquestación de Agentes
En el dinámico mundo del desarrollo de sistemas de IA, OpenAI ha introducido Swarm, un framework experimental que promete revolucionar la manera en que orquestamos y coordinamos agentes de inteligencia artificial. Este proyecto educativo explora inte…
By Carlos Alarcón | Nov 01, 2024
How to Isolate Python Package Management with pipx
Python has a vast ecosystem of command-line tools, but installing these globally with pip can lead to version conflicts and dependency issues. pipx offers a modern solution by enabling global installations in isolated environments. In this guide, we'…
By Bonaventure Ogeto | Nov 01, 2024
Installing Python and Setting Up Your First Virtual Environment: A Beginner’s Guide
Introduction
If you’re just getting started with Python development, you’ll quickly realize how important it is to manage your development environment. Virtual environments are essential to keep your projects organized and prevent dependency conflict…
By Likhith SP | Nov 01, 2024
Linked List (4) – Remove and Reverse
In my Python algorithms class, we recently worked with linked lists. The reverse method is a popular topic in technical interviews, but it was slightly harder to understand than the remove method. Below are detailed notes on both.
Remove
The remove m…
By KiwiChip | Nov 01, 2024
Decision Tree Classification in Python
Classification is a two-step process; a learning step and a prediction step. In the learning step, the model is developed based on given training data. In the prediction step, the model is used to predict the response to given data. A Decision tree i…
By Bhavya Shingari | Oct 31, 2024
Monolithic Django and React.js: Tips and Tricks
In early stage of startup we use Django React in Monolithic architecture to reduce over complexity and make things simple and clean. Since we don't have any CI/CD tools we are forced make some automation in our existing Monolithic architecture to mak…
By JOY SAM RAJ | Nov 01, 2024
ML Classification 3.4: Kernel SVM
Hello and welcome back to machine learning. Previously we learned about linear support vector machine algorithm. Today we’ll learn the kernel support vector algorithm. Let’s start
Kernel SVM Intuition
As you can recall, in the support vector machine …
By Fatima Jannet | Nov 01, 2024
Gesture Controlled Virtual Mouse
One afternoon, while studying a PDF on my PC, I had to keep scrolling down with my mouse, which was out of reach. It was frustrating. So, I wondered, "Isn't there a way to use my hands from a far distance to scroll the PDF?" With this thought, I sear…
By Shagnik Sarkar | Nov 02, 2024
Activity 18: Research Virtual Environment and Python package manager (SIA2)
How to Create and Use Virtual Environments
Create a Virtual Environment: Run the following command in your terminal to create a virtual environment:
python -m venv myenv
This creates a folder (myenv) containing a Python interpreter and a separa…
By Monette Nicolas | Nov 02, 2024
How To Connect Database With Python
In this article, we’ll learn how to connect MySQL database with Python using the PyMySQL database driver.
Connect Database with Python
First, we need to install a MySQL database driver called PyMySQL that will help us bridge Python and MySQL.
pip ins…
By Sachin Pal | Nov 02, 2024
Activity 35: Documentation of your Basic CRUD API (SIA2)
Basic CRUD API Documentation
Overview
This API is designed for managing a list of students, offering basic CRUD operations to add, view, update, and delete student information. Each student record includes attributes like name, section, ID, email, an…
By Monette Nicolas | Nov 02, 2024
Como criar um aplicativo com Python e GTK no MS Windows
Hoje veremos como preparar o ambiente de desenvolvimento para a criação de aplicativos com a linguagem de programação Python (PyGObject) e o toolkit gráfico GTK no Microsoft Windows.
MSYS2
O MSYS2 permite que pacotes, ferramentas e bibliotecas do Lin…
By Renato Cruz | Nov 02, 2024
Activity 34: Basic Crud Python FLask API (SIA2)
Create a Project Folder:
First, create a new folder where you want to store your project files.
Open a terminal or command prompt and navigate to that folder.
Commands:
mkdir flask_api_project
cd flask_api_project
Create the Virtu…
By Monette Nicolas | Nov 02, 2024
Linked List Exercise (2) – Linked List Cycle
https://leetcode.com/problems/linked-list-cycle/description/
Entire Code
# Definition for singly-linked list.
class Node(object):
def __init__(self, value):
self.value = value
self.next = None
def create_linked_list(values):
…
By KiwiChip | Nov 02, 2024
"Recursion in Python 🐍":
Recursion:
Recursion is a programming technique where a function calls itself to solve a smaller part of the same problem.
Each time the function calls itself, it breaks the problem down into smaller and smaller parts until it reaches a point where…
By Sandeep | Nov 02, 2024
Deployment of Login Page with DB
This is a basic login page which is configured with a MySQL database. So, the data of username and password is being stored in the database tables which you can further check also.
Part 1: Run in Local Server or EC2
Install MySQL on the EC2 Instance…
By Harshit Sahu | Nov 02, 2024
Autenticación JWT con React JS y Django
Los programadores conocen los beneficios de todo y las ventajas y desventajas de nada. Los arquitectos necesitan entender ambos.
-Rich Hickey, Creador de lenguaje de programación Clojure
JSON Web Token (JWT) es un estándar para la transmisión de inf…
By The impostor | Nov 03, 2024
796. Rotate String
class Solution:
def rotateString(self, s: str, goal: str) -> bool:
return len(goal) == len(s) and goal in s * 2
By Tapan Rachchh | Nov 03, 2024
Creating and Optimizing a Dockerfile for a Simple Web Application
Welcome to today’s blog, where we’ll dive into Dockerfiles and learn how to optimize them for production using multi-stage builds. If you’re looking to build, run, and deploy containerized applications efficiently, learning to create Dockerfiles is e…
By Spoorti Shetty | Nov 03, 2024
Clearing the Confusion: Understanding SSO, SAML, OAuth 2.0, and OpenID Connect
In today’s digital world, where users often have to navigate multiple platforms and applications, understanding authentication mechanisms is essential. In this article, we will demystify the concepts of Single Sign-On (SSO), Security Assertion Markup…
By ritiksharmaaa | Nov 03, 2024
The Ultimate Guide to Smart Investment Planning and Wealth Withdrawal Using Python
Investing can be one of the most powerful ways to secure your financial future, but it comes with a maze of decisions: how much to invest, where to invest, and how to manage withdrawals when the time comes. Wouldn’t it be great to have a tool that he…
By Jyotiprakash Mishra | Nov 03, 2024
Como criar um aplicativo com Python e o toolkit GTK no macOS
Hoje veremos como preparar o ambiente de desenvolvimento para a criação de aplicativos com a linguagem de programação Python (PyGObject) e o toolkit gráfico GTK no macOS.
Preparar o ambiente de desenvolvimento no macOS é bem simples.
Na maior parte d…
By Renato Cruz | Nov 03, 2024
Share docker image on docker hub
If you are new to docker and want to learn everything of docker read this blog From Setup to Deployment: Running a Flask App in Docker on Mac
I have created another blog to Deploy Flask app using docker Compose
Let's start this blog we are going to s…
By Rajnish | Nov 03, 2024
Deploy Flask app using docker Compose
Docker compose
Compose simplifies the control of your entire application stack, making it easy to manage services, networks, and volumes in a single, comprehensible YAML configuration file. Then, with a single command, you create and start all the s…
By Rajnish | Nov 03, 2024
From Setup to Deployment: Running a Flask App in Docker on Mac
Download Docker
Docker Images
Docker Images are the templates (blueprint) of the project
Images can not be updated it's read-only
It has Source code, Libraries, external dependencies, tools etc.
Docker Containers
Containers are the running inst…
By Rajnish | Nov 03, 2024
Jupyter Notebook Basics (Learn What you need)
What is ‘Jupyter Notebook’?
– Jupyter Notebook is an interactive tool for data analysis and Python programming. It allows asking questions to data and visualizing it. Also It provides an interactive and immediate response Python interpreter and suppo…
By Sutapa Biswas | Nov 03, 2024
Python Basics for DevOps Engineers
Introduction
In the world of DevOps, having strong automation skills is essential, and Python is one of the most powerful tools to help achieve that. Whether it’s writing scripts to automate tasks, managing cloud infrastructure, or building logic for…
By Pulkit Yadav | Nov 03, 2024
#Python Software Foundation
PyCon US 2025 Kicks Off: Website, CfP, and Sponsorship Now Open!
By Marie Nordin | Nov 02, 2024
#Dev.to
Llama AI Model: Why It’s the Talk of the Town
#programming #ai #python #opensource
By Smit | Oct 28, 2024
Implementing a Perceptron from Scratch in Python
#machinelearning #ai #python #openai
By Daniel Azevedo | Oct 28, 2024
Webhooks in Django: A Comprehensive Guide
#django #python #webhooks
By aakas | Oct 28, 2024
Adding pytest command to Django manage.py
#python #testing
By Kamal Mustafa | Oct 28, 2024
Django API Project Setup
#python #django #authentication
By Saad Alkentar | Oct 28, 2024
A Beginner’s Guide to Visualizing Data with Python for EDA
#datascience #python #programming #tutorial
By Vikas76 | Oct 28, 2024
Native Domain-Driven Design with Flama
#flama #api #python #machinelearning
By Vortico | Oct 28, 2024
Why Choose R Over Python for Data Science?
#programming #datascience #python #ai
By Bikash Daga | Oct 28, 2024
11 Essential Django Packages for Every Web Development Project
#django #web #development #developer
By Kishan Empiric | Oct 28, 2024
Django REST Framework (DRF) -permissions
#django #api
By DoriDoro | Oct 28, 2024
From Data to Deployment
#flutter #tensorflow #python #deeplearning
By Abdellah Hallou | Oct 28, 2024
Building a Raspberry Pi Weather Station with Python – Part Two
#python #raspberrypi #linux #vscode
By dev_neil_a | Oct 28, 2024
Git Bash Basics: Your First Steps
#programming #devops #python
By Assad Ali | Oct 28, 2024
🚢Exploratory Data Analysis on the Titanic Dataset🚢
#datascience #python #tutorial #learning
By Thatohatsi Matshidiso Tilodi | Oct 28, 2024
Introducing File Cleaner Pro: Your AI-Powered Digital Space Organizer
#ai #python #opensource #software
By ym qu | Oct 28, 2024
Análise de dados de tráfego aéreo em tempo real com Spark Structured Streaming e Apache Kafka
#dataengineering #python #braziliandevs #spark
By Geazi Anc | Oct 28, 2024
Pokémon Info Retriever: A Fun and Educational Project
#python #fastapi #webdev #pokémon
By Adham Hewala | Oct 28, 2024
Connect to Azure SQL database in SQL Alchemy using Entra ID tokens
#python #azure #aad
By Alexander Kammerer | Oct 29, 2024
A Simple Tic Tac Toe Terminal Game
#python #terminal #learning #beginners
By Sam | Oct 29, 2024
💡Never forget again: Build a scheduled reminder app in <50 lines of Python using REST and Postgres
#tutorial #python #programming #webdev
By Qian Li | Oct 29, 2024
🌟 Python na Ciência de Dados e Visão Computacional: Desvendando o Poder dos Dados 🌟
#ai #datascience #python #programming
By Vitor Diego Galecki | Oct 29, 2024
The future of AI data visualization
#analytics #ai #python
By Marc Dupuis | Oct 29, 2024
🚀 Flet: The Modern Python GUI Framework That's Taking Over in 2024
#python #flutter #programming #webdev
By 404_CHRONICLES | Oct 29, 2024
SQLRAG: Transforming Database Interactions with Natural Language and LLMs
#llm #rag #python #genai
By Abdulla Ansari | Oct 29, 2024
Budget Smartly with Python: A Feature-Packed Budget Tracker Program
#codecademy #python #beginners
By danitellini | Oct 29, 2024
Mastering the Command Design Pattern in Python
#python #programming #oop #development
By aakas | Oct 29, 2024
Top Programming Languages Every AI Engineer Should Know
#javascript #ai #python #javascriptlibraries
By Vikas76 | Oct 29, 2024
Unlocking Django: Integrate GraphQL for Faster, Flexibly Scalable APIs
#django #graphql #apidevelopment #webdev
By SnapNews | Oct 29, 2024
How Does Go Handle Multithreading and Concurrency Vis-A-Vis Other Languages
#go #python #java #cpp
By Vedant Madane | Oct 29, 2024
Python Program: How to Sort a List of Numbers
#python #list #sort
By arju10 | Oct 29, 2024
Gelbe Seiten Scraper: das ideale Tool für Leadgenerierung.
#gelbeseiten #bigdata #datascience #python
By hanna Fischer | Oct 29, 2024
Streamlit Part 5: Mastering Data Visualization and Chart Types
#python #webdev #streamlit #programming
By James | Oct 29, 2024
Building A Weather Station with a Raspberry Pi and Python – Part Two
#python #raspberrypi #tutorial #beginners
By dev_neil_a | Oct 29, 2024
The Irony of Static Typing in Dynamic Languages
#programming #python #php #javascript
By Amine | Oct 29, 2024
Python(the programming language)
#python
By Anish Kumar | Oct 29, 2024
11 best open-source web crawlers and scrapers in 2024
#webscraping #javascript #python #opensource
By Dávid Lukáč | Oct 29, 2024
Say Goodbye to Orphaned Snapshots: Automate Cleanup with Serverless, Terraform, and AWS EventBridge!
#devops #python #serverless #aws
By Vikas Arora | Oct 29, 2024
Django bookmark management software
#python #django #opensource
By Piotr | Oct 29, 2024
Understanding The Importance Of Python In Machine Learning (ML)
#webdev #python #ai #openai
By Gajanan Rajput | Oct 29, 2024
A Step-By-Step Guide On Generative AI Implementation🎬🤖
#webdev #ai #python
By Gajanan Rajput | Oct 29, 2024
Automating MongoDB Atlas Trigger Log Downloads Beyond the GUI and CLI Limitations
#python #mongodbatlas
By Josman | Oct 29, 2024
The Role of AI in Modern Cybersecurity: Tackling Social Engineering Threats with Advanced Defenses
#ai #cybersecurity #security #python
By Siddharth Bhalsod | Oct 29, 2024
Arithmetic Operators in Python
#python #programming #beginners #tutorial
By Job Ready Programmer | Oct 29, 2024
Can't run python script from terminal but can from PyCharm: ModuleNotFoundError
#python #terminal
By Stuart Millington | Oct 29, 2024
Algo más de azúcar para python
#python #typehinting #syntacticsugar
By Johnnatan Sandoval Cardona | Oct 29, 2024
Setting Up Tools for Code Quality
#python #opensource #formatter #linters
By Henrique Sagara | Oct 30, 2024
Aprenda a Dividir em Treinamento e Teste os Dados de um Dataset Utilizando Python
#ai #machinelearning #python
By Marshal Mori Cavalheiro | Oct 30, 2024
D-Smart.io AWS Web Application
#python #aws #terraform #systemdesign
By d-smart | Oct 30, 2024
Build a Text Extractor App with Python Code Under 30 Lines Using Gradio and Hugging Face
#python #orc #huggingface #docker
By 0xkoji | Oct 30, 2024
Best Practices for Continuous Vulnerability Management
#containersecurity #python #pycharm #vscode
By SnykSec | Oct 30, 2024
How I Bootstrapped My SaaS Business With $0
#python #datascience #saas #beginners
By Tanweer Ali | Oct 30, 2024
Ouroboros #01
#python #programming #beginners #devjournal
By Franco Martin Ramirez | Oct 30, 2024
If you want to analyze simply, use ProfileReport
#python #statistic #profilereport
By Gahyun Son | Oct 30, 2024
Ultimate Guide To Linkedin Company API, With Full Python Code Samples
#webdev #python #api #programming
By Proxycurl | Oct 30, 2024
YOLOv11: A New Breakthrough in Document Layout Analysis
#computervision #python #machinelearning #ai
By ppaanngggg | Oct 30, 2024
Day 2: Some Amaging Programs in Python | 100 Days Python
#python #beginners #programming #coding
By Abdulla Ansari | Oct 30, 2024
Guide to Python Requests Headers
#python #requests #http
By Scrapfly | Oct 29, 2024
🚀 Embarking on My Tech Journey: From Python to AI and Beyond!
#webdev #python #machinelearning #firstpost
By Pawan Kumar | Oct 30, 2024
10 Must-try Projects for Python Beginners to Boost Skills
#python #beginners #programming #webdev
By Rose Michelle | Oct 30, 2024
File Cleaner Pro – A Python Learning Project for File Management
#ai #opensource #python #learning
By ym qu | Oct 30, 2024
How to Scrape Login-Protected Websites with Selenium (Step by Step Guide)
#webscraping #ai #python #selenium
By Sacha Dumay | Oct 30, 2024
Mocks, o que são?
#testing #pytest #pyspark #python
By Mayara Machado | Oct 30, 2024
Understanding VoIP Business Phone Systems: The Key to Modern Communication
#visier #python #opensource
By VoIP Business | Oct 30, 2024
Best Practices for Alembic and SQLAlchemy
#python #sql #testing #database
By Pavel Loginov | Oct 30, 2024
12 Steps to Organize and Maintain Your Python Codebase for Beginners
#python #beginners #tutorial #programming
By Olga Braginskaya | Oct 30, 2024
How to Use Lambda Functions in Python
#python #lambda
By Federico Trotta | Oct 30, 2024
My Experience with GitHub Copilot
#webdev #python #dotnet #githubcopilot
By Duc Nguyen Thanh | Oct 31, 2024
Building a Bible Publication Engine
#python #mysql #linux
By Jørn Andre | Oct 31, 2024
🐍Como Importar Dados do Excel para SQLite com Python em Poucas Linhas
#programming #tutorial #python #productivity
By Alexandre Justen Filho | Oct 31, 2024
Building ErgoVision: A Developer's Journey in AI Safety
#machinelearning #python #ai #programming
By Chidozie Managwu | Oct 31, 2024
Análise de Sulco de Pneus com Inteligência Artificial em Python!
#python #ai #programming
By Alexandre Justen Filho | Oct 31, 2024
20 Powerful Techniques for Writing Efficient and Readable Python Code
#python #programming #beginners #development
By Abdulla Ansari | Oct 31, 2024
Easiest Way to Handle Drop Down Menus in Python Using Selenium ?
#python #selenium #webdev #automation
By Ali | Oct 31, 2024
Understanding Python's *args and **kwargs
#python #args #kwargs
By Developer Service | Oct 31, 2024
Genesis Cloud Mining, take you out of poverty.
#beginners #tutorial #python
By kaylianna amanuel | Oct 31, 2024
Card Fight: A Python Terminal Game
#python #gamedev #webdev
By Mareyia | Oct 31, 2024
VSCode language mode association for subfolders and special characters folders
#vscode #python
By Libor Jelinek | Oct 31, 2024
The Adventures of Blink S2e8: Fast-Forward to a Working Game (with Snyk Integration!)
#python #tkinter #beginners #buildinpublic
By Ben Link | Oct 31, 2024
Understanding the ContentType Model in Django for Dynamic Relationships
#django #python #devto #softwaredevelopment
By Dominique Megnidro | Oct 31, 2024
understanding web scraping
#analytics #analyst #python #webdev
By Kiregi Paul | Oct 31, 2024
Pretty-Printing is Compilation
#prettyprinting #python
By William Lewis | Oct 31, 2024
Thursday Quiz
#python #discuss #webdev #beginners
By Scofield Idehen | Oct 31, 2024
Emotional AI and AI Companionship: The Future of Human-Technology Relationships
#ai #python #development #deeplearning
By Siddharth Bhalsod | Oct 31, 2024
How to Build APIs with Flask in Python🦉
#api #python #webdev
By Patrick | Oct 31, 2024
AWS Bedrock Knowledge – Base Testing Script
#ai #bedrock #testdev #python
By Michael Wahl | Oct 31, 2024
Parece uma coisa muito simples mais gostei muito
#python
By Dennis Clementino | Oct 31, 2024
Testing AI-Powered Apps: Introducing LLM Test Mate
#python #ai #llm #testing
By Danilo Poccia | Oct 31, 2024
How to Use L298N Motor Driver with Raspberry Pi Pico W
#raspberrypi #python #micropython #beginners
By Shilleh | Nov 01, 2024
Understanding JSONify(), to_dict(), make_response(), and SerializerMixin in Flask
#flask #api #python #beginners
By Komfort Kimko | Nov 01, 2024
AI Democratization: Unlocking the Power of Artificial Intelligence for All
#ai #python #deeplearning #machinelearning
By Siddharth Bhalsod | Nov 01, 2024
Introducing Secure Python Code Manager: Safeguard and Share Your Python Code with Confidence
#python #security #programming #opensource
By Pavel Izosimov (Alpha Beta Network) | Nov 01, 2024
A Beginner’s Guide to Kafka with Python: Real-Time Data Processing and Applications
#python #datascience #kafka #dataanalytics
By keshavadk | Nov 01, 2024
Internal Working Of Python
#python #programming #beginners
By yaswanthteja | Nov 01, 2024
Send Email with Python SMPT and Gmail is Easy!
#python #webdev #tutorial #devops
By Rifa Faruqi | Nov 01, 2024
Testing AI-Powered Apps: Introducing LLM Test Mate
#python #ai #llm #testing
By Danilo Poccia | Oct 31, 2024
PCED Python exam tips for Pandas, NumPy, Matplotlib and Seaborn
#python #datascience #coding #programming
By MyExamCloud | Nov 01, 2024
Data Science Code Presentation
#devchallenge #python #javascript #pascal
By Max Kleiner | Nov 01, 2024
This Week In Python
#python #thisweekinpython
By Bas Steins | Nov 01, 2024
First Blackjack Game
#python #beginners
By Joe Jewson | Nov 01, 2024
LuxDevHQ (Lux Academy and Data Science East Africa) Training Program in AI, Data Science, Analytics, and Data Engineering
#luxdevhq #python #sql #ai
By Mwenda Harun Mbaabu | Nov 01, 2024
Pythonic Time Capsule: Must-Know Features from Each Version
#python #programming #datascience #softwaredevelopment
By Deepankar Sharma | Nov 02, 2024
My Hacktoberfest 2024 Journey: A Month of Code, Growth, and Unforgettable Lessons 🚀
#hacktoberfestchallenge #javascript #python #opensource
By Tasbi Tasbi | Nov 02, 2024
Mastering Python’s __name__ and __main__: Understanding Script Execution and Module Imports
#python #beginners #tutorial #programming
By pawan deore | Nov 02, 2024
Deploying a MongoDB Collection Generator on Kubernetes
#mongodb #kubernetes #python #database
By Dmitry Romanoff | Nov 02, 2024
The 5 Most Underrated Python Libraries You Should Start Using Right Now
#python #beginners #opensource #programming
By Theekshana Chamodhya | Nov 02, 2024
Migrar de SQLite a MySQL.
#programming #python #database
By Silvio Riveros | Nov 02, 2024
Automated Log Analysis and Reporting with Python, Bash, and PowerShell
#automation #bash #python #opensource
By Oliver Bennet | Nov 02, 2024
How to Scrape YouTube Video Data from a Playlist Using Python and BeautifulSoup
#python #webscraping #data #beautifulsoup
By Nchanji Faithful | Nov 02, 2024
AI Ethics and Regulation: Navigating the Future of Technology
#ai #python #machinelearning #deeplearning
By Siddharth Bhalsod | Nov 02, 2024
Introducing Dependency Drift Monitor: Keep Your Infrastructure in Check
#terraform #python #devops #programming
By Muneeb Akram | Nov 02, 2024
Chrome extensions I use as a developer
#webdev #python #learning #programming
By Rose Michelle | Nov 02, 2024
From Setup to Deployment: Running a Flask App in Docker on Mac
#docker #python #webdev
By Rajnish Pandey | Nov 02, 2024
Deploy Flask app using docker Compose
#webdev #docker #python #beginners
By Rajnish Pandey | Nov 02, 2024
Understanding FastAPI Fundamentals: A Guide to FastAPI, Uvicorn, Starlette, Swagger UI, and Pydantic
#fastapi #python #pydentic #statlette
By Kfir | Nov 02, 2024
Share docker image on docker hub
#webdev #docker #python #beginners
By Rajnish Pandey | Nov 02, 2024
Speed up CI with uv ⚡
#python #testing #githubactions #uv
By Hugo van Kemenade | Nov 02, 2024
House_Price_Prediction
#datascience #python #learning #machinelearning
By Thatohatsi Matshidiso Tilodi | Nov 02, 2024
Creating an RSS Feed for any Medium Thread!
#python #programming #rssfeed #oop
By harmankaler2000 | Nov 02, 2024
Managing Imports in Python: The Importance of Proactive Validation with ImportSpy
#python #programming #opensource #architecture
By Luca | Nov 02, 2024
To Django or to DjangoREST?
#python #django #drf #backend
By ruoya mwangi | Nov 03, 2024
Métricas para algorítimos de regressão
#python #estatistica #regressao #algoritimos
By Airton Lira junior | Nov 03, 2024
python concurrent.futures
#python #concurrency #future #threadpoolexecutor
By mapogolions | Nov 03, 2024
BARK – Text2Audio Model
#ai #python
By Juris | Nov 03, 2024
What is Machine Learning?
#machinelearning #basic #python #programming
By Sourish Srivastava | Nov 03, 2024
The Unreasonable Usefulness of numpy's einsum
#python #numpy #datascience #ai
By Kyle Pena | Nov 03, 2024
Django Request/Response Life Cycle
#python #django #softwaredevelopment #webdev
By Praseesh P | Nov 03, 2024
📜 Mastering Code Quality in ReadCraft: Formatting, Linting, and Automation Adventure 🚀
#opensource #flake8 #python #black
By Tasbi Tasbi | Nov 03, 2024
Django & DRF Professional Roadmap 2024: From Zero to Hero 🚀
#python #django #webdev #beginners
By Muhammad Zain Afzal | Nov 03, 2024
Introducing IPVulnScout: Tool for IP Vulnerability Assessment
#python #programming #automation #beginners
By Trix Cyrus | Nov 03, 2024
Similar boomerang
#perl #python #theweeklychallenge
By Simon Green | Nov 03, 2024
How to Develop an try on Hairstyle App
#ai #api #flutter #python
By ailabtools | Nov 03, 2024
Have you ever asked yourself how we would explain or simplify Object-Oriented Programming (OOP)?
#python #oop #programminginsimpleterms
By Gamelia | Nov 03, 2024
#Daniel Roy Greenfeld Blogs
TIL: Using Python to removing prefixes and suffixes
How did I miss these functions getting added to Python?
By Daniel Roy Greenfeld | Nov 01, 2024