PythonHub
2.44K subscribers
2.35K photos
49.3K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
Coding for Economists

The book aims to give you the skills you need to code for economics, while also giving you bits and pieces of information about programming more generally that might be useful to you.

https://aeturrell.github.io/coding-for-economists/intro.html
Django security releases issued: 4.1.2, 4.0.8, and 3.2.16

https://www.djangoproject.com/weblog/2022/oct/04/security-releases/
Control your Windows computer using Telegram

If you work in an office, you are probably told to always lock your computer before you go AFK as a measure of security. In my case, my colleagues will not hesitate to prank whoever forgets his screen unlocked as a punishment. I am a very caring person, so things like these should not happen to me. I must find a way to lock my screen from a distance and preferably via my smartphone.

https://ahmed-z.github.io/the-blog/Control-your-Windows-computer-using-Telegram
explainable-ai

This repository contains examples and best practices for building explainable AI systems, provided as Jupyter notebooks.

https://github.com/squaredev-io/explainable-ai
How I start every new Python backend API project

How to setup everything and focus only on the implementation of our lovely business logic

https://blog.szymonmiks.pl/p/how-i-start-every-new-python-backend-api-project/
Python 3.10.8

Python 3.10.8 is the newest major release of the Python programming language, and it contains many new features and optimizations.

https://www.python.org/downloads/release/python-3108/
daily-python-scripts

A repository of python scripts that come in handy in automating day-to-day tasks.

https://github.com/metafy-social/daily-python-scripts
Python Type Hints - Lambdas don’t support type hints, but that’s okay

Python has no syntax to add type hints to lambdas, but that doesn’t mean you can’t use them in type-checked code. In this post we’ll look at how Mypy can infer the types for lambdas, based on where they’re used.

https://adamj.eu/tech/2022/10/10/python-type-hints-lambda-incompatible/