Real Python: The Real Python Podcast – Episode #59: Organizing and...
Are you interested in learning more about Django? Would you like to meet other professionals and learn how they are using Django? DjangoCon Europe 2021 is virtual this year, and you can join in from...
View ArticleStack Abuse: Python: Get Last Element in List
IntroductionIn this tutorial, we'll take a look at some of the most common ways to find the last element in a list in Python. First, we will cover the simplest and most Pythonic way and then show some...
View ArticlePython for Beginners: How to Best Use Try-Except in Python
Exception handling allows us to enforce constraints on variables to implement our business logic in the computer program and it also enables us to write a robust program which can handle different...
View ArticlePyCon: Building a multi-tenant content-based recommender with automated training
Problem Statement and BackgroundThe problem we are tackling here is assisting customer service agents in finding answers to customer problems accurately and fast.To answer customer questions, customer...
View ArticleSTX Next: Is Python a Good Choice for Finance?
Finance is a complex world, now more than ever. You’ve got blockchain, hundreds of cryptocurrencies, NFTs, easy trading with Robinhood and similar apps, and much more. It’s a crazy, complex world with...
View ArticleQuansight Labs Blog: Rethinking Jupyter Interactive Documentation
Jupyter Notebook first release was 8 years ago – under the IPython Notebook name at the time. Even if notebooks were not invented by Jupyter; they were definitely democratized by it. Being Web powered...
View ArticlePyBites: Fast Emoji Lookup from the Command Line
Today I wanted to share a little app I built the other day to search emojis from the command line.This surely can be done via the OS (and Slack is the absolute winner for their emoji autocomplete!),...
View ArticleTalk Python to Me: #315 Awesome FastAPI extensions and add ons
Have you heard that FastAPI is awesome? We have Michael Herman back on the show to help us make it even more awesome with his FastAPI awesome list. He's categorized many extensions and other libraries...
View ArticlePython Pool: 9 Ways To Convert Dictionary to List in Python
Python has different types of data structures to manage your data efficiently. Lists are simple sequential data, whereas a dictionary is a key-value pair data. Both of them have unique usability and is...
View ArticleWeekly Python StackOverflow Report: (cclxxiv) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-05-08 17:36:50 GMTConfusing Speaker labels timestamps from Watson...
View ArticleBreadcrumbsCollector: GRASP Controller pattern in Python
Welcome to the first post from the GRASP series. GRASP stands for General Responsibility Assignment Software Principles. It is a great aid for Object-Oriented Design (but not really exclusive for...
View Article"Morphex's Blogologue": An IMAP migration script
So, last December I got an email from the email hosting provider for Nidelven IT that the email server would be taken down in 6 months time.I didn't like the timing, as I was in court process, the...
View ArticleTerry Jones: Simpler Twisted deferred code via decorated callbacks
This morning I was thinking about Twisteddeferreds and how people find them difficult to grasp, but how they’re conceptually simple once you get it. I guess most of us tell people a deferred is...
View ArticleAI Pool: Random Forests Understanding
Intuition and Implementation on a key algorithm to reduce overfitting in tree based algorithms
View ArticleMike Driscoll: PyDev of the Week: Parker Allen
This week we welcome Parker Allen as our PyDev of the Week! Parker works at Bentobox a restaurant software company that uses Python on its backend.Let’s spend some time getting to know Parker!Can you...
View ArticleZato Blog: Resilient REST APIs with SSL/TLS client certificates
This Zato how-to is about ensuring that only API clients with valid SSL/TLS certificates, including expected certificate fingerprints or other metadata, can invoke selected REST endpoints. In this way,...
View ArticleCodementor: How To Handle Dropdowns In Selenium WebDriver Using Python?
While dealing with access forms, you'd often have to handle dropdown. Here's how you can handle them with Selenium WebDriver in Selenium using the 'Select' class.
View ArticleEuroPython: EuroPython 2021: Call for Proposals (CFP) extended until May 16
We've decided to extend the deadline for our Call for Proposals until Sunday, May 16, 23:59:59 CEST. We are still looking for a few more proposals, especially for posters, training sessions, and...
View ArticleStack Abuse: Working with Python's PyQT Framework
IntroductionIn this guide, we'll take a look at how to use Python's PyQT framework to develop a Graphical User Interface (GUI) for a desktop application in Python.Popular Python alternatives for...
View ArticleReal Python: Recursion in Python: An Introduction
If you’re familiar with functions in Python, then you know that it’s quite common for one function to call another. In Python, it’s also possible for a function to call itself! A function that calls...
View Article