Python People: Naomi Ceder
Link: https://pythonpeople.fm/episodes/naomi-ceder
Naomi is an elected fellow of the PSF, and has served as chair of its board of directors. Topics:- Building replacement leadership for every endeavor you start- What the PSF board does- Keeping Python
Link: https://pythonpeople.fm/episodes/naomi-ceder
Naomi is an elected fellow of the PSF, and has served as chair of its board of directors. Topics:- Building replacement leadership for every endeavor you start- What the PSF board does- Keeping Python
Python People
Python People | Naomi Ceder
The Python community is awesome because of the people. Python People is a weekly podcast about getting to know the people who help make the Python community great.
It's less about the tech, and more about the people.
It's less about the tech, and more about the people.
Stack Abuse: Check if an Object has an Attribute in Python
Link: https://stackabuse.com/check-if-an-object-has-an-attribute-in-python/
Introduction
In Python, everything is an object, and each object has attributes. These attributes can be methods, variables, data types, etc. But how do we know what attribute an object has?
In this B
Link: https://stackabuse.com/check-if-an-object-has-an-attribute-in-python/
Introduction
In Python, everything is an object, and each object has attributes. These attributes can be methods, variables, data types, etc. But how do we know what attribute an object has?
In this B
EuroPython: EuroPython September 2023 Newsletter
Link: https://blog.europython.eu/europython-august-2023-newsletter/
Hello there and welcome to the post conference newsletter! We really hope you enjoyed EuroPython 2023 cause we sure did and are still recovering from all the fun and excitement. 😊We have some updates
Link: https://blog.europython.eu/europython-august-2023-newsletter/
Hello there and welcome to the post conference newsletter! We really hope you enjoyed EuroPython 2023 cause we sure did and are still recovering from all the fun and excitement. 😊We have some updates
EuroPython Blog
EuroPython September 2023 Newsletter
Hello there and welcome to the post conference newsletter! We really hope you enjoyed EuroPython 2023 cause we sure did and are still recovering from all the fun and excitement. 😊 We have some updates to share with you and also wanted to use this newsletter…
Mike Driscoll: An Intro to Protocol Buffers with Python
Link: https://www.blog.pythonlibrary.org/2023/08/30/an-intro-to-protocol-buffers-with-python/
Protocol buffers are a data serialization format that is language agnostic. They are analogous to Python’s own pickle format, but one of the advantages of protocol buffers is that they can be used by
Link: https://www.blog.pythonlibrary.org/2023/08/30/an-intro-to-protocol-buffers-with-python/
Protocol buffers are a data serialization format that is language agnostic. They are analogous to Python’s own pickle format, but one of the advantages of protocol buffers is that they can be used by
Mouse Vs Python
An Intro to Protocol Buffers with Python - Mouse Vs Python
Protocol buffers are a data serialization format that is language agnostic. They are analogous to Python's own pickle format, but one of the advantages of
Real Python: Get Started With Django: Build a Portfolio App
Link: https://realpython.com/get-started-with-django-1/
Django is a fully featured Python web framework that you can use to build complex web applications. In this tutorial, you’ll jump in and learn Django by completing an example project. You’ll follow th
Link: https://realpython.com/get-started-with-django-1/
Django is a fully featured Python web framework that you can use to build complex web applications. In this tutorial, you’ll jump in and learn Django by completing an example project. You’ll follow th
Realpython
Get Started With Django: Build a Portfolio App – Real Python
In this step-by-step tutorial, you'll learn the basics of creating powerful web applications with Django, a Python web framework. You'll build an example portfolio application to showcase your web development projects.
Stack Abuse: Creating a Dictionary with Comprehension in Python
Link: https://stackabuse.com/creating-a-dictionary-with-comprehension-in-python/
Introduction
As you've probably come to learn with Python, there are quite a few ways to do an operation, some methods being better than others. One of the features that contribute to its power is the
Link: https://stackabuse.com/creating-a-dictionary-with-comprehension-in-python/
Introduction
As you've probably come to learn with Python, there are quite a few ways to do an operation, some methods being better than others. One of the features that contribute to its power is the
Mike Driscoll: Textual Apps Coming to a Website Near You
Link: https://www.blog.pythonlibrary.org/2023/08/30/textual-apps-coming-to-a-website-near-you/
Textual is an amazing Python package for creating Text-Based User Interfaces (TUIs) in Python. You can learn more in An Intro to Textual – Creating Text User Interfaces with Python.
However, Textual i
Link: https://www.blog.pythonlibrary.org/2023/08/30/textual-apps-coming-to-a-website-near-you/
Textual is an amazing Python package for creating Text-Based User Interfaces (TUIs) in Python. You can learn more in An Intro to Textual – Creating Text User Interfaces with Python.
However, Textual i
Mouse Vs Python
Textual Apps Coming to a Website Near You - Mouse Vs Python
Textual is an amazing Python package for creating Text-Based User Interfaces (TUIs) in Python. You can learn more in An Intro to Textual – Creating Text
Stack Abuse: Python Naming Conventions for Variables, Functions, and Classes
Link: https://stackabuse.com/python-naming-conventions-for-variables-functions-and-classes/
Introduction
Python, like any other programming language, has its own set of rules and conventions when it comes to naming variables and functions. These conventions aren't just for aesthetics or to m
Link: https://stackabuse.com/python-naming-conventions-for-variables-functions-and-classes/
Introduction
Python, like any other programming language, has its own set of rules and conventions when it comes to naming variables and functions. These conventions aren't just for aesthetics or to m
Stack Abuse
Python Naming Conventions for Variables, Functions, and Classes
Python, like any other programming language, has its own set of rules and conventions when it comes to naming variables and functions. These conventions aren't...
Programiz: Python List
Link: https://www.programiz.com/python-programming/list
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items and other list operations) with the help of examples.
Link: https://www.programiz.com/python-programming/list
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items and other list operations) with the help of examples.
Programiz
Python List (With Examples)
Python lists store multiple data together in a single variable. In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
DataWars.io: Hello PlanetPython 👋 | DataWars
Link: https://www.datawars.io/articles/hello-planetpython
We have just been added to PlanetPython's RSS feed.
Link: https://www.datawars.io/articles/hello-planetpython
We have just been added to PlanetPython's RSS feed.
www.datawars.io
Hello PlanetPython 👋
We have just been added to PlanetPython's RSS feed.
Stack Abuse: Traversing a List in Reverse Order in Python
Link: https://stackabuse.com/traversing-a-list-in-reverse-order-in-python/
Introduction
If you've been coding in Python for a while, you're probably familiar with how to traverse a list in the usual way - from the first element to the last. But what about when you need to tr
Link: https://stackabuse.com/traversing-a-list-in-reverse-order-in-python/
Introduction
If you've been coding in Python for a while, you're probably familiar with how to traverse a list in the usual way - from the first element to the last. But what about when you need to tr
Zero to Mastery: Python Monthly Newsletter 💻🐍
Link: https://zerotomastery.io/blog/python-monthly-newsletter-august-2023/?utm_source=python-rss-feed
45th issue of the Python Monthly Newsletter! Read by 1,000s of Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry
Link: https://zerotomastery.io/blog/python-monthly-newsletter-august-2023/?utm_source=python-rss-feed
45th issue of the Python Monthly Newsletter! Read by 1,000s of Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry
Zero To Mastery
[August 2023] Python Monthly Newsletter 💻🐍 | Zero To Mastery
45th issue of the Python Monthly Newsletter! Read by 1,000s of Python developers, Andrei covers the most important Python news to keep you sharp & up-to-date.
PyBites: Empower Your Python Ambitions – From Idea Paralysis to Real-World Projects
Link: https://pybit.es/articles/build-real-world-python-projects/
In this podcast episode we talk about the significance of building real-world Python applications.
Listen here:
Or watch here:
Bob highlights the importance of breaking away from tutorial paralysis
Link: https://pybit.es/articles/build-real-world-python-projects/
In this podcast episode we talk about the significance of building real-world Python applications.
Listen here:
Or watch here:
Bob highlights the importance of breaking away from tutorial paralysis
Pybites
Empower Your Python Ambitions - From Idea Paralysis To Real-World Projects - Pybites
In this podcast episode we talk about the significance of building real-world Python applications.
Stack Abuse: Differences Between Python's defaultdict and dict
Link: https://stackabuse.com/differences-between-pythons-defaultdict-and-dict/
Introduction
In Python, dictionaries are one of the most flexible built-in data types. They are great for structuring data and can help you solve a myriad of problems. But what if I told you there's a
Link: https://stackabuse.com/differences-between-pythons-defaultdict-and-dict/
Introduction
In Python, dictionaries are one of the most flexible built-in data types. They are great for structuring data and can help you solve a myriad of problems. But what if I told you there's a
Stack Abuse
Differences Between Python's defaultdict and dict
In Python, dictionaries are one of the most flexible built-in data types. They are great for structuring data and can help you solve a myriad of problems. But...
The Python Coding Blog: Graduation at Hogwarts and Other Python Stories | August in Review
Link: https://thepythoncodingbook.com/2023/08/31/graduation-at-hogwarts-and-other-python-stories-august-in-review/
August is a quiet month, right? Well, not at The Python Coding Stack and Breaking the Rules, my two Substacks.
On The Python Coding Stack, I experimented with some different styles of articles. The mo
Link: https://thepythoncodingbook.com/2023/08/31/graduation-at-hogwarts-and-other-python-stories-august-in-review/
August is a quiet month, right? Well, not at The Python Coding Stack and Breaking the Rules, my two Substacks.
On The Python Coding Stack, I experimented with some different styles of articles. The mo
The Python Coding Book
Graduation at Hogwarts & Other Python Stories | August in Review
An overview of August on The Python Coding Stack and Breaking the Rules. From stories about Py Town to picture stories to ending series…
Tryton News: Newsletter September 2023
Link: https://discuss.tryton.org/t/newsletter-september-2023/6488
Please update your systems and take care of a security bug we found last month. See the related announcement.
Soon, in just two months, at the very beginning of November we’ll publish our next Long
Link: https://discuss.tryton.org/t/newsletter-september-2023/6488
Please update your systems and take care of a security bug we found last month. See the related announcement.
Soon, in just two months, at the very beginning of November we’ll publish our next Long
Tryton Discussion
Newsletter September 2023
Please update your systems and take care of a security bug we found last month. See the related announcement. Soon, in just two months, at the very beginning of November we’ll publish our next Long Term Supported (LTS) release of Tryton, version 7.0. Please…
Real Python: The Real Python Podcast – Episode #170: Finding the Right Coding Font for Programming in Python
Link: https://realpython.com/podcasts/rpp/170/
What should you consider when picking a font for coding in Python? What characters and their respective glyphs should you check before making your decision? This week on the show, we talk with Real Py
Link: https://realpython.com/podcasts/rpp/170/
What should you consider when picking a font for coding in Python? What characters and their respective glyphs should you check before making your decision? This week on the show, we talk with Real Py
Realpython
Episode #170: Finding the Right Coding Font for Programming in Python – The Real Python Podcast
What should you consider when picking a font for coding in Python? What characters and their respective glyphs should you check before making your decision? This week on the show, we talk with Real Python author and core team member Philipp Acsany about his…
Stack Abuse: Capitalizing First Letter of Each Word in Python
Link: https://stackabuse.com/capitalizing-first-letter-of-each-word-in-python/
Introduction
Working with strings is a common task in many programming languages. One possible use-case you'll encounter is capitalizing the first letter of each word in a string. This Byte will explo
Link: https://stackabuse.com/capitalizing-first-letter-of-each-word-in-python/
Introduction
Working with strings is a common task in many programming languages. One possible use-case you'll encounter is capitalizing the first letter of each word in a string. This Byte will explo
Stack Abuse: Limiting Float Decimal Points in Python
Link: https://stackabuse.com/limiting-float-decimal-points-in-python/
Introduction
In Python, we often deal with numbers that have a fractional part, known as floating-point numbers. But what if we want to limit the number of decimal points in these numbers? This Byte w
Link: https://stackabuse.com/limiting-float-decimal-points-in-python/
Introduction
In Python, we often deal with numbers that have a fractional part, known as floating-point numbers. But what if we want to limit the number of decimal points in these numbers? This Byte w
Robin Wilson: How to get GeoParquet support in GDAL/OGR from conda-forge
Link: https://blog.rtwilson.com/how-to-get-geoparquet-support-in-gdal-ogr-from-conda-forge/
Just a quick one this time…
GeoParquet is a cool new-ish format for geospatial data. I’ve tried to use it a couple of times, but always run into issues with my GDAL/OGR install not supporting it. Each
Link: https://blog.rtwilson.com/how-to-get-geoparquet-support-in-gdal-ogr-from-conda-forge/
Just a quick one this time…
GeoParquet is a cool new-ish format for geospatial data. I’ve tried to use it a couple of times, but always run into issues with my GDAL/OGR install not supporting it. Each
Stack Abuse: Remove Elements from a List Python by Index
Link: https://stackabuse.com/remove-elements-from-a-list-python-by-index/
Introduction
In this Byte we'll be exploring how to remove an element from a list by its index. Whether you're experienced or a novice, you probably find yourself having to do this quite frequently. I
Link: https://stackabuse.com/remove-elements-from-a-list-python-by-index/
Introduction
In this Byte we'll be exploring how to remove an element from a list by its index. Whether you're experienced or a novice, you probably find yourself having to do this quite frequently. I