PythonHub
2.44K subscribers
2.35K photos
49.2K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
Debugging Tips And Techniques

With this article, we will investigate problem solving techniques for Django apps. The goal is to equip you with tools to fix the real problems that you’ll hit when building your Django site.

https://www.mattlayman.com/understand-django/debugging-tips-techniques/
CircuitPython – The easiest way to program microcontrollers

https://circuitpython.org?v=2022
Python Asynchronous Programming Fundamentals

Python introduced asynchronous programming capabilities in version 3.4 in 2014, with further notable improvements in almost every minor version since. However, to many Python programmers, this area of the language remains esoteric, misunderstood, and underutilized. This article aims to elucidate the fundamental concepts of asynchronous programming as part of the first step towards mastery.

https://jwodder.github.io/kbits/posts/pyasync-fundam/
Peeking and backtracking Python generators

Python generators are mighty, but they lack a couple of useful features. One of them is peeking at the next item without consuming the generator. Even better, what if we could peek any number of items? Another feature lacking from generators is rewinding/backtracking. We will implement both of those features in a couple of different ways.

https://ricardoanderegg.com/posts/peeking-backtracking-python-generator/
Convolutional Neural Networks

Convolutional Neural Networks can be used to train computers to recognize objects in images. This allows us to recognize objects or people in images or video. It is helps automate the process of finding cancerous tumors. It is also used to implement driverless car technology and more.

https://www.youtube.com/watch?v=ad-Qc42Kbx8
Run Your Python App Anywhere With Dynamic Settings

Parameterize your application with a config file and read using ConfigParserContinue reading on ...

https://towardsdatascience.com/run-your-python-app-anywhere-with-dynamic-settings-aafd27e04b8e