Ned Batchelder: Where did everyone go?
Link: https://nedbatchelder.com/blog/202310/where_did_everyone_go.html
It’s been nearly a year since Elon Musk bought and started ruining Twitter.
Since then, I’ve been on Mastodon
and Bluesky, and I’ve
started watching a bunch of RSS feeds I relied on in the days before
Link: https://nedbatchelder.com/blog/202310/where_did_everyone_go.html
It’s been nearly a year since Elon Musk bought and started ruining Twitter.
Since then, I’ve been on Mastodon
and Bluesky, and I’ve
started watching a bunch of RSS feeds I relied on in the days before
Nedbatchelder
Where did everyone go?
It’s been nearly a year since Elon Musk bought and started ruining Twitter. Since then, I’ve been on <a href="https://hachyderm.io/@nedbat" rel="external noopener">Mastodon</a> and <a href="https://bsky.app/profile/nedbat.com" rel="external noopener">Bluesky</a>…
TechBeamers Python: Python Enumerate Function
Link: https://www.techbeamers.com/python-enumerate/
The enumerate function in Python is a useful and powerful tool for iterating through sequences such as lists, tuples, or strings. It provides both the value and the index of each element in the sequen
Link: https://www.techbeamers.com/python-enumerate/
The enumerate function in Python is a useful and powerful tool for iterating through sequences such as lists, tuples, or strings. It provides both the value and the index of each element in the sequen
TechBeamers
Python Enumerate Function
Explore Python enumerate function in-depth, how to use it effectively, and compare it to other methods for achieving similar results.
TechBeamers Python: Python Dictionary to DataFrame
Link: https://www.techbeamers.com/python-dictionary-to-dataframe/
Python’s Pandas library is a powerful tool for data manipulation and analysis. It offers various data structures, and one of the most commonly used is the DataFrame. A data frame is essentially a two-
Link: https://www.techbeamers.com/python-dictionary-to-dataframe/
Python’s Pandas library is a powerful tool for data manipulation and analysis. It offers various data structures, and one of the most commonly used is the DataFrame. A data frame is essentially a two-
TechBeamers
Python Dictionary to DataFrame
Explore different methods to convert a Python dictionary into a Pandas DataFrame. Also, find out which method suits your use case the most.
TechBeamers Python: Loop Through Files in a Directory
Link: https://www.techbeamers.com/python-loop-through-files-in-directory/
In this tutorial, you’ll learn how to loop through files in a directory using Python. This is a common task when working with files. Whether you want to perform operations on each file, read their con
Link: https://www.techbeamers.com/python-loop-through-files-in-directory/
In this tutorial, you’ll learn how to loop through files in a directory using Python. This is a common task when working with files. Whether you want to perform operations on each file, read their con
TechBeamers
Loop Through Files in a Directory
In this tutorial, you'll learn how to loop through files in a directory using Python. This is a common task when iterating over files.
TechBeamers Python: Higher Order Functions in Python
Link: https://www.techbeamers.com/higher-order-functions-in-python/
As Python programmers, we always strive to make our code concise and reusable. We keep looking for best practices that can help us achieve this goal. In today’s tutorial, we are going to discuss one s
Link: https://www.techbeamers.com/higher-order-functions-in-python/
As Python programmers, we always strive to make our code concise and reusable. We keep looking for best practices that can help us achieve this goal. In today’s tutorial, we are going to discuss one s
TechBeamers
Higher Order Functions in Python
Higher-order functions in Python take functions as arguments, or return as results, making code more readable and reusable.
Mike Driscoll: PyDev of the Week: Simon Cross
Link: https://www.blog.pythonlibrary.org/2023/10/23/pydev-of-the-week-simon-cross/
This week we welcome Simon Cross (@hodgestar) as our PyDev of the Week! Simon lives in South Africa and helped start PyConZA. You can see all the various open-source tools that Simon works on over on
Link: https://www.blog.pythonlibrary.org/2023/10/23/pydev-of-the-week-simon-cross/
This week we welcome Simon Cross (@hodgestar) as our PyDev of the Week! Simon lives in South Africa and helped start PyConZA. You can see all the various open-source tools that Simon works on over on
Mouse Vs Python
PyDev of the Week: Simon Cross - Mouse Vs Python
This week we welcome Simon Cross (@hodgestar) as our PyDev of the Week! Simon lives in South Africa and helped start PyConZA. You can see all the various
Real Python: How to Run Your Python Scripts and Code
Link: https://realpython.com/run-python-scripts/
A Python script or program is a file containing executable Python code. Being able to run Python scripts and code is probably the most important skill that you need as a Python developer. By running y
Link: https://realpython.com/run-python-scripts/
A Python script or program is a file containing executable Python code. Being able to run Python scripts and code is probably the most important skill that you need as a Python developer. By running y
Realpython
How to Run Your Python Scripts and Code – Real Python
A Python script or program is a file containing executable Python code. Being able to run Python scripts and code is probably the most important skill that you need as a Python developer. By running your code, you'll know if it works as planned.
Stack Abuse: How to Delete a File or Folder in Python
Link: https://stackabuse.com/how-to-delete-a-file-or-folder-in-python/
Introduction
In this Byte we'll be exploring how to delete files and folders in Python. It's a common task in many programming and scripting contexts, especially in areas like data cleaning, temporary
Link: https://stackabuse.com/how-to-delete-a-file-or-folder-in-python/
Introduction
In this Byte we'll be exploring how to delete files and folders in Python. It's a common task in many programming and scripting contexts, especially in areas like data cleaning, temporary
Django Weblog: Django 5.0 beta 1 released
Link: https://www.djangoproject.com/weblog/2023/oct/23/django-50-beta-1-released/
Django 5.0 beta 1 is now available. It represents the second stage in the 5.0
release cycle and is an opportunity for you to try out the changes coming in
Django 5.0.
Django 5.0 brings a deluge of exc
Link: https://www.djangoproject.com/weblog/2023/oct/23/django-50-beta-1-released/
Django 5.0 beta 1 is now available. It represents the second stage in the 5.0
release cycle and is an opportunity for you to try out the changes coming in
Django 5.0.
Django 5.0 brings a deluge of exc
Django Project
Django 5.0 beta 1 released
Posted by Natalia Bidart on Oct. 23, 2023
TechBeamers Python: Class Definitions in Python
Link: https://www.techbeamers.com/class-definitions-in-python/
In this tutorial, we’ll explore the basics of class definitions in Python. A class is like a template for making specific objects. It outlines the characteristics and actions shared by all objects of
Link: https://www.techbeamers.com/class-definitions-in-python/
In this tutorial, we’ll explore the basics of class definitions in Python. A class is like a template for making specific objects. It outlines the characteristics and actions shared by all objects of
TechBeamers
Class Definitions in Python
Let's explore the basics of class definitions in Python and what classes are, how to create them, and different aspects of class design.
TechBeamers Python: Python String Strip Tutorial
Link: https://www.techbeamers.com/python-string-strip-tutorial/
In Python, the strip() method is used to remove start and finish whitespace characters (spaces, tabs, and newline characters) from a string. This can be incredibly useful when working with user input,
Link: https://www.techbeamers.com/python-string-strip-tutorial/
In Python, the strip() method is used to remove start and finish whitespace characters (spaces, tabs, and newline characters) from a string. This can be incredibly useful when working with user input,
TechBeamers
Python String Strip Tutorial
Check how the Python string strip() method removes beginning and ending whitespace characters (spaces, tabs, and newlines) from a string.
PyCharm: Join the Webinar: Do You Do Enough Testing? pytest to the Rescue!
Link: https://blog.jetbrains.com/pycharm/2023/10/do-you-do-enough-testing-pytest-to-the-rescue/
Join our webinar on November 21 at 4:00 pm UTC to learn how you can use pytest to find bugs, improve code quality, and even have some fun along the way. We’ll be chatting with Brian Okken about all th
Link: https://blog.jetbrains.com/pycharm/2023/10/do-you-do-enough-testing-pytest-to-the-rescue/
Join our webinar on November 21 at 4:00 pm UTC to learn how you can use pytest to find bugs, improve code quality, and even have some fun along the way. We’ll be chatting with Brian Okken about all th
The JetBrains Blog
Join the Webinar: Do You Do Enough Testing? pytest to the Rescue! | The PyCharm Blog
Join our webinar on November 21 at 4:00 pm UTC to learn how you can use pytest to find bugs, improve code quality, and even have some fun along the way. We’ll be chatting with Brian Okken about all th
TechBeamers Python: Simple Android Data Analytics App in Python
Link: https://www.techbeamers.com/simple-android-data-analytics-app-in-python/
Today, we present you with an inquisitive tutorial on how to create a simple Android data analytics app in Python. The purpose of this Android app is to record and display the time you spend on the sc
Link: https://www.techbeamers.com/simple-android-data-analytics-app-in-python/
Today, we present you with an inquisitive tutorial on how to create a simple Android data analytics app in Python. The purpose of this Android app is to record and display the time you spend on the sc
TechBeamers
Simple Android Data Analytics App in Python
Let's create a simple Android data analytics app in Python. It'll record and display the time you spend on the screen throughout the day.
Real Python: Python Basics Exercises: Building Systems With Classes
Link: https://realpython.com/courses/building-systems-classes-exercises/
In Python Basics: Building Systems With Classes, you moved beyond the basics of object-oriented programming (OOP), and started to put those classes to work. In this exercise course you will employ the
Link: https://realpython.com/courses/building-systems-classes-exercises/
In Python Basics: Building Systems With Classes, you moved beyond the basics of object-oriented programming (OOP), and started to put those classes to work. In this exercise course you will employ the
Realpython
Python Basics Exercises: Building Systems With Classes – Real Python
In this Python Basics Exercises course, you'll review how to work with classes to build complex systems in Python. By practicing composing classes, inheriting from other classes, and overriding class behavior, you'll harness the power of object-oriented programming…
PyCoder’s Weekly: Issue #600 (Oct. 24, 2023)
Link: https://pycoders.com/issues/600
#600 – OCTOBER 24, 2023 View in Browser » Building Custom Middleware in FastAPI Middleware in a web stack framework is able to intercept all requests allowing you to write common request process
Link: https://pycoders.com/issues/600
#600 – OCTOBER 24, 2023 View in Browser » Building Custom Middleware in FastAPI Middleware in a web stack framework is able to intercept all requests allowing you to write common request process
Pycoders
PyCoder’s Weekly | Issue #600
Issue #600 of the PyCoder’s Weekly newsletter, published Oct. 24, 2023.
Python Bytes: #358 Collecting Shells
Link: https://pythonbytes.fm/episodes/show/358/collecting-shells
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://www.djangoproject.com/weblog/2023/oct/23/django-50-beta-1-released/"><strong>Django 5.0 beta 1 released</strong></a></l
Link: https://pythonbytes.fm/episodes/show/358/collecting-shells
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://www.djangoproject.com/weblog/2023/oct/23/django-50-beta-1-released/"><strong>Django 5.0 beta 1 released</strong></a></l
pythonbytes.fm
Collecting Shells
News and announcements from the Python community for the week of Oct 24th, 2023
PyBites: How to Land a Dev Job in 2023: Proven Strategies & Mistakes to Avoid
Link: https://pybit.es/articles/how-to-land-a-dev-job-in-2023-proven-strategies-mistakes-to-avoid/
Welcome back to the Pybites podcast …
On YouTube:
Or listen here:
In this episode, we delve deep into the nuances of developer job hunting in 2023. The job market landscape has evolved, making pers
Link: https://pybit.es/articles/how-to-land-a-dev-job-in-2023-proven-strategies-mistakes-to-avoid/
Welcome back to the Pybites podcast …
On YouTube:
Or listen here:
In this episode, we delve deep into the nuances of developer job hunting in 2023. The job market landscape has evolved, making pers
Pybites
How To Land A Dev Job In 2023: Proven Strategies & Mistakes To Avoid - Pybites
Welcome back to the Pybites podcast ...
Python Morsels: What are lambda expressions?
Link: https://www.pythonmorsels.com/lambda-expressions/
What are lambda expressions and how are they used in Python?
Table of contents
Lambda expressions define functions
Lambda expressions can be defined on the same line they're used
The limitations of
Link: https://www.pythonmorsels.com/lambda-expressions/
What are lambda expressions and how are they used in Python?
Table of contents
Lambda expressions define functions
Lambda expressions can be defined on the same line they're used
The limitations of
Pythonmorsels
Python's lambda functions
What are lambda expressions and how are they used in Python?
Mike Driscoll: The Ruff Formatter – Python’s Fastest Formatter!
Link: https://www.blog.pythonlibrary.org/2023/10/25/the-ruff-formatter-pythons-fastest-formatter/
The Ruff project was released about a year ago and stormed the Python world. Ruff is written in Rust, but lints Python super fast. You can read all about it in An Intro to Ruff.
This week, the Ruff fo
Link: https://www.blog.pythonlibrary.org/2023/10/25/the-ruff-formatter-pythons-fastest-formatter/
The Ruff project was released about a year ago and stormed the Python world. Ruff is written in Rust, but lints Python super fast. You can read all about it in An Intro to Ruff.
This week, the Ruff fo
Mouse Vs Python
The Ruff Formatter - Python's Fastest Formatter! - Mouse Vs Python
The Ruff project was released about a year ago and stormed the Python world. Ruff is written in Rust, but lints Python super fast. You can read all about
Real Python: Boost Your Coding Productivity With Ptpython
Link: https://realpython.com/ptpython-shell/
Ptpython is a feature-rich and user-friendly Python REPL (Read-Eval-Print Loop) that takes your interactive Python coding experience to a whole new level. Unlike the standard Python REPL, ptpython off
Link: https://realpython.com/ptpython-shell/
Ptpython is a feature-rich and user-friendly Python REPL (Read-Eval-Print Loop) that takes your interactive Python coding experience to a whole new level. Unlike the standard Python REPL, ptpython off
Realpython
Boost Your Coding Productivity With Ptpython – Real Python
Learn how to enhance your Python development workflow with auto-completion, syntax highlighting, history navigation, and more. In this tutorial, you'll walk through the fundamentals of ptpython, covering installation, basic usage, and advanced features.