Must Use Python Libraries (Part 1)
Tkinter
Tkinter is a Python module that provides a simple and effective way to create graphical user interfaces (GUIs). It offers a wide range of GUI components and tools for building desktop applications, making it a popular choice for Python devel...
Read: https://bigsmoke.hashnode.dev/must-use-python-libraries-part-1
Tkinter
Tkinter is a Python module that provides a simple and effective way to create graphical user interfaces (GUIs). It offers a wide range of GUI components and tools for building desktop applications, making it a popular choice for Python devel...
Read: https://bigsmoke.hashnode.dev/must-use-python-libraries-part-1
How to set up a cloned Django project
## This article is easy to follow even if you don't have experience working with Django or Git
When working on a Django project with git, developers will likely want git to ignore some files and folders. The `env/` folder in your Django project is o...
Read: https://harunadev.hashnode.dev/how-to-set-up-a-cloned-django-project
## This article is easy to follow even if you don't have experience working with Django or Git
When working on a Django project with git, developers will likely want git to ignore some files and folders. The `env/` folder in your Django project is o...
Read: https://harunadev.hashnode.dev/how-to-set-up-a-cloned-django-project
Understanding Kubernetes Services: Deploying a Django Todo Web App Step-by-Step
📍Introduction
Welcome to my Kubernetes blog series, where I share my Kubernetes learnings and try to deep dive into topics. In this blog, we will explore the K8s service in detail and understand the difference between them by doing a hands-on projec...
Read: https://varunmargam.hashnode.dev/understanding-kubernetes-services-deploying-a-django-todo-web-app-step-by-step
📍Introduction
Welcome to my Kubernetes blog series, where I share my Kubernetes learnings and try to deep dive into topics. In this blog, we will explore the K8s service in detail and understand the difference between them by doing a hands-on projec...
Read: https://varunmargam.hashnode.dev/understanding-kubernetes-services-deploying-a-django-todo-web-app-step-by-step
Validating recursive JSONs using JSONSchema in Python
Hey there!
Recently, while working on a Django app, I implemented validation for a recursive data model that would periodically be synced between the frontend and the backend through an API. It wasn't particularly easy to find a solution online, so I...
Read: https://chopin.hashnode.dev/validating-recursive-jsons-using-jsonschema-in-python
Hey there!
Recently, while working on a Django app, I implemented validation for a recursive data model that would periodically be synced between the frontend and the backend through an API. It wasn't particularly easy to find a solution online, so I...
Read: https://chopin.hashnode.dev/validating-recursive-jsons-using-jsonschema-in-python
Validating recursive JSONs using JSON Schema in Python
Hey there!
Recently, while working on a Django app, I implemented validation for a recursive data model that would periodically be synced between the frontend and the backend through an API. It wasn't particularly easy to find a solution online, so I...
Read: https://chopin.hashnode.dev/validating-recursive-jsons-using-json-schema-in-python
Hey there!
Recently, while working on a Django app, I implemented validation for a recursive data model that would periodically be synced between the frontend and the backend through an API. It wasn't particularly easy to find a solution online, so I...
Read: https://chopin.hashnode.dev/validating-recursive-jsons-using-json-schema-in-python
👍1
Part 3: Building a self-help web app using Django
Hey there!
Oh, boy. A lot happened since Part 2. I changed a lot of what I had implemented earlier and built quite a bit on top of that. I'll try to break them into manageable chunks. In the previous post, I said I'd work on implementing the views ne...
Read: https://chopin.hashnode.dev/part-3-building-a-self-help-web-app-using-django
Hey there!
Oh, boy. A lot happened since Part 2. I changed a lot of what I had implemented earlier and built quite a bit on top of that. I'll try to break them into manageable chunks. In the previous post, I said I'd work on implementing the views ne...
Read: https://chopin.hashnode.dev/part-3-building-a-self-help-web-app-using-django
👍1
Up and Running with Django, the crazy way! -- Part 1
Currently, I get geeks to work on and my clients get amused by my performance as a developer and that's what matters to the client, getting things done, no matter how.
So usually, we talk about a project let's say at 8:am, I give them a dashboard to ...
Read: https://jetezra.hashnode.dev/up-and-running-with-django-the-crazy-way-part-1
Currently, I get geeks to work on and my clients get amused by my performance as a developer and that's what matters to the client, getting things done, no matter how.
So usually, we talk about a project let's say at 8:am, I give them a dashboard to ...
Read: https://jetezra.hashnode.dev/up-and-running-with-django-the-crazy-way-part-1
👍2
Exploring SSE and PostgreSQL for Real-time Communication in Django
TL;DR: In this article, I explore how we built a relay system to serve real-time notifications to our Django project using Server-Sent Events (SSE) and PostgreSQL LISTEN/NOTIFY. Check out the final project on GitHub here. 🚀
Recently, at my workpla...
Read: https://tobidegnon.hashnode.dev/exploring-sse-and-postgresql-for-real-time-communication-in-django
TL;DR: In this article, I explore how we built a relay system to serve real-time notifications to our Django project using Server-Sent Events (SSE) and PostgreSQL LISTEN/NOTIFY. Check out the final project on GitHub here. 🚀
Recently, at my workpla...
Read: https://tobidegnon.hashnode.dev/exploring-sse-and-postgresql-for-real-time-communication-in-django
Django User Registration with Google
OAuth, short for Open Authorization, is a mechanism that enables websites or applications to exchange user data with other platforms, all without necessitating the disclosure of a user’s password. It empowers users to access multiple websites with a ...
Read: https://kellykiiru.hashnode.dev/django-user-registration-with-google
OAuth, short for Open Authorization, is a mechanism that enables websites or applications to exchange user data with other platforms, all without necessitating the disclosure of a user’s password. It empowers users to access multiple websites with a ...
Read: https://kellykiiru.hashnode.dev/django-user-registration-with-google
Unleash the Power of Django Manager Methods: A Comprehensive Guide
Have you ever found yourself buried under complex database queries in your Django project? Or perhaps you're struggling to keep your code organized and maintainable? Django manager methods could be the solution you've been looking for. In this guide,...
Read: https://blog.congineal.com/unleash-the-power-of-django-manager-methods-a-comprehensive-guide
Have you ever found yourself buried under complex database queries in your Django project? Or perhaps you're struggling to keep your code organized and maintainable? Django manager methods could be the solution you've been looking for. In this guide,...
Read: https://blog.congineal.com/unleash-the-power-of-django-manager-methods-a-comprehensive-guide
👍2
Unlocking the Power of Django's Asynchronous Support
In the ever-evolving landscape of web development, responsiveness and scalability are paramount. In the realm of Django, these qualities have been given a significant boost with the introduction of asynchronous (async) support, starting from Django 3...
Read: https://coderj001.hashnode.dev/unlocking-the-power-of-djangos-asynchronous-support
In the ever-evolving landscape of web development, responsiveness and scalability are paramount. In the realm of Django, these qualities have been given a significant boost with the introduction of asynchronous (async) support, starting from Django 3...
Read: https://coderj001.hashnode.dev/unlocking-the-power-of-djangos-asynchronous-support
👍2
Integrate Zoom Meetings in React Js and Python: A Step-by-Step Guide
This comprehensive guide takes you on a journey through the intricate process of integrating Zoom Meetings, the renowned video conferencing platform, into your web application built using React and Python REST API. This guide offers a step-by-step ro...
Read: https://abhaybraja.hashnode.dev/integrate-zoom-meetings-in-react-js-and-python-a-step-by-step-guide
This comprehensive guide takes you on a journey through the intricate process of integrating Zoom Meetings, the renowned video conferencing platform, into your web application built using React and Python REST API. This guide offers a step-by-step ro...
Read: https://abhaybraja.hashnode.dev/integrate-zoom-meetings-in-react-js-and-python-a-step-by-step-guide
Hello-World туториал на React/Django/RabbitMQ/Websockets
Однажды в поисках примера на React/Django я нашел на Хабре одну интересную статью. Она показалась мне полезной, и я решил дополнить пример из статьи новыми возможностями. В этом сиквеле мы добавим в веб-проект со списком студентов поддержку авторизации и real-time уведомлений на сокетах, улучшим систему Docker-сборки, оптимизируем модель очередей на RabbitMQ и немного пригладим косметику. В результате получим удобный базовый шаблон, с которого вы сможете начинать свои проекты.
Читать: https://habr.com/ru/articles/761526/
Однажды в поисках примера на React/Django я нашел на Хабре одну интересную статью. Она показалась мне полезной, и я решил дополнить пример из статьи новыми возможностями. В этом сиквеле мы добавим в веб-проект со списком студентов поддержку авторизации и real-time уведомлений на сокетах, улучшим систему Docker-сборки, оптимизируем модель очередей на RabbitMQ и немного пригладим косметику. В результате получим удобный базовый шаблон, с которого вы сможете начинать свои проекты.
Читать: https://habr.com/ru/articles/761526/
Django Async vs. Celery
This page explains the key differences between Django Async and Celery, two asynchronous technologies used in Python-based projects.
Celery and Django Async are both technologies used for handling asynchronous tasks in Python web applications, but th...
Read: https://app-generator.hashnode.dev/django-async-vs-celery
This page explains the key differences between Django Async and Celery, two asynchronous technologies used in Python-based projects.
Celery and Django Async are both technologies used for handling asynchronous tasks in Python web applications, but th...
Read: https://app-generator.hashnode.dev/django-async-vs-celery
Django Unleashed Framework
Photo
Django 5.0 alpha 1 released
Django 5.0 alpha 1 is now available. It represents the first stage in the 5.0
release cycle and is an opportunity for you to try out the changes coming in
Django 5.0.
Django 5.0 brings a deluge of exciting new features which you can read about in the
in-development 5.0 release notes.
This alpha milestone marks the feature freeze. The current release schedule
calls for a beta release in about a month and a release candidate about a month
from then. We'll only be able to keep this schedule if we get early and often
testing from the community. Updates on the release schedule are available on
the Django forum.
As with all alpha and beta packages, this is not for production use. But
if you'd like to take some of the new features for a spin, or to help find and
fix bugs (which should be reported to the issue tracker), you can grab a
copy of the alpha package from our downloads page or on PyPI.
The PGP key ID used for this release is Natalia Bidart: 2EE82A8D9470983E.
Read: https://www.djangoproject.com/weblog/2023/sep/18/django-50-alpha-1-released/
Django 5.0 alpha 1 is now available. It represents the first stage in the 5.0
release cycle and is an opportunity for you to try out the changes coming in
Django 5.0.
Django 5.0 brings a deluge of exciting new features which you can read about in the
in-development 5.0 release notes.
This alpha milestone marks the feature freeze. The current release schedule
calls for a beta release in about a month and a release candidate about a month
from then. We'll only be able to keep this schedule if we get early and often
testing from the community. Updates on the release schedule are available on
the Django forum.
As with all alpha and beta packages, this is not for production use. But
if you'd like to take some of the new features for a spin, or to help find and
fix bugs (which should be reported to the issue tracker), you can grab a
copy of the alpha package from our downloads page or on PyPI.
The PGP key ID used for this release is Natalia Bidart: 2EE82A8D9470983E.
Read: https://www.djangoproject.com/weblog/2023/sep/18/django-50-alpha-1-released/
Implementing Google Authentication for user login with Django Rest Framework (DRF)
Implementing Google Authentication for user login with Django Rest Framework (DRF) involves several steps. Here's a high-level overview of the process:
Create a Django Project: If you don't already have a Django project, create one using django-admi...
Read: https://michealcodes.hashnode.dev/implementing-google-authentication-for-user-login-with-django-rest-framework-drf
Implementing Google Authentication for user login with Django Rest Framework (DRF) involves several steps. Here's a high-level overview of the process:
Create a Django Project: If you don't already have a Django project, create one using django-admi...
Read: https://michealcodes.hashnode.dev/implementing-google-authentication-for-user-login-with-django-rest-framework-drf
Implementing a model for Google authentication with Django
To implement a model for Google authentication with Django, you generally don't need a custom model specifically for Google authentication. Instead, you can use Django's built-in User model or a custom user model, and then use third-party packages li...
Read: https://michealcodes.hashnode.dev/implementing-a-model-for-google-authentication-with-django
To implement a model for Google authentication with Django, you generally don't need a custom model specifically for Google authentication. Instead, you can use Django's built-in User model or a custom user model, and then use third-party packages li...
Read: https://michealcodes.hashnode.dev/implementing-a-model-for-google-authentication-with-django
👍1
Maximizing Productivity: PyCharm and htmx Integration
TL;DR Learn how to add support for htmx in PyCharm for seamless development using web-types.
If you're not familiar with htmx, check out this fantastic htmx + Django introduction by BugBytes.
Introduction
htmx is my go-to frontend tool for building ...
Read: https://tobidegnon.hashnode.dev/maximizing-productivity-pycharm-and-htmx-integration
TL;DR Learn how to add support for htmx in PyCharm for seamless development using web-types.
If you're not familiar with htmx, check out this fantastic htmx + Django introduction by BugBytes.
Introduction
htmx is my go-to frontend tool for building ...
Read: https://tobidegnon.hashnode.dev/maximizing-productivity-pycharm-and-htmx-integration
Building a ChatGPT Chatbot on Django using OpenAI API Chatbots have become an integral part of modern web applications, enhancing user experiences
Building a ChatGPT Chatbot on Django using OpenAI API
Chatbots have become an integral part of modern web applications, enhancing user experiences across various domains. In this tutorial, we'll explore how to create a ChatGPT-powered chatbot using D...
Read: https://ogsiji.hashnode.dev/building-a-chatgpt-chatbot-on-django-using-openai-api-chatbots-have-become-an-integral-part-of-modern-web-applications-enhancing-user-experiences
Building a ChatGPT Chatbot on Django using OpenAI API
Chatbots have become an integral part of modern web applications, enhancing user experiences across various domains. In this tutorial, we'll explore how to create a ChatGPT-powered chatbot using D...
Read: https://ogsiji.hashnode.dev/building-a-chatgpt-chatbot-on-django-using-openai-api-chatbots-have-become-an-integral-part-of-modern-web-applications-enhancing-user-experiences