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
Stack Abuse: Subtracting a Day from a Date in Python
Link: https://stackabuse.com/subtracting-a-day-from-a-date-in-python/
Introduction
Dates are one of the most difficult concepts in programming, largely because of the many different formats that a date can be represented as and the many different nuances of dates (leap
Link: https://stackabuse.com/subtracting-a-day-from-a-date-in-python/
Introduction
Dates are one of the most difficult concepts in programming, largely because of the many different formats that a date can be represented as and the many different nuances of dates (leap
Stack Abuse: Difference Between del, remove, and pop in Python Lists
Link: https://stackabuse.com/difference-between-del-remove-and-pop-in-python-lists/
Introduction
When working with lists in Python, you may often find the need to remove or modify elements. And, lucky for us, Python provides a couple methods to do just this, including del, remove, an
Link: https://stackabuse.com/difference-between-del-remove-and-pop-in-python-lists/
Introduction
When working with lists in Python, you may often find the need to remove or modify elements. And, lucky for us, Python provides a couple methods to do just this, including del, remove, an
PyBites: 10 Tips to Make Your Developer Resume Stand Out
Link: https://pybit.es/articles/10-tips-to-make-your-developer-resume-stand-out/
At Pybites we support our pythonistas with expert CV guidance to make their job applications stand out in a tight talent market
Here are some essential ingredients that make a great resume:
1. Clear
Link: https://pybit.es/articles/10-tips-to-make-your-developer-resume-stand-out/
At Pybites we support our pythonistas with expert CV guidance to make their job applications stand out in a tight talent market
Here are some essential ingredients that make a great resume:
1. Clear
Pybites
10 Tips To Make Your Developer Resume Stand Out - Pybites
Here are some essential ingredients that make a great resume:
Django Weblog: Django security releases issued: 4.2.5, 4.1.11, and 3.2.21
Link: https://www.djangoproject.com/weblog/2023/sep/04/security-releases/
In accordance with our security release policy, the Django team
is issuing
Django 4.2.5,
Django 4.1.11, and
Django 3.2.21.
These releases addresses the security issue detailed below. We encourage all
Link: https://www.djangoproject.com/weblog/2023/sep/04/security-releases/
In accordance with our security release policy, the Django team
is issuing
Django 4.2.5,
Django 4.1.11, and
Django 3.2.21.
These releases addresses the security issue detailed below. We encourage all
Django Project
Django security releases issued: 4.2.5, 4.1.11, and 3.2.21
Posted by Mariusz Felisiak on September 4, 2023
Mike Driscoll: PyDev of the Week: Franek Magiera
Link: https://www.blog.pythonlibrary.org/2023/09/04/pydev-of-the-week-franek-magiera/
This week we welcome Franek Magiera as our PyDev of the Week! Franek is a core developer of the Python programming language.
If you’d like to see what else Franek has been working on, you can check ou
Link: https://www.blog.pythonlibrary.org/2023/09/04/pydev-of-the-week-franek-magiera/
This week we welcome Franek Magiera as our PyDev of the Week! Franek is a core developer of the Python programming language.
If you’d like to see what else Franek has been working on, you can check ou
Mouse Vs Python
PyDev of the Week: Franek Magiera - Mouse Vs Python
This week we welcome Franek Magiera as our PyDev of the Week! Franek is a core developer of the Python programming language. If you'd like to see what
Real Python: Python News: What's New From August 2023
Link: https://realpython.com/python-news-august-2023/
In August 2023, Python 3.12.0rc1 came out! With several exciting features, improvements, and optimizations, this release is only two steps away from the final release scheduled for October. If you wan
Link: https://realpython.com/python-news-august-2023/
In August 2023, Python 3.12.0rc1 came out! With several exciting features, improvements, and optimizations, this release is only two steps away from the final release scheduled for October. If you wan
Realpython
Python News: What's New From August 2023 – Real Python
In August 2023, Python 3.12.0rc1 was released. Microsoft announced Python in Excel. The Python Software Foundation published its Annual Impact Report for 2023, and the Python ecosystem released new versions of several important projects, such as Django, Pydantic…
Python Morsels: What is recursion?
Link: https://www.pythonmorsels.com/what-is-recursion/
Recursion is when a function calls itself. Loops are usually preferable to recursion, but recursion is excellent for traversing tree-like structures.
Table of contents
Recursive functions call the
Link: https://www.pythonmorsels.com/what-is-recursion/
Recursion is when a function calls itself. Loops are usually preferable to recursion, but recursion is excellent for traversing tree-like structures.
Table of contents
Recursive functions call the
Pythonmorsels
What is recursion?
Recursion is when a function calls itself. Loops are usually preferable to recursion, but recursion is excellent for traversing tree-like structures.
Stack Abuse: Guide to Profiling Python Scripts
Link: https://stackabuse.com/guide-to-profiling-python-scripts/
Introduction
Even with a "simple" language like Python, it's not immune to performance issues. As your codebase grows, you may start to notice that certain parts of your code are running slower than e
Link: https://stackabuse.com/guide-to-profiling-python-scripts/
Introduction
Even with a "simple" language like Python, it's not immune to performance issues. As your codebase grows, you may start to notice that certain parts of your code are running slower than e
Stack Abuse
Guide to Profiling Python Scripts
Even with a "simple" language like Python, it's not immune to performance issues. As your codebase grows, you may start to notice that certain parts...
Brian Okken: pytest Course - Ch4 Builtin Fixtures is up
Link: https://pythontest.com/posts/2023/2023-pytest-course-ch4-builtin-fixtures/
“Chapter 4, Builtin Fixtures” is now available in the pytest course.
This chapter covers:
tmp_path and tmp_path_factory for temporary files and directories. capsys for testing stdout and stderr. monk
Link: https://pythontest.com/posts/2023/2023-pytest-course-ch4-builtin-fixtures/
“Chapter 4, Builtin Fixtures” is now available in the pytest course.
This chapter covers:
tmp_path and tmp_path_factory for temporary files and directories. capsys for testing stdout and stderr. monk
Pythontest
pytest Course - Ch4 Builtin Fixtures is up
“Chapter 4, Builtin Fixtures” is now available in the pytest course.
This chapter covers:
tmp_path and tmp_path_factory for temporary files and directories. capsys for testing stdout and stderr. monkeypatch as a lightweight mock for patching the system under…
This chapter covers:
tmp_path and tmp_path_factory for temporary files and directories. capsys for testing stdout and stderr. monkeypatch as a lightweight mock for patching the system under…
Stack Abuse: Deleting DataFrame Rows Based on Column Value in Pandas
Link: https://stackabuse.com/deleting-dataframe-rows-based-on-column-value-in-pandas/
Introduction
Data processing is a common task in any data analysis codebase. And in Python, the Pandas library is one of the most popular tools for data analysis, which also provides high-performance,
Link: https://stackabuse.com/deleting-dataframe-rows-based-on-column-value-in-pandas/
Introduction
Data processing is a common task in any data analysis codebase. And in Python, the Pandas library is one of the most popular tools for data analysis, which also provides high-performance,
Real Python: Class Concepts: Object-Oriented Programming in Python
Link: https://realpython.com/courses/python-class-object/
Python includes mechanisms for doing object-oriented programming, where the
data and operations on that data are structured together. The class keyword
is how you create these structures in Python. At
Link: https://realpython.com/courses/python-class-object/
Python includes mechanisms for doing object-oriented programming, where the
data and operations on that data are structured together. The class keyword
is how you create these structures in Python. At
Realpython
Class Concepts: Object-Oriented Programming in Python – Real Python
Python uses object-oriented programming to group data and associated operations together into classes. In this video course, you'll learn how to write object-oriented code with classes, attributes, and methods.
Shannon -jj Behrens: Python: My Favorite Python Tricks for LeetCode Questions
Link: http://www.jjinux.com/2022/08/python-my-favorite-python-tricks-for.html
I've been spending a lot of time practicing on LeetCode recently, so I thought I'd share some of my favorite intermediate-level Python tricks. I'll also cover some newer features of Python you may not
Link: http://www.jjinux.com/2022/08/python-my-favorite-python-tricks-for.html
I've been spending a lot of time practicing on LeetCode recently, so I thought I'd share some of my favorite intermediate-level Python tricks. I'll also cover some newer features of Python you may not
Jjinux
Python: My Favorite Python Tricks for LeetCode Questions
I've been spending a lot of time practicing on LeetCode recently, so I thought I'd share some of my favorite intermediate-level Python trick...