#Real Python
Python Closures: Common Use Cases and Examples
In this tutorial, you'll learn about Python closures. A closure is a function-like object with an extended scope. You can use closures to create decorators, factory functions, stateful functions, and more.
#intermediate #python
By – | Oct 09, 2024
Structural Pattern Matching in Python
In this tutorial, you'll learn how to harness the power of structural pattern matching in Python. You'll explore the new syntax, delve into various pattern types, and find appropriate applications for pattern matching, all while identifying common pitfalls.
#intermediate #python
By – | Oct 10, 2024
Python Thread Safety: Using a Lock and Other Techniques
In this tutorial, you'll learn about the issues that can occur when your code is run in a multithreaded environment. Then you'll explore the various synchronization primitives available in Python's threading module, such as locks, which help you make your code safe.
#intermediate #python
By – | Oct 11, 2024
#Django Project – Weblog
Django bugfix release issued: 5.1.2
By Natalia Bidart | Oct 08, 2024
Why Django supports the Open Source Pledge
By Thibaud Colas and Sentry | Oct 08, 2024
#Python Insider
Python 3.13.0 (final) released
By Thomas Wouters | Oct 07, 2024
#PyCoders
Issue #650 – Immutable Types, DuckDB & Pyodide, Free Threaded, and More
By – | Oct 08, 2024
#Hashnode
Week in Review: Enhancing Store and Item Management in Django
Hey everyone! 👋
This week has been all about improving the functionality and user experience of my Django project. I focused on refining the store and item management system, and here are some key updates I worked on:
🚀 What I Worked On
1. Keyword …
By AbuBakar khan lakhwera | Oct 07, 2024
Django Developer Journey
A while back I was stranded between learning to code and learning the basics of a programming language and then using the ChatGpt to write the code. I soon realized that though ChatGpt is not a bad idea it might not be the best and certainly not bene…
By Collins Muchira | Oct 07, 2024
How to Get Started with Matplotlib – With Code Examples and Visualizations
One of the key steps in data analysis is data visualization, as it helps you notice certain features, tendencies, and relevant patterns that may not be obvious in raw data. Matplotlib is one of the most effective libraries for Python, and it allows t…
By Oyedele Tioluwani | Oct 07, 2024
ClickHouse Aggregations and Django
In the first clickhouse article I said my use case is web performance data, huge data set, which brought me to the column-oriented database ClickHouse. When analyzing large datasets, metrics like median, average and quantiles are essential. In web pe…
By Wolfram Kriesing | Oct 07, 2024
Journey to PythonTA: The Control Flow Graph Module (Part 1)
The Journey to PythonTA series aims to introduce various system components of PythonTA (https://github.com/pyta-uoft/pyta), a static code analysis tool for checking common code style errors in Python code, to new developers. In this series, in additi…
By Raine | Oct 07, 2024
Making Django Unstoppable: My Plan to Boost Visibility and Drive Growth
The Django Software Foundation (DSF) has been a driving force behind Django’s success—no question. With the contributions of its core team and maintainers, Django has become one of the most powerful, beloved web frameworks in existence. But let’s be …
By Bhuvnesh Sharma | Oct 07, 2024
Exploring Data Operations with PySpark, Pandas, DuckDB, Polars, and DataFusion in a Python Notebook
Apache Iceberg Crash Course: What is a Data Lakehouse and a Table Format?
Free Copy of Apache Iceberg the Definitive Guide
Free Apache Iceberg Crash Course
Iceberg Lakehouse Engineering Video Playlist
Data engineers and scientists often work wit…
By Alex Merced | Oct 07, 2024
Simple Python Dependency Management
While powerful tools like virtualenv, pipenv, conda, and Poetry exist to provide extra advantages for dependency management, I’ve found a simple system that works for the small projects I’ve been working on.
This setup involves built-in features and …
By Travis Horn | Oct 07, 2024
Discover More about Function calls in Python on Day 18
Introduction :
Welcome back to my Python journey! Yesterday, I laid the foundation with control structures in python.
Today, I dove into Function calling, Let's explore what I learned!
Function
python does not support call by value mechanism
pytho…
By Archana Prusty | Oct 07, 2024
Mastering Order Processing Systems: A Comprehensive Guide to Building Efficient Business Solutions with Python
Part 5: Populating the Database with Initial Data
Introduction
Now that we’ve designed and initialized our database, the next step is to populate it with some initial data. Having a set of predefined users and products allows us to test the functiona…
By Bryan Samuel James | Oct 07, 2024
A Beginner's Guide to Generators and Iterators in Python Programming
Iterators
In Python, an iterator is an object that represents a sequence of values and can be iterated upon (we can loop through it). An iterator follows two main rules:
It implements the iter() method, which returns the iterator object itself.
It …
By Akshobya KL | Oct 07, 2024
A Simple Explanation of Stacks: The Last-In-First-Out Method
In our exploration of Data Structures and Algorithms (DSA), we've looked at how different structures work, from arrays to linked lists. Today, we'll focus on other basic fundamental structures stacks. Stacks work on the Last-In-First-Out (LIFO) princ…
By Keerthi Ravilla Subramanyam | Oct 07, 2024
Python Programming Basics: Statements, Comments, and Data Types
When learning Python, understanding the core building blocks like statements, comments, variables, and data types is essential. These basics serve as the foundation for writing effective and efficient Python code. In this article, we’ll break down ea…
By Arnav Singh | Oct 07, 2024
Installing a Powerful IDE: Say Goodbye to Boring Python IDLE!
So, you’ve taken your first steps with Python, and you’re probably thinking: "Is this it? Is Python IDLE the best I can get?" Well, fear not! While Python IDLE is useful for basic coding, it can feel a bit, well… boring. If you want a more exciting…
By Arnav Singh | Oct 07, 2024
Dive into Investment Research: A Beginner’s Guide to the OpenBB Platform
The OpenBB Platform allows you to access financial data from various providers. We often use it for our investment research.
The OpenBB Platform is developed as open-source by the company OpenBB. In this article, we will highlight some features that …
By Tinz Twins | Oct 07, 2024
Getting Started with Python: An Essential Guide for Beginners
Overview of Python as a programming language
Python is one of the most popular programming languages today, loved by developers and beginners alike. Its simplicity, readability, and versatility make it an excellent choice for those who are just stepp…
By Arnav Singh | Oct 07, 2024
How to Print a Sequence of Integers as a Continuous String in Python
In Python, working with sequences of numbers is a common task, especially when you need to print them in a specific format. One such task is to print a series of integers from 1 through n as a continuous string without spaces.
In this blog, I will gu…
By Aakanchha Sharma | Oct 07, 2024
How to Easily Build Customizable QR Codes with Python
QR codes are everywhere. From restaurant menus to product packaging, they’ve become a popular way to share information. You can use them to link to websites, share contact details, or even direct people to an app.
I recently had to work a project tha…
By Steve Hatmaker Jr. | Oct 08, 2024
Understanding the AttributeError: module 'bcrypt' has no attribute '__about__'
Introduction
The AttributeError: module 'bcrypt' has no attribute '__about__' is a common issue encountered when working with the bcrypt library in Python. This error typically arises when there is a mismatch between the versions of the bcrypt librar…
By Preston Osoro | Oct 08, 2024
26 Type of Seaborn Plots With Samples
1. Relationship Plots (Visualize relationships between variables)
relplot: High-level function to draw scatter or line plots.
scatterplot: Plot individual data points with optional grouping.
lineplot: Show trends by connecting data points with a l…
By Anix Lynch | Oct 08, 2024
Using else with Loops in Python 🐍
In Python, you can use an else block with both for and while loops. But here’s the catch: the else block will only execute if the loop completes successfully without encountering a break.
Example with for Loop:
pythonCopy codenumbers = [1, 2, 3, 4, 5…
By Aakanchha Sharma | Oct 08, 2024
Exploring Python Dictionaries: An In-Depth Guide
In Python, a dictionary is a built-in data type that allows us to store key-value pairs, enabling fast lookups and efficient data storage. Python dictionaries are ordered as of Python 3.7+, meaning that they maintain the order in which the keys were …
By Aakanchha Sharma | Oct 08, 2024
Same Same is Good Enough
As a developer, I’ve been fed a consistent message throughout my career: Don’t Repeat Yourself (DRY). Every course I've taken, whether from Andrei, Angela, John, or other instructors, has drilled this principle into my head. The message is always the…
By Ayomikun Osota | Oct 08, 2024
Day 19 Tutorial: Mastering Anonymous Functions in Python
Introduction :
Welcome back to my Python journey! Yesterday, I laid the foundation with control structures in python.
Today, I dove into anonymous function, Let's explore what I learned!
Anonymous Function :
some time we can declare a function withou…
By Archana Prusty | Oct 08, 2024
PyClubs Attends PyCon Africa 2024: A Journey of Learning and Networking
PyCon Africa 2024, one of the biggest Python conferences on the African continent, brought together a vibrant community of Python developers, enthusiasts, and tech professionals under one roof to share knowledge, learn, and network. This year, the co…
By Gideon Opoku | Oct 08, 2024
What Is Hypothesis Testing in Python: A Hands-On Tutorial
In software testing, there is an approach known as property-based testing that leverages the concept of formal specification of code behavior and focuses on asserting properties that hold true for a wide range of inputs rather than individual test ca…
By Jaydeep Karale | Oct 08, 2024
Understanding Algorithms and Flowcharts in Python Programming
What is an Algorithm?
An algorithm is a step-by-step procedure or formula for solving a problem. It’s like a recipe where you follow each step carefully to get the desired result. In programming, algorithms help us solve complex problems by breaking …
By Arnav Singh | Oct 08, 2024
Develop a Dynamic Inflation Data Visualizer with Flask Python Matplot Pandas
Introduction
At this time, when many places in the world have inflation, and everybody is talking about it, I decided to do an inflation calculator. First, let me explain what inflation is.
I love economics, but as you know, I am a software developer…
By Ivan | Oct 08, 2024
Building a Parser: A Beginner-Friendly Guide to Constructing an AST-Based Parser
In our previous article, we built a lexer that converts code into tokens, breaking down the input into meaningful pieces. Now, the next exciting step is to write a parser, which takes these tokens and organizes them into a meaningful structure called…
By Abou Zuhayr | Oct 08, 2024
Exploring Queues: What They Are and How They Work
In our DSA series, we've covered various basic data structures, including linked lists, strings, arrays, and stacks. Now, it's time to look at queues, a basic data structure that follows the First-In-First-Out (FIFO) principle. Like a line at a ticke…
By Keerthi Ravilla Subramanyam | Oct 08, 2024
Exploring Python's Role in AI-Powered Chatbots and Virtual Assistants
Python and AI-powered chatbots are two terms on which many developers and data scientists are working to build a wide range of applications that will make them a great asset for business and Leisure users. Whether enhancing smart Technology or automa…
By Lucy | Oct 08, 2024
Control Flow in Python: If Statements, Loops, and More
When writing code, you'll often need to make decisions and control how the program flows based on different conditions. This is known as control flow, and Python offers various ways to implement it. In this article, we’ll explore Python's control flo…
By Arnav Singh | Oct 08, 2024
MACHINE LEARNING College Program
import pandas as pd
data= {
'email': [
'Free money!!!!' ,
'Hi Bob, how about a game of golf tomorrow?',
'Limited time offer, buy now!',
'Are you available for a meeting tomorrow?',
'Congratulations, you have won a lottery!!' ],
'label': ['spam', '…
By Tarun Joshi | Oct 07, 2024
Getting Started with NequIP: A Comprehensive Guide to Model Training
The main reason I'm writing this blog is to save you a week's time dealing with dependencies and issues with their config files, so you can easily install Nequip. You can thank me later.
What is NequIP?
I doubt you would have come this far if you did…
By Chirag Sindhwani | Oct 08, 2024
Mathober2024_Flexible
GraphableOres
For my eighth sketch of Mathober2024, GraphableOres is coded in Python with a Ore-like graph that is being stretched and morphed through Glitchlab. Flexible Graph is the 7th Prompt for this year’s Mathober.
Poetry
Shaking and Flipping
T…
By Kofi / Illestpreacha | Oct 09, 2024
Stay Updated with Python/FastAPI/Django: Weekly News Summary (30/09/2024-06/10/2024
Intro: Check out this insightful summary of Python/FastAPI/Django Weekly News for September 30th to October 06th, 2024. Stay updated with the latest developments, releases, and community updates in the Nil ecosystem.
Key Points:
🐍 Real Python highl…
By Poovarasu Sekar | Oct 09, 2024
Mastering Python List Data Structure
With a deep understanding of Python's list data structure, we have to master and remember some of the fundamentals in creating a list, allowing me to efficiently manipulate, organize, and analyze data through dynamic operations like indexing, slicing…
By Loquero, Rodney I. | Oct 09, 2024
Introduction to Artificial Intelligence Using Python
Artificial Intelligence (AI) is one of the most transformative technologies of our time, influencing industries as diverse as healthcare, finance, entertainment, and transportation. In simple terms, AI refers to the simulation of human intelligence i…
By The Paritosh Kumar | Oct 09, 2024
"Mastering Python: A Comprehensive Guide to Data Types"
Python, a versatile and powerful programming language, is renowned for its simplicity and readability. One of the fundamental aspects of Python that every programmer must understand is its data types. Data types in Python define a variable's value, a…
By Nabaranjan palatasingh | Oct 09, 2024
Kubernetes DevOps Project Using ArgoCD
Project:
Automated Deployment of Scalable Applications on AWS EC2 with Kubernetes and Argo CD
Description:
Led the deployment of scalable applications on AWS EC2 using Kubernetes and Argo CD for streamlined management and continuous integration. Orch…
By Harshit Sahu | Oct 09, 2024
Getting Started with NequIP: A Comprehensive Guide to Model Training
The main reason I'm writing this blog is to save you a week's time dealing with dependencies and issues with their config files, so you can easily install Nequip. You can thank me later.
What is NequIP?
I doubt you would have come this far if you did…
By Chirag Sindhwani | Oct 08, 2024
Pyppeteer: How to Use Puppeteer in Python with Browserless?
What Is Pyppeteer in Python?
Pyppeteer is a Python port of the popular Node.js library Puppeteer, which is used to control headless Chrome or Chromium browsers programmatically.
Essentially, Pyppeteer allows Python developers to automate tasks within…
By nstbrowser | Oct 09, 2024
Mastering Python Dictionaries Data Structure
With a deep understanding of Python's dictionary data structure, we have to master and remember some of the fundamentals in creating a dictionary, allowing me to efficiently manipulate, organize, and analyze data through dynamic operations like addin…
By Loquero, Rodney I. | Oct 09, 2024
Mastering Python Loops: For, While & Nested Loops Explained
What will you learn?
ConceptSummary
For LoopRepeats a block of code a specific number of times using a sequence.
While LoopContinues running a block of code as long as a condition remains true.
Nested LoopsA loop inside another loop, useful …
By Arnav Singh | Oct 09, 2024
Writing an Interpreter from Scratch
Interpreters are the backbone of many programming languages, converting code into actions line by line. In this article, we'll build a simple interpreter from scratch using Python.
If you are new to this series, you can find the previous articles her…
By Abou Zuhayr | Oct 09, 2024
DataViz Pro: Interactive Data Analysis Hub
DataViz Pro: Interactive Data Analysis Hub
Explore, Visualize, and Collaborate on Data
Streamlit App Code:
#!/usr/bin/env python3
import streamlit as st
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import time
Title and head…
By user1272047 | Oct 09, 2024
Mastering Python List of Dictionaries Data Structures
For this documentation, I will show you again how can we create, add and manipulate the keys and properties in List of Dictionaries Data Structure. I’ve created another five List of Dictionaries to show how to do it properly.
For the book list of dic…
By Loquero, Rodney I. | Oct 09, 2024
Day 20 Insights: Dive into the Types of Arguments in Python
Introduction :
Welcome back to my Python journey! Yesterday, I laid the foundation with control structures in python.
Today, I dove into Types of arguments, Let's explore what I learned!
Types OF Arguments :
Example :
def Fun (no1, no2):
….
…
Fun…
By Archana Prusty | Oct 09, 2024
DataMaster 360: Collaborative Analytics Platform
DataMaster 360: Collaborative Analytics Platform
This app simulates a full-fledged collaborative platform for data analysis, featuring file uploads, interactive visualizations, session handling, chat functionality, dynamic chart rendering, and more.
…
By user1272047 | Oct 09, 2024
User Authentication Streamlit App Python
User Authentication Streamlit App Python
#!/usr/bin/env python3
import streamlit as st
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import time
# User Authentication Simulation
def authenticate_user(username, password):
…
By user1272047 | Oct 09, 2024
Exploring Python Functions, Lambda Expressions, and Data Structures: A Deep Dive
Python is a versatile programming language that allows developers to write clean and efficient code. Understanding its core functionalities like functions, lambda expressions, and working with data structures like lists, sets, and tuples is crucial f…
By Shubham Sutar | Oct 09, 2024
Day 4: Implementing a Custom User Model in Django and Creating a Superuser
Welcome back to our Django tutorial series! In Day 4, we'll delve into creating a custom user model in Django and how to register it. We'll also walk through creating a superuser to test our new model. By the end of this tutorial, you'll have a custo…
By Sumit S Chawla | Oct 09, 2024
Exploring Pandas: Our Go-To Library for Data Manipulation
When it comes to data engineering in Python, Pandas is often our first stop. This powerful library provides an intuitive way to handle and manipulate data, making it a staple for data engineers, analysts, and scientists alike. Let’s dive into what ma…
By Akshobya KL | Oct 09, 2024
Employee Attrition Prediction Made Easy with Machine Learning
Let's learn how machine learning can be used to predict employee attrition. The goal of the blog is to give you a complete walkthrough of all the steps involved in solving a problem, namely, predicting employee attrition using machine learning.
Table…
By Chinmaya Meher | Oct 09, 2024
How to Implement Multi-Device Authentication System with FastAPI, Redis, and JWT
Many big tech companies offer a cool feature that allows users to login on multiple devices. Users can manage their devices, view which ones are signed in, and even sign out from any device using any of their logged-in devices. Today, I want to explo…
By Andrew David | Oct 09, 2024
Introduction to Queue Data Structure and Queue Operations | Data Structures and Algorithms Day #8
By Bonaventure Ogeto | Oct 09, 2024
Understanding WebRTC Behind the Scenes: A Developer’s Journey from Confusion to Clarity
You can easily find various YouTube tutorials explaining the basics of how WebRTC works with diagrams and high-level overviews. However, if you want to dive deeper and truly understand how WebRTC works behind the scenes, clear up some common confusio…
By ritiksharmaaa | Oct 10, 2024
Python Flask Data Structure
When working with Flask, developers often use Python data structures like dictionaries, lists, and classes to manage and organize data within the web app. Flask is designed to be simple and flexible, allowing developers to use any data structure they…
By Loquero, Rodney I. | Oct 10, 2024
How to Optimize Website Loading Speed for Better User Retention
Introduction
When was the last time you patiently waited for a website to load? If you can’t remember, you’re not alone. In an era where people expect things instantly, slow-loading websites can drastically impact user retention.
But what exactly is …
By CodnestX | Oct 10, 2024
90DaysOfDevops
View the content of a file and display line numbers.
Change the access permissions of files to make them readable, writable, and executable by the owner only
Check the last 10 commands you have run.
Remove a directory and all its contents.
…
By Dinesh khade | Oct 10, 2024
How to Merge Multiple Dictionaries into One in Python
In this tutorial, we'll explore how to create a dict, or dictionary, from one or more existing dictionaries in Python.
As usual in programming, there are several ways to achieve this.
I recently started to practice my writing in English. I apologize…
By Michell Stuttgart | Oct 10, 2024
Python’s zip() Function Explained with Simple Examples
The zip() function in Python is a neat tool that allows you to combine multiple lists or other iterables (like tuples, sets, or even strings) into one iterable of tuples. Think of it like a zipper on a jacket that brings two sides together.
In this g…
By Sahil Mahapatra | Oct 10, 2024
From Clumsy to Clever, How Penguins Learn to Line Up
Ever seen a bunch of penguins trying to line up from shortest to tallest? At first, it seems like chaos—they shuffle around, bumping into each other, occasionally swapping places, until finally, they all stand in the correct order. That's Bubble Sort…
By gayatri kumar | Oct 10, 2024
Build AI WhatsApp Bots with Pure Python
In this guide, we'll explore how to build a WhatsApp bot using Meta’s Cloud API with pure Python and Flask. We’ll also dive into integrating webhook events to receive messages in real-time and using OpenAI for AI-driven responses.
Prerequisites
A M…
By Martins Ugwu's Corner | Oct 10, 2024
Deploying a Django App with Nginx: A Beginner's Guide
💡 Introduction
In this blog, we are going to learn how to host a Django-based web application on an Nginx server. Nginx is a popular, high-performance web server used for serving static content and acting as a reverse proxy for dynamic applications….
By Pravesh Sudha | Oct 10, 2024
Types of Queues: Simple, Circular, and Priority Queues | Data Structures and Algorithms Day #9
By Bonaventure Ogeto | Oct 10, 2024
print(result) "Part 2 of NotADev"
Fetching Stock Data with yFinance
With the idea in place and my setup ready, it was time to start coding—or, more accurately, instructing AI to code for me.
Getting the Data
I needed historical stock data. The AI suggested using the yfinance library…
By Isa | Oct 10, 2024
Routing in FastAPI [chapter 2]
In this second chapter we are going to do a route management. We will follow specific clean architecture and specification
# Create the api folder in root of the project
>> mkdir api
>> cd api
# Create the routes folder inside the api folder
>> mkdi…
By Heisenberg Pandey | Oct 11, 2024
[Quick Solution] How to Add Page Numbers to PDF in Python Easily
It can be frustrating when you want to find specific information in a lengthy PDF file, especially if it doesn’t have page numbers. Adding page numbers can make it easier to navigate, edit, and manage your document. It not only improves readability b…
By Casie Liu | Oct 11, 2024
Real-Time Hand Gesture Recognition with AI 🤖✋
📝 Project Background
Hand gestures can serve as intuitive and efficient remote commands for controlling various devices and systems, especially in environments where physical touch is impractical or impossible. By developing accurate gesture recogni…
By Emeron Marcelle | Oct 11, 2024
Day 22 Guide: Mastering Command Line Arguments in Python
Introduction :
Welcome back to my Python journey! Yesterday, I laid the foundation with builtins modules.
Today, I dove into command_line arguments, essential for any programming language. Let's explore what I learned!
Command Line Arguments
.The A…
By Archana Prusty | Oct 11, 2024
Display Your Package Download Rate on GitHub
In this quick tutorial, I’ll show you a GitHub action that lets you add a small, cool-looking chart badge that shows your Python packages' download rate over the past weeks. This method is completely free and open-source.
https://github.com/lnxpy/pyp…
By Sadra Yahyapour | Oct 11, 2024
6 Tools to make you a 10x faster AI Engineer in 2024
In today's tech and innovation-driven world, there is a high demand for AI engineers. The AI industry is expected to grow nearly 20x by 2030 according to statistics obtained from BlueTree. This sky-rocketing demand comes with a demand for more AI Eng…
By Ajika Angelo | Oct 11, 2024
Bubble Sort Explained: Fundamental Concepts of Sorting Algorithms
Sorting is a fundamental concept in computer science and is crucial for organizing and processing data. Simply put, sorting involves arranging data in a specific order, like ascending or descending. This process is vital in many real-world applicatio…
By Keerthi Ravilla Subramanyam | Oct 11, 2024
Generating Binary Numbers Using a Queue | Data Structures and Algorithms Day #10
By Bonaventure Ogeto | Oct 11, 2024
Building a Blog Post Application in Django: Easy Tutorial
Creating a Django application for a blog post system requires several steps, including setting up models for blog posts, creating views to display and manage the posts, and building templates for the user interface. Here's a step-by-step breakdown of…
By Data & Dev | Oct 11, 2024
Building Predictive Models: How Data Analysts Can Dive Into Machine Learning
Predictive modeling, enhanced by machine learning, helps data analysts forecast future trends using historical data, and this guide explains key concepts and provides Python and Scikit-Learn code examples.
Key Concepts in Predictive Modeling
Supervi…
By Sai Sravanthi | Oct 11, 2024
Unleashing the Future: Must-Have Data Analysis Tools for 2025
As we step into 2025, the landscape of data analysis tools and software is evolving at an unprecedented pace. With the ever-increasing volume of data generated daily, the need for efficient, powerful, and user-friendly tools has never been greater.
T…
By Sai Sravanthi | Oct 12, 2024
Using Python for Data Analysis: Libraries and Best Practices
Python has become the go-to language for data analysis due to its simplicity, versatility, and powerful libraries. With an active community and extensive documentation, it enables both beginners and experienced analysts to manipulate, analyze, and vi…
By Sai Sravanthi | Oct 12, 2024
[Python] GIL을 해제해보자
Python 3.13 출시
GIL이 해제 되었다.
멀티쓰레드 성능 테스트를 해보려 했지만, 실패했다.
찾아보니 일반 CPython 3.13에서는 GIL 해제가 되지않고, GIL free 옵션을 적용하여 빌드한 CPython에서만 된다고한다.
Python 3.13t 설치하기
pyenv를 활용하여 GIL이 해제된 CPython을 구해보자
pyenv install 3.13t-dev
# GIL 해제 버전 파이썬 설치
pyenv shell 3.1…
By pasa | Oct 12, 2024
[Three Steps] Convert PDF to HTML in Python without Effort
While the PDF format offers clear benefits for file sharing and storage, there are times when you may need to convert a PDF to HTML. HTML is more suitable for web design, making it essential to convert PDF documents into a web-friendly format for bet…
By Casie Liu | Oct 12, 2024
The Rise of no-code/ low-code Data Analysis Tools
In recent years, the demand for data-driven decision-making has surged, leading to the emergence of no-code and low-code data analysis tools that democratize access to data insights. These platforms empower users without extensive programming skills …
By Sai Sravanthi | Oct 12, 2024
Step-by-Step RSA Key Generation in JavaScript and Python for Beginners
In today’s digital world, security is a top priority. One of the key technologies that help in securing data is RSA, an asymmetric cryptographic algorithm widely used for encryption, digital signatures, and secure data transmission. Generating RSA ke…
By Shubham Khan | Oct 12, 2024
Basic CRUD Python Flask API
Prerequisites
https://software-engineer.thirdygayares.com/virtual-environment-and-python-package-manager
https://software-engineer.thirdygayares.com/how-to-run-python-flask
https://software-engineer.thirdygayares.com/data-structure-again
To star…
By Thirdy Gayares | Oct 12, 2024
Your Ultimate Guide to Validating Course Content
In today’s digital world, content quality matters more than ever, especially when it comes to educational platforms. Having a well-aligned course title, description, image, and video is key to delivering value to learners. I created a Python-based co…
By Pavani Pampana | Oct 12, 2024
Day 23: Essential Python File Handling Techniques
Introduction :
Welcome back to my Python journey! Yesterday, I laid the foundation with command_line arguments.
Today, I dove into File_Handling , essential for any programming language. Let's explore what I learned!
File Handling :
to perform any op…
By Archana Prusty | Oct 12, 2024
The Starfish’s Search
Imagine a beach where a starfish is carefully selecting shells, one at a time, from a pile. The starfish picks up each shell, compares it with the others, and places it in the correct spot before moving on to the next shell. This method is known as S…
By gayatri kumar | Oct 12, 2024
Linked List (1) – Basic Structure & Print List
영어 부연 설명:
prepend: adding an element to the front of a list (Linked List 맨 앞에 요소 추가)
append: adding an element to the end of a list (Linked List 맨 뒤에 요소 추가)
The basic structure of a Linked List
Image: https://media.geeksforgeeks.org/wp-content/u…
By KiwiChip | Oct 13, 2024
Linked List (2) – Append, Pop
Linked List – Append Method
def append(self, value):
new_node = Node(value)
if self.head is None:
self.head = new_node
self.tail = new_node
else:
self.tail.next = new_node
self.tail = new_node
self.leng…
By KiwiChip | Oct 13, 2024
Understanding WSGI, ASGI, HTTP and Web Servers: Clarifying the Confusion
In the world of web development, especially when working with Python, developers often encounter various concepts like WSGI (Web Server Gateway Interface), ASGI (Asynchronous Server Gateway Interface), and web servers like Nginx. This article aims to…
By ritiksharmaaa | Oct 13, 2024
Case Study: Building a Real-Time Focus Timer with Django, Redis, and WebSockets
Hey there! Today, we're diving into the inner workings of Tymr, a cloud-based focus timer that's got some interesting tech under the hood. You can check it out at https://tymr.online if you're curious. Let's break down how this app keeps you focused,…
By Saurav Sharma | Oct 13, 2024
Comprehensive Django Deployment Guide for Beginners
Table of Contents
Introduction
Prerequisites
Setting Up Your VPS
Securing Your Server
Installing Required Software
Configuring Your Django Project
Setting Up Nginx and Uvicorn
Configuring SSL with Let's Encrypt
Setting Up Supervisor
Firewal…
By Saurav Sharma | Oct 13, 2024
#Python Software Foundation
Join the Python Developers Survey 2024: Share your experience!
By Marie Nordin | Oct 08, 2024
#Dev.to
Downloading and Converting YouTube Videos to MP3 using yt-dlp in Python
#python #automation #webdev #coding
By Kehinde Abe | Oct 07, 2024
How To Process Events Exactly-Once
#python #kafka #database #cloud
By Peter Kraft | Oct 07, 2024
Use imgp on macOS with Docker
#imgp #python #docker
By Tomoyuki KOYAMA | Oct 07, 2024
INTRODUCTION TO PYTHON FOR DATA ANALYTICS
#datascience #analytics #python #googlecloud
By Dion Nekesa | Oct 07, 2024
DNS and How It Works
#backend #java #python
By Isaac Tonyloi – SWE | Oct 07, 2024
Building Robust Components with FastAPI and Pydantic
#python #fastapi #pydentic #programming
By Kfir | Oct 07, 2024
Asyncio Events and Conditions: The Secret Life of Python's Traffic Signals
#python #asyncio #programming
By Dmitry Posokhov | Oct 07, 2024
Python List Comprehension
#python #opensource #programming
By Oliver Bennet | Oct 07, 2024
Python 101: Introduction to Python as a Data Analytics Tool
#python #analytics #datascience #dataengineering
By Gichuki | Oct 07, 2024
Basic Intro to Python
#python #javascript #beginners
By sandrockj | Oct 07, 2024
Deploying a stateless container on cloud run
#devops #python #fastapi #containerapps
By Mohamed Rasvi | Oct 08, 2024
Python and Machine Learning: A Match Made in Heaven
#machinelearning #python
By Alexander_Yizchak | Oct 08, 2024
The Power of Python in Data Science: A Comprehensive Guide
#ai #python #datascience
By Alexander_Yizchak | Oct 08, 2024
The Integration of AI and Python: Revolutionizing the Developer's World
#ai #python
By Alexander_Yizchak | Oct 08, 2024
Exploring Data Operations with PySpark, Pandas, DuckDB, Polars, and DataFusion in a Python Notebook
#python #database #datascience #dataengineering
By Alex Merced | Oct 08, 2024
How to get the `verbose_name` of an attribute of a model.
#django
By DoriDoro | Oct 07, 2024
Introduction to Python as a Data Analytics Tool
#python #learning #career #database
By Fiona Amolo Awuor | Oct 08, 2024
My First Python Project: A Text-Based Adventure Game
#programming #beginners #python #learning
By Misty Paprika | Oct 08, 2024
My First Python Project: A Text-Based Adventure Game
#programming #beginners #python #learning
By Misty Paprika | Oct 08, 2024
A Simple Command-Line Task Manager in Python.
#programming #tutorial #python
By Lawani Elyon John | Oct 07, 2024
Implementing a Caesar Cipher Program in Python
#cybersecurity #python #encryption
By Emmanuel Kariithi | Oct 07, 2024
Creating an LLM for testing with tensorflow in Python
#python #tensorflow #ai #llm
By victor_dalet | Oct 07, 2024
ETL: Extracting a Person's Name from Text
#python #machinelearning #programming
By Jaime | Oct 07, 2024
Introduction to python for data analysis
#data #analytics #beginners #python
By Shirley Jessy | Oct 07, 2024
Need Team Members for Computer Vision Projects (Python, OpenCV)
#computervision #python #discuss
By Orhun Eren Yalçınkaya | Oct 07, 2024
Streamlit Tutorial with Machine Learning Project
#webdev #ai #python #machinelearning
By Jagroop Singh | Oct 07, 2024
Ibuprofeno.py💊| #189: Explica este código Python
#python #spanish #learning #beginners
By Cristian Fernando | Oct 07, 2024
🎯 Case Study: How AutoKey is Exploring Opire to Attract Python Developers
#opensource #programming #python #javascript
By Anmol Baranwal | Oct 07, 2024
Python List Methods with Examples
#python #webdev #programming #beginners
By Daniel James | Oct 07, 2024
A Comprehensive Guide to Using the WordPress API: Authentication and Post Scheduling
#wordpress #api #webdev #python
By Bhavesh Ramburn | Oct 07, 2024
How to Convert PDFs to Markdown Using PyMuPDF4LLM and Its Evaluation
#pdf #markdown #llm #python
By M Sea Bass | Oct 07, 2024
🎉 HacktoberFest 2024: How to Contribute & Win Exclusive Prizes? 🚀
#hacktoberfest #hacktoberfestchallenge #coding #python
By Rym | Oct 07, 2024
Automate your tasks Using Pytest: A practical guide with examples
#pytest #python #testing #automation
By Ahmad Idrees | Oct 08, 2024
Easy Ways to Use Swiftproxy for Facebook Data Scraping
#python #swiftproxy #proxy
By Lewis Kerr | Oct 08, 2024
JavaScript Data Structures Cheat Sheet: Arrays, Typed Arrays, Sets, Maps, and WeakMaps (with Python Equivalents)
#webdev #javascript #python #datastructures
By Usool | Oct 08, 2024
Automating Faceless Shorts Videos for YouTube and TikTok Using OpenAI and ElevenLabs
#python #ai #openai #elevenlabs
By Alex | Oct 08, 2024
Creating a Virtual Environment (venv) in Python
#python #tutorial #venv #productivity
By Carlos Armando Moreira Marques | Oct 08, 2024
Continuing My Journey into Embedded Software Engineering: MSP430, Makefiles, and More
#msp430 #programming #c #python
By Ivan Delgado | Oct 08, 2024
Python CRUD Rest API using Flask, SQLAlchemy, Postgres, Docker, Docker Compose
#python #docker #postgres #beginners
By Francesco Ciulla | Oct 08, 2024
Mastering Testing in Django: Best Practices for Asynchronous Applications
#django #webdev #softwaretesting #channels
By SnapNews | Oct 08, 2024
Optimizing͏͏ Your͏͏ Django͏͏ Applications͏͏ with͏͏ Caching͏͏ Strategies
#python #django #webdev
By Stokry | Oct 08, 2024
Understanding Django ORM
#django #python #webdev #beginners
By Ellen Chan | Oct 08, 2024
Directory structure for building a stock system using FastAPI
#python #fastapi
By Pheak Pheasa | Oct 08, 2024
Programming Languages Explained
#python #javascript #development #csharp
By Mikhail Shevtsov | Oct 08, 2024
Unlock Data Insights with the 'Project: Statistical Analysis of JSON Data' Course
#labex #python #programming #course
By Labby | Oct 08, 2024
Building a Simple Python-Based Firewall for Home Networks
#python #programming #webdev #security
By Trix Cyrus | Oct 08, 2024
Introduction to Using Generative AI Models: Create Your Own Chatbot!
#langchain #python #streamlit #llm
By Lotfi | Oct 08, 2024
End of Front-End, Just Use Djang, Laravel, Spring Boot, Express, …
#django #laravel #webdev #javascript
By elanatframework | Oct 08, 2024
5 Practical Examples of Terraform with Python
#terraform #python
By Alexander_Yizchak | Oct 08, 2024
Harnessing AWS Power with Boto3 in Python: A Comprehensive Guide
#python #aws #boto3
By Alexander_Yizchak | Oct 08, 2024
Introducing My Browser-Based Python Interpreter
#python #webdev #coding #ai
By Ashutosh_dev | Oct 08, 2024
9 must-know open-source tools that will make you better than 99% of developers
#webdev #javascript #python #ai
By Nevo David | Oct 08, 2024
Machine Learning: The Future is Now
#machinelearning #ai #python
By Alexander_Yizchak | Oct 08, 2024
Authentication and Authorization – the correct way!
#python #django #softwaredevelopment #security
By Prathmesh Jagtap | Oct 09, 2024
Build & Deploy a Serverless OpenAI App in 9 Lines of Code
#ai #cloud #python #tutorial
By Qian Li | Oct 09, 2024
AI Runner 3.0
#aiart #llm #python
By w4ffl35 | Oct 09, 2024
created my first project
#python #basic
By Nelson_Malbone | Oct 09, 2024
Refactoring ReadmeGenie
#opensource #github #refactorit #python
By Henrique Sagara | Oct 09, 2024
Stay Updated with Python/FastAPI/Django: Weekly News Summary (30/09/2024-06/10/2024
#python #django #fastapi #flask
By Poovarasu Sekar | Oct 09, 2024
Ibuprofeno.py💊| #190: Explica este código Python
#beginners #learning #python #spanish
By Cristian Fernando | Oct 09, 2024
Explorando o Apache Lucene com Python: Compreendendo os Mecanismos de Busca
#python #webdev #programming #tutorial
By João Paulo Dias Estevão | Oct 09, 2024
Basic File Integrity Monitoring System
#python #fim #hashing #linux
By Mihika | Oct 08, 2024
Understanding Name Mangling in Python
#python #namemangling #oop #datastructures
By VAISHNAVI SB | Oct 09, 2024
How to Automate Social Media Posting with Python
#automation #python #programming #socialmedia
By Trix Cyrus | Oct 09, 2024
How to implement the Twitter – X API using Python FastAPI
#api #python #socialmedia #webdev
By Rolf Streefkerk | Oct 09, 2024
Key Python Terminologies for Beginners
#python #ai #programming #mojo
By Saurabh Kurve | Oct 09, 2024
Learn Python for Machine Learning: Concepts, Tools, and Projects
#machinelearning #python #datascience
By Md Yusuf | Oct 09, 2024
Remote vs. In-House: Should You Hire Python Developers Locally or Remotely?
#python #techtalks #hiring #whoishiring
By Inspius | Oct 09, 2024
How to Create Impressive Static and Dynamic Graphic Posts
#react #ai #aws #python
By Gurpinder Singh | Oct 09, 2024
Build a Python Password Generator: A Beginner's Guide
#python #programming #beginners #tutorial
By Scofield Idehen | Oct 09, 2024
Understanding Floats in Python: Essential Tips and Examples
#python #datatypes #codingtips
By Md Yusuf | Oct 09, 2024
Everything You Need to Know About Python Integers: Tips, Tricks, and Examples
#python #datatypes
By Md Yusuf | Oct 09, 2024
IndexIVFFlat y IndexIVFPQ
#rag #faiss #indexes #python
By @alonso_isidoro | Oct 09, 2024
Python Variables: Naming Rules and Type Inference Explained
#python #variables
By Md Yusuf | Oct 09, 2024
Mastering Full Stack Development
#fullstack #javascript #redis #python
By Dan @roadmap.sh | Oct 09, 2024
How to Start Programming in Python: A Beginner's Guide
#webdev #beginners #tutorial #python
By Izabella Albuquerque | Oct 09, 2024
A look into the new module in Python 3.13.0 – dbm.sqlite3
#python #programming #coding #software
By MyExamCloud | Oct 09, 2024
A Comprehensive Guide to Strings in Python: Basics, Methods, and Best Practices
#pythonstrings #python
By Md Yusuf | Oct 09, 2024
Data Science Revolution: Change in Industries and Society
#data #datascience #mysql #python
By jinesh vora | Oct 09, 2024
Python Lists Explained: A Beginner's Guide with Examples
#datastructures #python
By Md Yusuf | Oct 09, 2024
Building A Weather Station with a Raspberry Pi and Python – Part One
#python #raspberrypi #linux #vscode
By dev_neil_a | Oct 09, 2024
Concurrency and Parallelism in Python
#llm #ai #python #machinelearning
By Hakeem Abbas | Oct 09, 2024
Building a Simple Image Encryption Tool Using Python
#cybersecurity #python #pixelmanipulation #imageencryption
By Emmanuel Kariithi | Oct 09, 2024
Personal Finance Management App with Django, HTMX, Alpine, Tailwind and Plaid
#django #webdev #htmx #tailwindcss
By Hana Belay | Oct 09, 2024
FastAPI: How to use Pydantic to declare Query Parameters
#fastapi #python #pydantic #microservices
By Rafael de Oliveira Marques | Oct 09, 2024
How to Deploy an AI App (w/ Large Deps) to AWS Lambda
#ai #aws #python #devops
By Qian Li | Oct 09, 2024
Go vs Python for File Processing: A Performance and Architecture Perspective
#python #go #performance #dataengineering
By Nico Bistolfi | Oct 10, 2024
API Authentication with Open ID Connect
#api #django
By Gilbert Hawkins Winja | Oct 10, 2024
Best Python Libraries for ETL Pipelines: A Beginners Developer's Guide
#programming #python #datascience #beginners
By Nico Bistolfi | Oct 10, 2024
CPU SIMULATOR
#python #sql #github #git
By Brandon(Zoobob5) | Oct 10, 2024
Performance trap: general libraries & helper objects
#performance #software #python #bioinformatics
By David Haley | Oct 10, 2024
How to scrape data from Google Maps using Python?
#python #google #proxy #swiftproxy
By Lewis Kerr | Oct 10, 2024
Step-by-Step Guide: Interruption Management with OpenAI Realtime API
#python #realtimeapi #openai #pyaudio
By M Sea Bass | Oct 10, 2024
Python vs. JavaScript: A Comprehensive Comparison of Flexibility and Use Cases
#python #javascript #fullstack #webdev
By Oliver Bennet | Oct 10, 2024
Read cloud specific configuration from configuration files
#aws #cloudcomputing #python
By Rahul Kashyap | Oct 10, 2024
Developing cloud agnostic application
#cloudcomputing #aws #cloudskills #python
By Rahul Kashyap | Oct 10, 2024
Python Code Testing Frameworks to Choose From
#python #development #productivity
By Neo Developer | Oct 10, 2024
Python Tuples: A Comprehensive Guide with Examples
#pythontuples #python
By Md Yusuf | Oct 10, 2024
Scheduling Your Posts: A Guide to Automating Social Media with Python
#python #programming #socialmedia #automation
By Trix Cyrus | Oct 10, 2024
Scheduling Your Posts: A Guide to Automating Social Media with Python
#python #programming #socialmedia #automation
By Trix Cyrus | Oct 10, 2024
Understanding Python Modules and Packages
#softwaredevelopment #python
By Md Yusuf | Oct 10, 2024
Essential Python Built-in Functions: Examples and Usage
#builtinfunctions #python
By Md Yusuf | Oct 10, 2024
Understanding Python Lambda Functions: A Comprehensive Guide
#lambdafunctions #python
By Md Yusuf | Oct 10, 2024
Control Flow in Python: Loops, Break, Continue, and Pass Explained
#loops #python
By Md Yusuf | Oct 10, 2024
Flask vs Django: The Epic Showdown Between Flexibility and Control!
#100daysofmiva #django #flask #difference
By mayowa-kalejaiye | Oct 10, 2024
Understanding Conditional Statements in Python
#conditionalstatements #python
By Md Yusuf | Oct 10, 2024
Exploring Python Operators: Key Concepts and Examples
#pythonoperators #python
By Md Yusuf | Oct 10, 2024
Understanding Python Dictionaries: A Complete Overview
#dictionaries #python
By Md Yusuf | Oct 10, 2024
Regular Expressions
#regex #webdev #softwaredevelopment #python
By Cristian Alaniz | Oct 10, 2024
Unlocking the Power of Python Classes and Objects
#objectorientedprogramming #python
By Md Yusuf | Oct 10, 2024
Guide to Python's CSV Module
#python #csv
By Developer Service | Oct 10, 2024
Free Threaded Mode in Python3.13 (GIL disabled)
#python #gil
By Hieu Nguyen | Oct 10, 2024
Hacktoberfest from a maintainer's point of view
#hacktoberfest #python #csv
By Alessandro Pischedda | Oct 10, 2024
Do Python developers still create GUI desktop apps? If so, what tools do you use?
#python
By teejayRedex | Oct 10, 2024
Rock Doesn't Beat Scissors? Replit sees it as a tie? Help!
#beginners #tutorial #programming #python
By Shawn | Oct 10, 2024
Chat with your PDF using Pinata,OpenAI and Streamlit
#devchallenge #pinatachallenge #webdev #python
By Jagroop Singh | Oct 10, 2024
INTERPRET AND INTERACT
#python
By vamshi Ganji | Oct 10, 2024
Advanced Python
#python #programming #softwareengineering
By Abdikhafar | Oct 11, 2024
The Host Manager You Never Knew You Needed… Until Now! 😲
#python #tui #hosts
By Flávio Nunes | Oct 11, 2024
How to Use Context Manager Pattern in JavaScript for Efficient Code Execution
#javascript #python #beginners #programming
By Vishnu Satheesh | Oct 11, 2024
O Gerenciador de Hosts que Você Nunca Soube que Precisava… Até Agora! 😲
#python #tui #hosts
By Flávio Nunes | Oct 11, 2024
Handling Outliers in Python – IQR Method
#python #datascience #dataengineering #data
By allan-pg | Oct 11, 2024
Python from the word …Go
#webdev #programming #python
By Abdikhafar | Oct 11, 2024
BIG UPDATE
#ai #programming #python #machinelearning
By Kevin Palma | Oct 11, 2024
Python & Data Structures Part 2: type() Keyword
#python #webdev #programming #beginners
By Anthony Beckford🚀 | Oct 11, 2024
Las 10 Mejores Herramientas de Web Scraper para Generar Leads
#scraper #python #productivity #datascience
By Elena Allende | Oct 11, 2024
Why Scala is the Best Choice for Big Data Applications: Advantages Over Java and Python
#scala #java #python #bigdata
By Aditya Pratap Bhuyan | Oct 11, 2024
Fast Websites: Rendering Static Pages to Dynamics in Python
#opensource #python #webdev #ssg
By kayon ariel | Oct 11, 2024
Concurrency vs Parallelism
#scaling #node #python
By Scrapfly | Oct 11, 2024
Running Llama 3.2 on Android: A Step-by-Step Guide Using Ollama
#webdev #javascript #openai #python
By KAMAL KISHOR | Oct 11, 2024
Python vs. JavaScript: A Comprehensive Comparison of Flexibility and Use Cases
#python #javascript #fullstack #webdev
By Oliver Bennet | Oct 11, 2024
Generators in Python
#python #ai #machinelearning #llm
By Hakeem Abbas | Oct 11, 2024
Using WebSocket with Python
#python #websocket #asyncrounous #multithreading
By M Sea Bass | Oct 11, 2024
F1 FollowLine + HSV filter + PID Controller
#python #programming #coding #automation
By Jorge Martin | Oct 11, 2024
This Week In Python
#python #thisweekinpython
By Bas Steins | Oct 11, 2024
Best Python IDEs: Exploring the Most Used Python IDEs in 2024
#python #development #programming
By Gustavo Carvalho | Oct 11, 2024
How I Learned Generative AI in Two Weeks (and You Can Too): Part 2 – Embeddings
#beginners #ai #learning #python
By Julia Zhou | Oct 11, 2024
Day 7: Create a calculator in Python [exercise]
#python #programming #oop #development
By aryan015 | Oct 11, 2024
6 Tools to make you a 10x faster AI Engineer in 2024
#ai #productivity #python #llm
By angelocodes | Oct 11, 2024
The Art of Code Reviews: How I Learned to Grow Beyond My Ego
#development #career #codereview #python
By Josh | Oct 12, 2024
Streamline Your NumPy File Conversions with npyConverter
#python #numpy #csv #matlab
By Erik Lindvall | Oct 12, 2024
Top 5 Frameworks for Building AI Agents in 2024
#webdev #ai #javascript #python
By Nomadev | Oct 12, 2024
Building a crashproof cloud backend in Python using REST and PostgreSQL
#python #tutorial #webdev #cloud
By Qian Li | Oct 12, 2024
Python libraries
#python #datascience #machinelearning
By raman000 | Oct 12, 2024
Double Luhn
#perl #python #theweeklychallenge
By Simon Green | Oct 12, 2024
Django Class Based View made easy
#webdev #django #python
By Rexsy Bima Trima Wahyu | Oct 12, 2024
Unlock Your Python Potential with the "Quick Start with Python" Course
#labex #linux #python #programming
By Labby | Oct 12, 2024
How to Generate RSA Key Using JavaScript and Python
#webdev #javascript #python #security
By Shubham Khan | Oct 12, 2024
Python For Beginners
#python #beginners #programming #tutorial
By Yashraj | Oct 12, 2024
Interactive stock market S&P 500 line chart using Bokeh, Python, JS, Pyscript and a movable angle finder for Trend Line Analysis
#python #javascript #webdev #datascience
By Rick Delpo | Oct 13, 2024
Functional Testing as a Design Tool for Full Stack Projects. Part II: API server and Project Release
#python #testing #architecture #api
By Daniel Haimov | Oct 12, 2024
NoisOCR: A Python Library for Simulating Post-OCR Noisy Texts
#ocr #spellingcorrection #python #languagemodel
By Sávio Santos | Oct 12, 2024
Python Inheritance Explained: Types, Examples, and Best Practices
#python #inheritance
By Md Yusuf | Oct 12, 2024
Optimizing Your Neural Networks
#machinelearning #ai #pytorch #python
By Sam Der | Oct 12, 2024
Creating "Cipher Strike": Bypassing Safeguards, AI Hallucinations, and the Future of Cybersecurity Threats
#python #ai #hacktoberfest #showdev
By christopher adams | Oct 12, 2024
My first Python Program: Tarot
#beginners #programming #python #learning
By spinner77 | Oct 12, 2024
Find resistance of wheatstone bridge
#python #assignment #calculate
By CAT-CMS | Oct 12, 2024
Comprehensive Guide to Filtering in Django REST Framework (DRF) with a Real-World Example
#webdev #django #python #beginners
By kihuni | Oct 13, 2024
Mastering Snake Game with Reinforcement Learning and Linear Q-Network (with Python)
#ai #machinelearning #python #reinforcementlearning
By Iman Karimi | Oct 13, 2024
Built a image to text extractor tool
#python #ai #javascript
By Salman Angaria | Oct 13, 2024
Building an E-Learning App: Architectural Flaws in Django and React
#webdev #reactandseochallenges #django
By Mouad Ben Mekki | Oct 13, 2024
Inverse Turing Test: Can ChatGPT tell it’s talking to a bot?
#ai #chatgpt #python #opensource
By Wasi Kahn | Oct 13, 2024
Why Django Stands Out Among Web Development Frameworks
#django #webdev #frameworks
By Aditya Pratap Bhuyan | Oct 13, 2024
Bottle – Python Lightweight and Fast micro web framework
#python #django #restapi #webdev
By Pranav Bakare | Oct 13, 2024
Transform Your Text Analysis Journey: How KeyBERT is Changing the Game for Keyword Extraction!
#webdev #python #machinelearning #ai
By Adithya A | Oct 13, 2024
Weather Data Collection and Analysis for Major Towns in Kenya
#python #jupyter #database #analytics
By Edwin Kinyao | Oct 13, 2024
Move hardcoded secrets to a Secrets Manager
#python #security #programming #learning
By Khai J. Thani | Oct 13, 2024
Polymorphism in Python: Exploring Method Overloading and Method Overriding
#polymorphism #pythonmethods #python
By Md Yusuf | Oct 13, 2024
Logging con Python
#python #logging
By Javier Rodriguez | Oct 13, 2024
Python 101: Introduction to Python as a Data Analytics Tool
#python #database #analytics #tutorial
By michael kibia | Oct 13, 2024
LDAP (Lightweight Directory Access Protocol
#cybersecurity #ldap #python #log4j
By Grace Valerie | Oct 13, 2024
Turnkey AI with RAG Saas for Developers
#python #ai #discuss
By Jagan kumar | Oct 13, 2024
Unlocking the Power of Behavior-Driven Development (BDD)
#testing #agile #productivity #python
By Chino Franco | Oct 13, 2024
#Daniel Roy Greenfeld Blogs
Python CSV Cheatsheet
Here's a quick reference guide for Python's csv module. I use it periodicially, but not enough that I memorize the API.
By Daniel Roy Greenfeld | Oct 12, 2024