PyBites: Learn by building, how we built our own collaboration tool in Django
Listen now:In this episode we tell the story about Pybites CMS, our new powertool we use to better streamline our business.We tell why we built it, how it was an opportunity for Julian to brush up his...
View ArticleMike Driscoll: How to do a Simple Cache with Python and functools (Video)
Learn how to use Python's amazing standard library to add caching to your functions. In this video tutorial, you will learn how to use functools.cache to add caching to a functionIf you'd like to learn...
View ArticleReal Python: The Real Python Podcast – Episode #110: Advantages of Protobuf...
Would you like a way to send structured serialized data between different platforms and languages? What if the data was self-documenting, could automatically generate Python code, and would validate...
View ArticlePython for Beginners: Check For Sorted List in Python
Lists are one of the most used data structures in python. In this article, we will discuss different ways to check for sorted list in python.Table of ContentsHow to Check For a Sorted List in...
View ArticleTalk Python to Me: #366: Optimizing PostgreSQL DB Queries with pgMustard
Does your app have a database? Does that database play an important role in how the app operations and users perceive its quality? Most of you probably said yes to the first, and definitely to the...
View ArticleThe Python Coding Blog: How to Shuffle a Generator in Python…Without...
Can you shuffle a generator in Python without going through a list or other data type first? A quick Google search seems to say no, sort of. I suspect a more in-depth search might yield more results....
View ArticleItsMyCode: [Solved] TypeError: cannot unpack non-iterable NoneType object
The TypeError: cannot unpack non-iterable NoneType object occurs when we try to unpack the values from the method that does not return any value or if we try to assign the None value while unpacking...
View ArticleItsMyCode: [Solved] AttributeError: module ‘datetime’ has no attribute ‘utcnow’
The AttributeError: module ‘datetime’ has no attribute ‘utcnow’ occurs if you have imported the datetime module and directly if we are using the datetime.utcnow() method on the datetime module. The...
View ArticlePython Software Foundation: The 2022 Python Language Summit: Python without...
If you peruse the archives of language-summit blogs, you’ll find that one theme comes up againandagain: the dream of Python without the GIL. Continuing this venerable tradition, Sam Gross kicked off...
View Articlescikit-learn: Interview with Norbert Preining, scikit-learn Team Member
Author: Reshama Shaikh , Norbert PreiningNorbert Preining joined the scikit-learn Team in June 2021. In this interview, learn more about Norbert’s journey, immersion and passion in open source. His...
View ArticleDjango Weblog: The Call for Proposals for DjangoCon US 2022 Is Now Open!
The DjangoCon 2022 organizers are excited to announce that the first in-person DjangoCon since 2019 is now open for talk submissions: call for proposals! The deadline for submissions is June 10th, 2022...
View ArticleMike Driscoll: PyDev of the Week: Brian Skinn
This week we welcome Brian Skinn (@btskinn) as our PyDev of the Week! Brian maintains the from python import logging RSS feed on Python news / personal blog. Brian is active in the Python community as...
View ArticlePyCharm: PyCharm 2022.2 EAP is open!
We’re announcing the next Early Access Program and we invite you to take part in testing and validating new features that are expected to be included in the PyCharm 2022.2 release. The first PyCharm...
View ArticlePython for Beginners: How To Save a Dictionary to File in Python
A python dictionary is used to store key-value mappings in a program. Sometimes, we might need to store the dictionary directly in a file. In this article, we will discuss how we can save a dictionary...
View ArticleReal Python: How to Publish an Open-Source Python Package to PyPI
Python is famous for coming with batteries included, and many sophisticated capabilities are available in the standard library. However, to unlock the full potential of the language, you should also...
View ArticleŁukasz Langa: Weekly Report, May 16 - 22
I need to return to those logs, it’s been a while since I made one. This one isn’t particularly exciting but puts me back on track!
View ArticlePyCon: PyCon US 2022 Recap and Recording Announcement
We would like to announce that the first group of PyCon US 2022 recordings, the Keynotes and Lightning Talks, are now available on our YouTube channel. Be sure to subscribe to our channel for...
View ArticlePodcast.__init__: Hunting Black Swans With Bees: Catching Up With The...
Russell Keith-Magee is an accomplished engineer and a fixture of the Python community. His work on the Beeware suite of projects is one of the most ambitious undertakings in the ecosystem and...
View ArticleReuven Lerner: Announcing PythonDAB: The course I’ve always wanted to teach
I spend each day teaching Python and data science to companies around the world. From “Python for non-programmers” to day-long advanced workshops, I earn my living by helping people to improve their...
View ArticlePyCharm: Webinar “The Functools Module” with Mike Driscoll
Are you ready to power up your Python skills? The Python programming language has more than 200 modules in its standard library. In this tutorial, you will learn about functools, a module that is...
View Article