#Django

[ follow ]
#django

PyCoder's Weekly | Issue #620

Learn about setting up a CI/CD pipeline with Github Actions for Python projects
Understand how to integrate Celery and Django using Redis as a message broker

PyCoder's Weekly | Issue #616

Developing and maintaining a Python monorepo with Sentry
Interview with Lukasz Langa about Python formatters and more

PyCoder's Weekly | Issue #625

Discover the power of Pydantic for data validation in Python.

Paolo Melchiorre - My Django roadmap ideas

New DSF board member Thibaud Colas has proposed a Django roadmap workshop.
The proposed ideas for improving Django include organizing active developer sprints, simplifying the English used in the documentation, and adding a quick start section.

Enforcing conventions in Django projects with introspection

Introspection in Python involves tools like isinstance(), type(), hasattr(), and more advanced techniques like the inspect module and metaprogramming dunder methods.
Django allows for introspection using standard Python techniques along with formally documented functions and methods for inspecting Django apps and models.

PyCoder's Weekly | Issue #649

Python 3.13 introduces exciting new features while facing potential release delays.
Pdb is a critical tool for effective Python debugging.
Django provides a wealth of project ideas for developers to enhance their skills.

PyCoder's Weekly | Issue #620

Learn about setting up a CI/CD pipeline with Github Actions for Python projects
Understand how to integrate Celery and Django using Redis as a message broker

PyCoder's Weekly | Issue #616

Developing and maintaining a Python monorepo with Sentry
Interview with Lukasz Langa about Python formatters and more

PyCoder's Weekly | Issue #625

Discover the power of Pydantic for data validation in Python.

Paolo Melchiorre - My Django roadmap ideas

New DSF board member Thibaud Colas has proposed a Django roadmap workshop.
The proposed ideas for improving Django include organizing active developer sprints, simplifying the English used in the documentation, and adding a quick start section.

Enforcing conventions in Django projects with introspection

Introspection in Python involves tools like isinstance(), type(), hasattr(), and more advanced techniques like the inspect module and metaprogramming dunder methods.
Django allows for introspection using standard Python techniques along with formally documented functions and methods for inspecting Django apps and models.

PyCoder's Weekly | Issue #649

Python 3.13 introduces exciting new features while facing potential release delays.
Pdb is a critical tool for effective Python debugging.
Django provides a wealth of project ideas for developers to enhance their skills.
moredjango

Easy HTTP status codes in Python

The most useful test for a web application is a test that verifies a response with an HTTP status code of 200 OK.
HTTP status codes can be confusing and it's important to understand their meanings and distinctions.
[ Load more ]