How to build a basic API using FastAPI?
Back then, if you needed to build a website or API in Python, the choices would be Flask or Django. Both are excellent options no doubt, however in recent times for APIs and machine learning backends, FastAPI seems to be the most popular choice.
I wo...
Read: https://kevincoder.co.za/how-to-build-a-basic-api-using-fastapi
@django_prog
Back then, if you needed to build a website or API in Python, the choices would be Flask or Django. Both are excellent options no doubt, however in recent times for APIs and machine learning backends, FastAPI seems to be the most popular choice.
I wo...
Read: https://kevincoder.co.za/how-to-build-a-basic-api-using-fastapi
@django_prog
Why Async Django Is The Future of Python Web Development
Introduction
Async Django is an extension of the popular Django web framework that adds support for writing asynchronous code using Python’s async/await syntax. Async/await is a feature added in Python 3.5 that allows for more efficient use of system...
Read: https://denislearns.tech/async-django
@django_prog
Introduction
Async Django is an extension of the popular Django web framework that adds support for writing asynchronous code using Python’s async/await syntax. Async/await is a feature added in Python 3.5 that allows for more efficient use of system...
Read: https://denislearns.tech/async-django
@django_prog
Django Admin Panel
The Django admin panel is a powerful tool provided by Django that allows you to manage your application's data without writing custom views or templates. It automatically generates an admin interface based on your models.To use the admin panel:
Crea...
Read: https://poojadanu.hashnode.dev/django-admin-panel
@django_prog
The Django admin panel is a powerful tool provided by Django that allows you to manage your application's data without writing custom views or templates. It automatically generates an admin interface based on your models.To use the admin panel:
Crea...
Read: https://poojadanu.hashnode.dev/django-admin-panel
@django_prog
A Practical Approach to Unit Testing in Django REST Framework
More often than not, you would encounter a bug when your app is in production. Sometimes the bug is easy to fix, sometimes it’s not. But many times, after shipping the fix, you realize that a different part of your app is broken.
This is very common ...
Read: https://mlsaunilag.hashnode.dev/a-practical-approach-to-unit-testing-in-django-rest-framework
@django_prog
More often than not, you would encounter a bug when your app is in production. Sometimes the bug is easy to fix, sometimes it’s not. But many times, after shipping the fix, you realize that a different part of your app is broken.
This is very common ...
Read: https://mlsaunilag.hashnode.dev/a-practical-approach-to-unit-testing-in-django-rest-framework
@django_prog
👍2
Welcome our new Fellow - Sarah Boyce
The DSF Board and Fellows Committee are pleased to introduce Sarah Boyce as our new Django Fellow. Sarah will be joining Natalia Bidart who is continuing her excellent tenure as a Fellow.
Sarah is a senior developer and developer advocate with 5 years of experience developing with Django under her belt. She graduated with a first class honours degree in Mathematics from the University of Bath, and transitioned in software development in her first job out of school.
Sarah first worked as a client project focused developer, where she gained experience directly dealing with requests from clients as well as managing our own internal ticketing system for feature/bug reports. A stint as a backend developer using Django and DRF provided a grounding in working on long term challenges on a single project. Most recently Sarah has been a developer advocate focused on creating content on and about Django and Django development.
For the past several years, Sarah has been a very active member of the Django community. She has a history of producing well researched and written patches for Django, as well as on a number of highly used third party packages. Sarah is a member of the Django Review and Triage team, helping others to get their patches over the line and into Django. She also finds time to participate in and create content for Django meetups, conferences, and the Django News newsletter.
Sarah is also a Co-Founder and Co-Organiser of Djangonaut Space, the mentorship program developing future contributors to Django and other Django related packages. Djangonaut Space was awarded the 2023 Malcolm Tredinnick Memorial Prize.
Please join me in welcoming and wishing Sarah well as the new Fellow.
Thank you to all of the applicants to the Fellowship. We hope that we will be able to expand the Fellowship program in the future, and knowing that there are more excellent candidates gives us confidence in working towards that goal.
Finally our deepest thanks and gratitude goes to Mariusz Felisiak. Mariusz is stepping down from the Fellowship after 5 years of dedicated service in order to focus on other areas of the Django and wider world. We wish you well Mariusz.
Read: https://www.djangoproject.com/weblog/2024/mar/22/welcome-our-new-fellow-sarah-boyce/
@django_prog
The DSF Board and Fellows Committee are pleased to introduce Sarah Boyce as our new Django Fellow. Sarah will be joining Natalia Bidart who is continuing her excellent tenure as a Fellow.
Sarah is a senior developer and developer advocate with 5 years of experience developing with Django under her belt. She graduated with a first class honours degree in Mathematics from the University of Bath, and transitioned in software development in her first job out of school.
Sarah first worked as a client project focused developer, where she gained experience directly dealing with requests from clients as well as managing our own internal ticketing system for feature/bug reports. A stint as a backend developer using Django and DRF provided a grounding in working on long term challenges on a single project. Most recently Sarah has been a developer advocate focused on creating content on and about Django and Django development.
For the past several years, Sarah has been a very active member of the Django community. She has a history of producing well researched and written patches for Django, as well as on a number of highly used third party packages. Sarah is a member of the Django Review and Triage team, helping others to get their patches over the line and into Django. She also finds time to participate in and create content for Django meetups, conferences, and the Django News newsletter.
Sarah is also a Co-Founder and Co-Organiser of Djangonaut Space, the mentorship program developing future contributors to Django and other Django related packages. Djangonaut Space was awarded the 2023 Malcolm Tredinnick Memorial Prize.
Please join me in welcoming and wishing Sarah well as the new Fellow.
Thank you to all of the applicants to the Fellowship. We hope that we will be able to expand the Fellowship program in the future, and knowing that there are more excellent candidates gives us confidence in working towards that goal.
Finally our deepest thanks and gratitude goes to Mariusz Felisiak. Mariusz is stepping down from the Fellowship after 5 years of dedicated service in order to focus on other areas of the Django and wider world. We wish you well Mariusz.
Read: https://www.djangoproject.com/weblog/2024/mar/22/welcome-our-new-fellow-sarah-boyce/
@django_prog
Permission Classes in Django-Rest-Framework
Imagine you're throwing a party, and you're the host.
You have different types of guests coming in, each with their own level of access to your party.
Now you establish certain rules and conditions that grant permission to some specific people:
Gues...
Read: https://mayukh551.hashnode.dev/permission-classes-in-django-rest-framework
@django_prog
Imagine you're throwing a party, and you're the host.
You have different types of guests coming in, each with their own level of access to your party.
Now you establish certain rules and conditions that grant permission to some specific people:
Gues...
Read: https://mayukh551.hashnode.dev/permission-classes-in-django-rest-framework
@django_prog
👍2
CRUD operations in Django
Managing data in Django typically involves performing CRUD (Create, Read, Update, Delete) operations on your database.
Start the shell by running python manage.py shell. When you run python manage.py shell, Django will initialize your project's setti...
Read: https://poojadanu.hashnode.dev/crud-operations-in-django
@django_prog
Managing data in Django typically involves performing CRUD (Create, Read, Update, Delete) operations on your database.
Start the shell by running python manage.py shell. When you run python manage.py shell, Django will initialize your project's setti...
Read: https://poojadanu.hashnode.dev/crud-operations-in-django
@django_prog
👍1
*Django REST Framework* Part 3 :
Video ContainsDjango rest framework setup
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-3
@django_prog
Video ContainsDjango rest framework setup
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-3
@django_prog
*Django REST Framework* Part 4 :
Django REST Framework Part 4 :Video Contains
API view decoratorsGET, POST, PUT method in API view decorators
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7174056759345524737-AIc4?utm_source=share&utm_medium=...
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-4
@django_prog
Django REST Framework Part 4 :Video Contains
API view decoratorsGET, POST, PUT method in API view decorators
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7174056759345524737-AIc4?utm_source=share&utm_medium=...
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-4
@django_prog
*Django REST Framework* Part 5 :
Django REST Framework Part 5 :Video ContainsCreating model
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7174419068408541184-ftPQ?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-5
@django_prog
Django REST Framework Part 5 :Video ContainsCreating model
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7174419068408541184-ftPQ?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-5
@django_prog
*Django REST Framework* Part 6 :
Django REST Framework Part 6 :Video Contains
Writing serialisers
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7174600261917683712-IVBh?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-6
@django_prog
Django REST Framework Part 6 :Video Contains
Writing serialisers
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7174600261917683712-IVBh?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-6
@django_prog
*Django REST Framework* Part 7 :
Django REST Framework Part 7 :Video ContainsCRUD method using serializers
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7175143854579331072-CRWs?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-7
@django_prog
Django REST Framework Part 7 :Video ContainsCRUD method using serializers
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7175143854579331072-CRWs?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-7
@django_prog
*Django REST Framework* Part 8 :
Django REST Framework Part 8 :Video ContainsValidation in serializersSerializing foreign key in Django rest framework
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7175506262887997440-DD0J?utm_source=share&utm_...
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-8
@django_prog
Django REST Framework Part 8 :Video ContainsValidation in serializersSerializing foreign key in Django rest framework
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7175506262887997440-DD0J?utm_source=share&utm_...
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-8
@django_prog
*Django REST Framework* Part 9 :
Django REST Framework Part 9 :Video ContainsAPIView class in DRFModelViewSet in DRF
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7175868651642761217-e5xn?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-9
@django_prog
Django REST Framework Part 9 :Video ContainsAPIView class in DRFModelViewSet in DRF
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7175868651642761217-e5xn?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-9
@django_prog
*Django REST Framework* Part 10 :
Django REST Framework Part 10 :Video Contains
Token Authentication in DRFPermissions in DRF
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7176231042951864321-lksa?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-10
@django_prog
Django REST Framework Part 10 :Video Contains
Token Authentication in DRFPermissions in DRF
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7176231042951864321-lksa?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-10
@django_prog
*Django REST Framework* Part 11 :
Django REST Framework Part 11 :Video Contains
Summary of the course
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7176593420625297409-p-pp?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-11
@django_prog
Django REST Framework Part 11 :Video Contains
Summary of the course
https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7176593420625297409-p-pp?utm_source=share&utm_medium=member_desktop
Read: https://aghattikar82.hashnode.dev/django-rest-framework-part-11
@django_prog
Django REST Framework : Final Project
Django REST Framework : Final ProjectThis project demonstrates core functionalities learned about Django REST framework (DRF).
https://www.linkedin.com/posts/aghattikar82_django-rest-framework-project-activity-7176797259756417024-jEYr?utm_source=sh...
Read: https://aghattikar82.hashnode.dev/django-rest-framework-final-project
@django_prog
Django REST Framework : Final ProjectThis project demonstrates core functionalities learned about Django REST framework (DRF).
https://www.linkedin.com/posts/aghattikar82_django-rest-framework-project-activity-7176797259756417024-jEYr?utm_source=sh...
Read: https://aghattikar82.hashnode.dev/django-rest-framework-final-project
@django_prog
👍1
Django REST Framework
Django REST Framework
Documents Contains- Introduction- What is API and Why do we use Django rest framework- Django rest framework setup- API view decorators- GET, POST, PUT method in API view decorators- Creating model- Writing serialisers- CRUD m...
Read: https://aghattikar82.hashnode.dev/django-rest-framework
@django_prog
Django REST Framework
Documents Contains- Introduction- What is API and Why do we use Django rest framework- Django rest framework setup- API view decorators- GET, POST, PUT method in API view decorators- Creating model- Writing serialisers- CRUD m...
Read: https://aghattikar82.hashnode.dev/django-rest-framework
@django_prog
Using Terraform to provision AWS ECS and ECR to deploy Django Web App
Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of web development, so you can focus on writing your app without needing t...
Read: https://joelwembo.hashnode.dev/using-terraform-to-provision-aws-ecs-and-ecr-to-deploy-django-web-app
@django_prog
Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of web development, so you can focus on writing your app without needing t...
Read: https://joelwembo.hashnode.dev/using-terraform-to-provision-aws-ecs-and-ecr-to-deploy-django-web-app
@django_prog
👍1
Dual personality of being JS n Python Dev
In the dynamic field of software engineering, continuous learning and skill enhancement are pivotal for career advancement, especially for those aspiring to secure a position as an experienced software engineer. With the ever-evolving technological l...
Read: https://shijoshaji.hashnode.dev/dual-personality-of-being-js-n-python-dev
@django_prog
In the dynamic field of software engineering, continuous learning and skill enhancement are pivotal for career advancement, especially for those aspiring to secure a position as an experienced software engineer. With the ever-evolving technological l...
Read: https://shijoshaji.hashnode.dev/dual-personality-of-being-js-n-python-dev
@django_prog
Day 17 : Docker Project for DevOps Engineers.
📄What is 'Dockerfile' ?
Docker is a tool that makes it easy to run applications in containers. Containers are like small packages that hold everything an application needs to run.
To create these containers, developers use something called a Dockerf...
Read: https://devab.hashnode.dev/day-17-docker-project-for-devops-engineers
@django_prog
📄What is 'Dockerfile' ?
Docker is a tool that makes it easy to run applications in containers. Containers are like small packages that hold everything an application needs to run.
To create these containers, developers use something called a Dockerf...
Read: https://devab.hashnode.dev/day-17-docker-project-for-devops-engineers
@django_prog
❤1