Real Python: Using Python's pathlib Module
Link: https://realpython.com/courses/pathlib-python/
Have you struggled with file path handling in Python? With the pathlib module, the struggle is now over! You no longer need to scratch your head over code like this:
>>>>>> path.rsplit('\\', maxsplit=
Link: https://realpython.com/courses/pathlib-python/
Have you struggled with file path handling in Python? With the pathlib module, the struggle is now over! You no longer need to scratch your head over code like this:
>>>>>> path.rsplit('\\', maxsplit=
Realpython
Using Python's pathlib Module – Real Python
In this video course, you'll learn how to effectively work with file system paths in Python 3 using the pathlib module in the standard library.
Talk Python to Me: #391: Pyscript powered by MicroPython
Link: https://talkpython.fm/episodes/show/391/pyscript-powered-by-micropython
No Python announcement of 2022 was met with more fanfare than pyscript. This project, announced at PyCon 2022, allows you to write Python files and run them in your browser in place of JavaScript or e
Link: https://talkpython.fm/episodes/show/391/pyscript-powered-by-micropython
No Python announcement of 2022 was met with more fanfare than pyscript. This project, announced at PyCon 2022, allows you to write Python files and run them in your browser in place of JavaScript or e
talkpython.fm
Pyscript powered by MicroPython
Talk Python to Me is a weekly podcast hosted by developer and entrepreneur Michael Kennedy. We dive deep into the popular packages and software developers, data scientists, and incredible hobbyists doing amazing things with Python. If you're new to Python…
PyCharm: The Second Release Candidate for PyCharm 2022.3 Is Out!
Link: https://blog.jetbrains.com/pycharm/2022/11/2022-3-rc-2/
PyCharm 2022.3 is just around the corner and the second Release Candidate is here!
You can download the new version from our website, update directly from the IDE or via the free Toolbox App, or use s
Link: https://blog.jetbrains.com/pycharm/2022/11/2022-3-rc-2/
PyCharm 2022.3 is just around the corner and the second Release Candidate is here!
You can download the new version from our website, update directly from the IDE or via the free Toolbox App, or use s
The JetBrains Blog
The Second Release Candidate for PyCharm 2022.3 Is Out! | The PyCharm Blog
PyCharm 2022.3 is just around the corner and the second Release Candidate is here!
You can download the new version from our website, update directly from the IDE or via the free Toolbox App, or us
You can download the new version from our website, update directly from the IDE or via the free Toolbox App, or us
PyCoder’s Weekly: Issue #553 (Nov. 29, 2022)
Link: https://pycoders.com/issues/553
#553 – NOVEMBER 29, 2022 View in Browser » Microsoft Power BI and Python: Two Superpowers Combined In this tutorial, you’ll learn how to install and configure Microsoft Power BI to work with Pyt
Link: https://pycoders.com/issues/553
#553 – NOVEMBER 29, 2022 View in Browser » Microsoft Power BI and Python: Two Superpowers Combined In this tutorial, you’ll learn how to install and configure Microsoft Power BI to work with Pyt
Pycoders
PyCoder’s Weekly | Issue #553
Issue #553 of the PyCoder’s Weekly newsletter, published Nov. 29, 2022.
Python Bytes: #312 AI Goes on Trial For Writing Code
Link: https://pythonbytes.fm/episodes/show/312/ai-goes-on-trial-for-writing-code
<a href='https://www.youtube.com/watch?v=BTVrhmcjy9c' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
<p>Sponsored by <a href="https://pythonbytes.fm/
Link: https://pythonbytes.fm/episodes/show/312/ai-goes-on-trial-for-writing-code
<a href='https://www.youtube.com/watch?v=BTVrhmcjy9c' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
<p>Sponsored by <a href="https://pythonbytes.fm/
pythonbytes.fm
AI Goes on Trial For Writing Code
News and announcements from the Python community for the week of Nov 29th, 2022
John Ludhi/nbshare.io: Pandas Read and Write Excel File
Link: https://www.nbshare.io/notebook/894032303/Pandas-Read-and-Write-Excel-File/
Pandas Read and Write Excel File
Make sure you have openpyxl package installed. Otherwise you will get following error ...
ModuleNotFoundError: No module named 'openpyxl'
Ins
Link: https://www.nbshare.io/notebook/894032303/Pandas-Read-and-Write-Excel-File/
Pandas Read and Write Excel File
Make sure you have openpyxl package installed. Otherwise you will get following error ...
ModuleNotFoundError: No module named 'openpyxl'
Ins
Python for Beginners: Drop Elements From a Series in Python
Link: https://www.pythonforbeginners.com/basics/drop-elements-from-a-series-in-python
Pandas series is very useful for handling data having ordered key-value pairs. In this article, we will discuss different ways to drop elements from a pandas series.
Table of ContentsDrop Elements Fro
Link: https://www.pythonforbeginners.com/basics/drop-elements-from-a-series-in-python
Pandas series is very useful for handling data having ordered key-value pairs. In this article, we will discuss different ways to drop elements from a pandas series.
Table of ContentsDrop Elements Fro
PythonForBeginners.com
Drop Elements From a Series in Python - PythonForBeginners.com
Drop Elements From a Series in Python will help you improve your python skills with easy to follow examples and tutorials.
Real Python: Advent of Code: Solving Your Puzzles With Python
Link: https://realpython.com/python-advent-of-code/
Advent of Code is an online Advent calendar where you’ll find new programming puzzles offered each day from December 1 to 25. While you can solve the puzzles at any time, the excitement when new puzzl
Link: https://realpython.com/python-advent-of-code/
Advent of Code is an online Advent calendar where you’ll find new programming puzzles offered each day from December 1 to 25. While you can solve the puzzles at any time, the excitement when new puzzl
Realpython
Advent of Code: Solving Your Puzzles With Python – Real Python
Advent of Code is an online advent calendar that shares new programming puzzles each day from December 1 to the 25. In this tutorial, you'll learn why solving programming puzzles can be beneficial and how you can get started with Advent of Code using Python.
Everyday Superpowers: Refactor Refactoring for more satisfaction
Link: https://everydaysuperpowers.dev/articles/refactor-refactoring-for-more-satisfaction/
This is a blogified version of my 18-minute PyJamas talk, Refactor refactoring—How changing your views on refactoring can make your job more satisfying.You can watch it here:Read more...
Link: https://everydaysuperpowers.dev/articles/refactor-refactoring-for-more-satisfaction/
This is a blogified version of my 18-minute PyJamas talk, Refactor refactoring—How changing your views on refactoring can make your job more satisfying.You can watch it here:Read more...
The Python Coding Blog: Argh! What are args and kwargs in Python? [Intermediate Python Functions Series #4]
Link: https://thepythoncodingbook.com/2022/11/30/what-are-args-and-kwargs-in-python/
In the first three articles in this Series, you familiarised yourself with the key terms when dealing with functions. You also explored positional and keyword arguments and optional arguments with def
Link: https://thepythoncodingbook.com/2022/11/30/what-are-args-and-kwargs-in-python/
In the first three articles in this Series, you familiarised yourself with the key terms when dealing with functions. You also explored positional and keyword arguments and optional arguments with def
The Python Coding Book
Argh! What are args and kwargs in Python?
Understanding args and kwargs in Python functions: using any number of optional positional and keyword arguments
Spyder IDE: Improvements to the Spyder IDE installation experience
Link: https://www.spyder-ide.org/blog/installer-improvements/
Juan Sebastian Bautista, C.A.M. Gerlach and Carlos Cordoba also contributed to this post.
Spyder 5.4.0 was released recently, featuring some major enhancements to its Windows and macOS standalone inst
Link: https://www.spyder-ide.org/blog/installer-improvements/
Juan Sebastian Bautista, C.A.M. Gerlach and Carlos Cordoba also contributed to this post.
Spyder 5.4.0 was released recently, featuring some major enhancements to its Windows and macOS standalone inst
www.spyder-ide.org
Blog | Improvements to the Spyder IDE installation experience — Spyder IDE
Website for Spyder, the Scientific Python Development Environment
STX Next: 10 Best Python Books
Link: https://www.stxnext.com/blog/best-python-books/
Python is an incredibly powerful programming language. Due to its versatile nature and simplicity, it continues to capture the interest of developers, those new and experienced alike.
Link: https://www.stxnext.com/blog/best-python-books/
Python is an incredibly powerful programming language. Due to its versatile nature and simplicity, it continues to capture the interest of developers, those new and experienced alike.
Stxnext
10 Best Python Books to Learn in 2025
Looking for the best Python book recommendation? Read our article and discover top Python books for beginners and advanced programmers.
STX Next: What Is Django and What Is Django Used for?
Link: https://www.stxnext.com/blog/what-is-django/
If you love building software with Python and are looking to enter the field of web development, Django might be the tool that will help you realize your goals. One of the most popular Python fra
Link: https://www.stxnext.com/blog/what-is-django/
If you love building software with Python and are looking to enter the field of web development, Django might be the tool that will help you realize your goals. One of the most popular Python fra
Stxnext
What Is Django and What Is It Used For? [2025]
What is Django? Learn about this top Python framework for 2025 – its features, applications, and what kind of web projects it's used for.
Tryton News: Newsletter December 2022
Link: https://discuss.tryton.org/t/newsletter-december-2022/5698
After the release 6.6, the support for the series 6.2 has ended and we are already back at work and those improvements have already landed:
Changes for the User
We now display the general ledger in
Link: https://discuss.tryton.org/t/newsletter-december-2022/5698
After the release 6.6, the support for the series 6.2 has ended and we are already back at work and those improvements have already landed:
Changes for the User
We now display the general ledger in
Tryton Discussion
Newsletter December 2022
After the release 6.6, the support for the series 6.2 has ended and we are already back at work and those improvements have already landed: Changes for the User We now display the general ledger information like debit, credit and balance on the account form.…
Sebastian Witowski: dict() vs. {}
Link: https://switowski.com/blog/dict-function-vs-literal-syntax/
There are two different ways to create a dictionary. You can call the dict() function or use the literal syntax: {}. And in many cases, these are equivalent choices, so you might give it little though
Link: https://switowski.com/blog/dict-function-vs-literal-syntax/
There are two different ways to create a dictionary. You can call the dict() function or use the literal syntax: {}. And in many cases, these are equivalent choices, so you might give it little though
Sebastian Witowski
dict() vs. {}
Is using {} faster than dict()? If yes, then why? And when would you use one version over the other?
Python Circle: Using git hooks to boost your productivity
Link: https://pythoncircle.com/post/769/using-git-hooks-to-boost-your-productivity/
Writing a proper git message is a good coding practice. A good commit message should clearly convey what has been changed and why it has been changed. Sometimes developers use an improper message in a
Link: https://pythoncircle.com/post/769/using-git-hooks-to-boost-your-productivity/
Writing a proper git message is a good coding practice. A good commit message should clearly convey what has been changed and why it has been changed. Sometimes developers use an improper message in a
Python Circle
Using git hooks to boost your productivity
Writing a proper git message is a good coding practice. A good commit message should clearly convey what has been changed and why it has been changed. Sometimes developers use an improper message in a hurry to commit and push the changes. Here is a working…
PyCharm: PyCharm 2022.3 Is Out!
Link: https://blog.jetbrains.com/pycharm/2022/12/2022-3/
PyCharm 2022.3 brings an improved experience for working with asynchronous code in the Python Console – to call coroutines you can now use the await keyword outside of functions. The Python Packages t
Link: https://blog.jetbrains.com/pycharm/2022/12/2022-3/
PyCharm 2022.3 brings an improved experience for working with asynchronous code in the Python Console – to call coroutines you can now use the await keyword outside of functions. The Python Packages t
The JetBrains Blog
PyCharm 2022.3 Is Out! | The PyCharm Blog
PyCharm 2022.3 brings an improved experience for working with asynchronous code in the Python Console – to call coroutines you can now use the await keyword outside of functions. The Python Packages t
John Ludhi/nbshare.io: Understand Tensors With Numpy
Link: https://www.nbshare.io/notebook/408173118/Understand-Tensors-With-Numpy/
Understand Tensors With Numpy
In this notebook, I will explain tensors with Python Numpy. For numpy refresher please checkout following resource...
https://www.nbshare.io/notebook/692
Link: https://www.nbshare.io/notebook/408173118/Understand-Tensors-With-Numpy/
Understand Tensors With Numpy
In this notebook, I will explain tensors with Python Numpy. For numpy refresher please checkout following resource...
https://www.nbshare.io/notebook/692
Andrea Grandi: Ignoring hosts with python vcr when writing tests with pytest and generating cassettes
Link: https://www.andreagrandi.it/2022/12/02/ignore-hosts-with-python-vcr/
How to ignore hosts with python vcr when writing tests with pytest and generating cassettes
Link: https://www.andreagrandi.it/2022/12/02/ignore-hosts-with-python-vcr/
How to ignore hosts with python vcr when writing tests with pytest and generating cassettes
Andrea Grandi
Ignoring hosts with python vcr when writing tests with pytest and generating cassettes
How to ignore hosts with python vcr when writing tests with pytest and generating cassettes
Lucas Cimon: Animated one-page-dungeon : Escape of the Torment
Link: https://chezsoi.org/lucas/blog/animated-one-page-dungeon-escape-of-the-torment.html
Last week, while translating John Harper's micro-TTRPG World of Dungeons: Turbo Breakers, I discovered the wonderful world of one page dungeons,
starting with Michael Prescott splendid production at
Link: https://chezsoi.org/lucas/blog/animated-one-page-dungeon-escape-of-the-torment.html
Last week, while translating John Harper's micro-TTRPG World of Dungeons: Turbo Breakers, I discovered the wonderful world of one page dungeons,
starting with Michael Prescott splendid production at
Ludochaordic
Animated one-page-dungeon : escape of the torment
Last week, while translating John Harper's micro-TTRPG World of Dungeons: Turbo Breakers, I discovered the wonderful world of one page dungeons, starting with Michael Prescott splendid production at trilemma.com and also the yearly One Page Dungeon Context.…
Real Python: The Real Python Podcast – Episode #135: Preparing Data to Measure True Machine Learning Model Performance
Link: https://realpython.com/podcasts/rpp/135/
How do you prepare a dataset for machine learning (ML)? How do you go beyond cleaning the data and move toward measuring how the model performs? This week on the show, Jodie Burchell, developer advoca
Link: https://realpython.com/podcasts/rpp/135/
How do you prepare a dataset for machine learning (ML)? How do you go beyond cleaning the data and move toward measuring how the model performs? This week on the show, Jodie Burchell, developer advoca
Realpython
Episode #135: Preparing Data to Measure True Machine Learning Model Performance – The Real Python Podcast
How do you prepare a dataset for machine learning (ML)? How do you go beyond cleaning the data and move toward measuring how the model performs? This week on the show, Jodie Burchell, developer advocate for data science at JetBrains, returns to talk about…