PythonHub
2.42K subscribers
2.35K photos
49.1K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
Introduction to Django Rest Framework

In this tutorial series you are going to learn the basics about DRF: how to start a project, handle authentication, work with ViewSets and serializers.

https://www.youtube.com/playlist?list=PLLxk3TkuAYnrO32ABtQyw2hLRWt1BUrhj
Guide to Reinforcement Learning with Python and TensorFlow

In this article, we present complete guide to reinforcemen learning and one type of it Q-Learning (which with the help of deep learning become Deep Q-Learning). We learn about the inspiration behind this type of learning and implement it with Python, TensorFlow and TensorFlow Agents.

https://rubikscode.net/2021/07/13/deep-q-learning-with-python-and-tensorflow-2-0/
Let's write a Toy Emulator in Python

In this tutorial we will be creating an emulator in python that can run programs such as printing Fibonacci series or Triangular numbers.

https://threadexception.github.io/posts/let%27s-write-a-toy-emulator-in-python.html
Changing choices to a ForeignKey using Django migrations

One common requirement I’ve seen in projects is that a model will start with a
choices ...

https://spapas.github.io/2021/07/15/django-choices-to-fk-using-migrations/