Python Morsels: Overlooked facts about variables and objects in Python: it's...
In Python, variables and data structures don't contain objects. This fact is both commonly overlooked and tricky to internalize.You can happily use Python for years without really understanding the...
View ArticleTestDriven.io: Deploying a Django Application to Elastic Beanstalk
This tutorial shows how to deploy a Django Application to AWS Elastic Beanstalk.
View ArticleSTX Next: Python for Game Development: Should You Develop Games in Python?
Ever since a computer first arrived at my doorstep, video games have been my favorite medium. I instantly fell in love with this form of storytelling, playing the role of the protagonist and getting to...
View ArticleGuido van Rossum: Meeting Mike Burrows
In late 2005 I joined Google. The interviews took a surprising long time, which is a tale for another time. Today I want to tell a story that happened in one of my first weeks on campus.In the main...
View ArticleTest and Code: 181: Boost Your Django DX - Adam Johnson
We talk with Adam Johnson about his new book, "Boost Your Django DX". Developer experience includes tools and practices to make developers more effective and efficient, and just plain make software...
View ArticleTryton News: Newsletter March 2022
Here’s a sneak peak at the improvements that landed during the last month.Changes for the UserTo shipments we’ve added a field that calculates the total weight of the packages. It is now possible to...
View ArticleDjango Weblog: Django bugfix release: 4.0.3
Today we've issued the 4.0.3 bugfix release.The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used for this release is...
View ArticleS. Lott: Static Site Blues
I have a very large, static site with 10+ years of stuff about my boat. Most of it is pretty boring. http://www.itmaybeahack.com/TeamRedCruising/I started with iWeb. It was very -- well -- 2000-ish...
View ArticleReal Python: Exploring the Fibonacci Sequence With Python
The Fibonacci sequence is a pretty famous sequence of integer numbers. The sequence comes up naturally in many problems and has a nice recursive definition. Learning how to generate it is an essential...
View ArticleMike Driscoll: 5 Tips on Learning Python From Zero
I was recently contacted by https://www.developrec.net/ to create a video about Python. Here is the result: The post 5 Tips on Learning Python From Zero appeared first on Mouse Vs Python.
View ArticleItsMyCode: [Solved] Error: command errored out with exit status 1
If you are installing auto-py-to-exe package on Python 3.8 or below, you will get an error stating ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full...
View ArticlePyCoder’s Weekly: Issue #514 (March 1, 2022)
#514 – MARCH 1, 2022View in Browser »Python’s Assert: Debug and Test Your Code Like a Pro Learn how to use Python’s assert statement to document, debug, and test code in development.REAL PYTHONHow to...
View ArticleThe Python Coding Blog: What is coding? Beyond the obvious…
This week, instead of one of the tutorial-type articles I’ve been publishing recently, I’ll go back to basics with an article aimed at those who are new to coding or those who are interested to know...
View ArticlePython GUIs: Packaging PySide6 applications for Windows with PyInstaller...
There is not much fun in creating your own desktop applications if you can't share them with other people — whether than means publishing it commercially, sharing it online or just giving it to someone...
View ArticleReal Python: Manage Your To-Do Lists Using Python and Django
Have you ever struggled to keep track of the things that you need to do? Perhaps you’re in the habit of using a handwritten to-do list to remind you of what needs doing, and by when. But handwritten...
View ArticleAnarcat: procmail considered harmful
TL;DR: procmail is a security liability and has been abandoned upstream for the last two decades. If you are still using it, you should probably drop everything and at least remove its SUID flag. There...
View ArticleJustin Mayer: Python Development Environment on macOS Monterey and Big Sur
While installing Python and Virtualenv on macOS Monterey and Big Sur can be done several ways, this tutorial will guide you through the process of configuring a stock Mac system into a solid Python...
View ArticleAlex Grönholm: Unit testing SQLAlchemy apps
I help out a lot on the #sqlalchemy channel on Freenode IRC. When people ask questions there, one of the issues that comes up often is unit testing applications that use SQLAlchemy. Almost all...
View ArticleAlex Grönholm: concurrent.futures backport updated
It's been a while since I last updated the backport of the concurrent.futures package for Python versions older than 3.2. I was looking at my github repositories and noticed that I wasn't marked as...
View ArticleTryton News: Security Release for issue11219 and issue11244
SynopsisXML parsing vulnerabilities have been found by Jeremy Mousset in trytond and some modules. With issue11219 an authenticated user can make the server to parse a crafted XML SEPA file to access...
View Article