Mike Driscoll: Python GUI Frameworks (Video)
In this tutorial, I talk about some of Python’s most popular GUI frameworks. You will learn the basics of graphical user interfaces. Then you will learn how to create a simple image viewer using...
View ArticleKushal Das: Get a TLS certificate for your onion service
For a long time, I wanted to have a certificate for the onion address of my blog. Digicert was the only CA who was providing those certificates with an Extended Validation. Those are costly and...
View ArticleCusy: New: Pattern Matching in Python 3.10
The originally object-oriented programming language Python is to receive a new feature in version 3.10, which is mainly known from functional languages: pattern matching. The change is controversial in...
View ArticlePyCharm: PyCharm and AWS Toolkit Tutorial
Cloud development with Python is a hot topic right now. Amazon recently started shipping their AWS Toolkit for PyCharm, and we already have a tutorial on it from Mukul Mantosh in the PyCharm Guide....
View ArticleStack Abuse: Seaborn Line Plot - Tutorial and Examples
IntroductionSeaborn is one of the most widely used data visualization libraries in Python, as an extension to Matplotlib. It offers a simple, intuitive, yet highly customizable API for data...
View ArticleReal Python: New Features: Article Bookmarks, Completion Status, and Search...
With close to 2,000 Python tutorials and video lessons in the Real Python content library, it was getting harder and harder for learners to find the right resources at the right time.To fix that, we’ve...
View ArticleMike Driscoll: Python Packaging Index Removes 3,653 Malicious Libraries
Once again the Python Packaging Index (PyPI) has been hit with malicious libraries. Over 3500 of them in fact. You can read more about this at The Register or the Sonatype Blog. The administrators at...
View ArticlePython Bytes: #223 Beware: A ninja is shadowing Sebastian from FastAPI
<p>Sponsored by Datadog: <a href="http://pythonbytes.fm/datadog"><strong>pythonbytes.fm/datadog</strong></a></p> <p>Special guest: <a...
View ArticleBen Cook: NumPy where: Understanding np.where()
The NumPy where function is like a vectorized switch that you can use to combine two arrays.
View ArticleTryton News: Foundation Budget for 2021
Jar filled with money labeled money640×560 120 KBThe Foundation has decided to publish a budget for 2021. This is an exercise in transparency so everyone can see our plans. Note that the income of the...
View ArticlePyBites: There is NO Competition, Stop Comparing Yourself to Others
The sure way to feel less fulfilled and increase imposter syndrome?Comparing yourself to others.Don't do it, just don't.There will always be better developers and it's a myth you have to be in the top...
View ArticlePython⇒Speed: The security scanner that cried wolf
If you run a security scanner on your Docker image, you might be in for a shock: often you’ll be warned of dozens of security vulnerabilities, even on the most up-to-date image. After the third or...
View ArticleMontreal Python User Group: Introduction to programming with Python
Have you always wanted to try out programming and find out if it’s for you?Come to our Introduction to Programming with Python workshop, taking place Saturday, March 13, at 1 PM Montreal time (13:00...
View ArticlePython Morsels: Inheriting one class from another
Watch firstNeed a bit more background? Or want to dive deeper?Watch other class-related screencasts.Transcript:How does class inheritance work in Python?Creating a class that inherits from another...
View ArticlePatrick Kennedy: Server-side Sessions in Flask with Redis
I wrote a blog post on TestDriven.io about how server-side sessions can be implemented in Flask with Flask-Session and Redis:https://testdriven.io/blog/flask-server-side-sessions/This blog post looks...
View ArticlePython Pool: The Insider’s Guide to A* Algorithm in Python
A* Algorithm in Python or in general is basically an artificial intelligence problem used for the pathfinding (from point A to point B) and the Graph traversals. This algorithm is flexible and can be...
View ArticlePython Pool: Python Shutil Module: 10 Methods You Should Know
Firstly, Python Shutil module in Python provides many functions to perform high-level operations on files and collections of files. Secondly, It is an inbuilt module that comes with the automation...
View ArticleReal Python: The Real Python Podcast – Episode #50: Consuming APIs With...
Have you wanted to get your Python code to consume data from web-based APIs? Maybe you've dabbled with the requests package, but you don't know what steps to take next. This week on the show, David...
View ArticleStack Abuse: Python: Check if Array/List Contains Element/Value
IntroductionIn this tutorial, we'll take a look at how to check if a list contains an element or value in Python. We'll use a list of strings, containing a few animals:animals = ['Dog', 'Cat', 'Bird',...
View ArticlePyBites: Don't Blame Yourself at Work
A workplace/career thought for you to consider today.There are times in your career when things are going to feel pretty miserable.You may feel underappreciated, feel that you're being micromanaged,...
View Article