Ignore All Web Performance Benchmarks, Including This One
https://blog.miguelgrinberg.com/post/ignore-all-web-performance-benchmarks-including-this-one
https://blog.miguelgrinberg.com/post/ignore-all-web-performance-benchmarks-including-this-one
Miguelgrinberg
Ignore All Web Performance Benchmarks, Including This One
A couple of months ago there was an article titled Async Python is Not Faster making the rounds on social media. In it, the author Cal Paterson made the point that contrary to popular belief,…
Building a Neural Network and Making Predictions With Python AI
https://realpython.com/courses/build-neural-network-python-ai/
https://realpython.com/courses/build-neural-network-python-ai/
Realpython
Building a Neural Network & Making Predictions With Python AI – Real Python
In this step-by-step course, you'll build a neural network from scratch as an introduction to the world of artificial intelligence (AI) in Python. You'll learn how to train your neural network and make accurate predictions based on a given dataset.
Django 4.0 Release Candidate 1 Released
https://www.djangoproject.com/weblog/2021/nov/22/django-40-rc1/
https://www.djangoproject.com/weblog/2021/nov/22/django-40-rc1/
CPython Dev In-Residence Weekly Report, November 15–21
https://lukasz.langa.pl/4f7c2091-2a74-48ab-99d7-8521c4fa8363/
https://lukasz.langa.pl/4f7c2091-2a74-48ab-99d7-8521c4fa8363/
lukasz.langa.pl
Weekly Report, November 15 - 21 - Łukasz Langa
Pretty typical week that started with a bang: an out of schedule release of Python 3.9 to fix a regression of argparse that turned out to be pretty disruptive for our users.
Building a Content Aggregator and Working With RSS in Python
https://realpython.com/podcasts/rpp/87/
https://realpython.com/podcasts/rpp/87/
Realpython
Episode #87: Building a Content Aggregator and Working With RSS in Python – The Real Python Podcast
Have you wanted to work with RSS feeds in Python? Maybe you're looking for a new project to build for your portfolio that uses Django, unit tests, and custom commands. This week on the show, we have Real Python author Ricky White to talk about his recent…
Combine Coverage for Different Python Versions
https://jugmac00.github.io/blog/combine-coverage-for-different-python-versions/
https://jugmac00.github.io/blog/combine-coverage-for-different-python-versions/
jugmac00.github.io
Combine Coverage for Different Python Versions
Is it enough to run code coverage for a single Python version?
Probably, but not necessarily.
Especially when you still need to support Python 2.7 (sigh), there could be quite some different code paths for Python 2 and Python 3.
A simple example…
try:…
Probably, but not necessarily.
Especially when you still need to support Python 2.7 (sigh), there could be quite some different code paths for Python 2 and Python 3.
A simple example…
try:…
Building Lists With Python’s .append()
https://realpython.com/courses/building-lists-with-python-append/
https://realpython.com/courses/building-lists-with-python-append/
Realpython
Building Lists With Python's .append() – Real Python
In this step-by-step course, you'll learn how Python's .append() works and how to use it for adding items to your list in place. You'll also learn how to code your own stacks and queues using .append() and .pop().