Mike Driscoll: Creating a Tic-Tac-Toe Game with Python and PySimpleGUI (Video)
In this tutorial, you will learn how to create a Tic-Tac-Toe game using PySimpleGUI and Python.Download the CodePyTips Code Repo on GitHubThe post Creating a Tic-Tac-Toe Game with Python and...
View ArticlePyCoder’s Weekly: Issue #535 (July 26, 2022)
#535 – JULY 26, 2022View in Browser »Build a Flashcards App With Django Create your own flashcards app to help you to learn a new language. In this step-by-step project, you’ll replicate a spaced...
View Article"Morphex's Blogologue": A simple TCP Proxy
So as I was working on the SMPS, simple message passing system, I looked at ways of protecting it on the public net.Port knocking was one thing I looked at, and although it looked fine, I thought this...
View ArticlePython for Beginners: Suppress Exceptions in Python
In python, we normally use try-except blocks to handle exceptions in python. What if we don’t want to handle the exceptions? What if we just want to ignore the exceptions? In this article, we will...
View ArticleReal Python: Primer on Jinja Templating
Templates are an essential ingredient in full-stack web development. With Jinja, you can build rich templates that power the front end of your Python web applications.But you don’t need to use a web...
View ArticlePyCharm: PyCharm 2022.2: Support for Python 3.11, Improved HTTP Client, and...
Working with new and rapidly evolving technologies can be challenging as you often find yourself reading documentation and getting used to new syntax, APIs, and protocols. PyCharm 2022.2 will help you...
View ArticleMike Driscoll: How to Send an Email with Python (Video)
Learn how to Send Email (with attachments!) with Python Want to learn more? Check out my Python 101 book:Leanpub (eBooks)Amazon (paperback)Or check out my other books and learn how to create Excel...
View ArticleWingware: Wing Python IDE Version 8.3.3 - July 28, 2022
Wing 8.3.3 improves display of bytes values in the Stack Data tool, fixes several remote development issues, correctly reports exceptions while loading Django test files, runs Python with the correct...
View ArticleHynek Schlawack: Recursive Optional Dependencies in Python
One of my (slowly evaporating) reasons why I like putting packaging metadata into an executable setup.py is the ability to have optional dependencies that are combinations of others. As of pip 21.2,...
View ArticlePyBites: Documentation-driven development with Sebastián Ramirez
Listen here:This week Bob and Pybites Coach, Robin Beer, interview Sebastián Ramirez, the creator of FastAPI, Typer and SQLModel.We talk about:– What he is currently working on.– How to balance the...
View ArticlePyPy: Düsseldorf HPy/PyPy/GraalPy sprint September 19-23rd 2022
The programming language group of the Computer Science department of Heinrich-Heine Universität Düsseldorf is happy to invite everybody to another sprint in Düsseldorf, from the 19th to the 23rd of...
View ArticleReal Python: The Real Python Podcast – Episode #119: Natural Language...
How do you process and classify text documents in Python? What are the fundamental techniques and building blocks for Natural Language Processing (NLP)? This week on the show, Jodie Burchell, developer...
View ArticlePython for Beginners: Append List to CSV File in Python
Lists are one of the most frequently used data structures in python. In this article, we will discuss how we can append a list to a CSV file in python.Append List to CSV File in Python Using...
View ArticleLow Kian Seong: Ruminating on ordered delivery
A new outlook now in a much more supportive environment, got much more time to think the magic of getting a group of people to perform and deliver on planned goals. In short, life just got real and my...
View ArticleTalk Python to Me: #375: Python Language Summit 2022
Every year, the Python core developers and a few other key players in the Python ecosystem meet to discuss the pressing issues and important advancements at an event called the Python Language Summit....
View ArticleIslandT: How to just update a certain objects on the Pygame screen?
I have been playing with Pygame again recently because I have again decided to create a few games with this python Framework and then sell them to make some money on the online gaming store as part of...
View ArticleZero to Mastery: Python Monthly Newsletter 💻🐍
32nd issue of the Python Monthly Newsletter! Read by 25,000+ Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry...
View ArticleIslandT: Draw something on the screen with Pygame!
It is day two of my Pygame journey and in this python article, I am going to draw something on the Pygame display screen ranging from a simple line to a polygon! So far so good for my learning journey...
View ArticleItsMyCode: ModuleNotFoundError: No module named ‘pytz’
In Python, ModuleNotFoundError: No module named ‘pytz’ error occurs if we try to import the ‘pytz‘ module without installing the package or if you have not installed it in the correct environment.In...
View Article