1.What are class based views in Django?
APIView class provides commonly required behavior for standard list and detail views. With APIView class, we can rewrite the root view as
a class-based view. They provide action methods such as get(), post(), put(), patch(), and delete() rather than defining the handler methods.
Source Code In GitHub: https://github.com/arafatHoshen/Djang...
💖 WATCHING ANOTHER VIDEO
➡️ Python Django Full Course: https://www.youtube.com/playlist?list...
➡️ Html full course bangle: • Html full course bangle | HTML Bangla Tuto...
➡️ Python full course for beginners Bangla : • Python full course [ Bangla ] python bangl...
➡️ Face Mask Detection using Python, Keras, OpenCV & Tensorflow : https://www.youtube.com/watch?v=OQQiK...
➡️ Python OpenCv Playlist Link: https://www.youtube.com/watch?v=mpS8N...
➡️ License Plate Detection using Python OpenCV: • License Plate Detection using Python OpenC...
👍 CONNECT WITH US ON SOCIAL MEDIA 👍
🔵 FACEBOOK ► / nongarehub
🔵 TWITTER ► / arafat99hossain
🔵 INSTAGRAM ► / arafat99hos. .
🔵 LINKEDIN ► / arafat7
🔵 GITHUB ► https://github.com/arafatHoshen
🔵 MEDIUM ► /
প্রোগ্রামিং রিলেটেড যে কোন সমস্যা এই গ্রুপে পোস্ট করুন আশা করি সমাধান পাবেন
🔵 Join our Facebook Group: ► / bdpro. .
চায়না থেকে সরাসরি কোনরুপ ঝামেলা ছাড়াই বাংলাদেশে পণ্য আনতে এবং আপনার কাঙ্ক্ষিত পণ্য স্বল্প সময়ে এবং স্বল্প খরচে BY AIR
ও BY SEA তে LC অথবা TT ছারাই বাংলাদেশে ইমপোর্ট করতে আমাদের সাথে যোগাযোগ করুন।
🔵 Facebook page link: / nongare360shop
2. What is an API?
An application programming interface is a connection between computers or between computer programs. It is a type of software interface,
offering a service to other pieces of software. A document or standard that describes how to build or use such a connection or interface
is called an API. A computer system that meets this standard is said to implement or expose an API. The term API may refer either to the
specification or to the implementation.
3. What is REST API ?
Representational state transfer is a software architectural style that was created to guide the design and development of the architecture
for the World Wide Web. REST defines a set of constraints for how the architecture of an Internet-scale distributed hypermedia system, such
as the Web, should behave. The REST architectural style emphasises the scalability of interactions between components, uniform interfaces,
independent deployment of components, and the creation of a layered architecture to facilitate caching components to reduce user-perceived
latency, enforce security, and encapsulate legacy systems.
4. Django REST Framework ?
Django REST framework is a powerful and flexible toolkit for building Web APIs. ... The Web browsable API is a huge usability win for your
developers. Authentication policies including packages for OAuth1a and OAuth2. Serialization that supports both ORM and non-ORM data sources.
5. how to work Django rest api ?
1.Set up Django.
2.Create a model in the database that the Django ORM will manage.
3.Set up the Django REST Framework.
4.Serialize the model from step 2.
5.Create the URI endpoints to view the serialized data.
#Django_Rest_Framework_Bangla_Tutorial
#API_Bangla_Tutorial
#Class_Based_APIView