Answers for "rest api django"

12

install django rest framework

pip install djangorestframework
Posted by: Guest on September-10-2020
8

django rest framework

pip install djangorestframework
pip install markdown       # Markdown support for the browsable API.
pip install django-filter  # Filtering support
Posted by: Guest on November-20-2020
2

django rest framework

INSTALLED_APPS = [
    ...
    'rest_framework',
]
Posted by: Guest on May-05-2021
4

django rest framework

$ pipenv install djangorestframework
# or
pip install djangorestframework
Posted by: Guest on January-19-2021
0

build rest apis with django rest framework and python

# Package installment in terminal(Recommended : Activate virtual env)
pip install djangorestframework

#Project>Settings.py
INSTALLED_APPS += ['rest_framework', 'rest_framework.authtoken']
REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': [
        'rest_framework.authentication.BasicAuthentication',
        'rest_framework.authentication.SessionAuthentication',
      	'rest_framework.authentication.TokenAuthentication',
    ]
}

#Project>urls.py
urlpatterns += [path('api-auth/', include('rest_framework.urls'))]

#Function Based
from rest_framework.decorators import api_view

@api_view()
def hello_world(request):
    if request.method == 'POST':
        return Response({"message": "Got some data!", "data": request.data})
    return Response({"message": "Hello, world!"})
  
#Class Based
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework import authentication, permissions
from django.contrib.auth.models import User

class ListUsers(APIView):
    """
    View to list all users in the system.

    * Requires token authentication.
    * Only admin users are able to access this view.
    """
    authentication_classes = [authentication.TokenAuthentication]
    permission_classes = [permissions.IsAdminUser]

    def get(self, request, format=None):
        """
        Return a list of all users.
        """
        usernames = [user.username for user in User.objects.all()]
        return Response(usernames)
Posted by: Guest on July-19-2021
0

djangorestframework

from django.conf.urls import url, include
from django.contrib.auth.models import User
from rest_framework import routers, serializers, viewsets

# Serializers define the API representation.
class UserSerializer(serializers.HyperlinkedModelSerializer):
    class Meta:
        model = User
        fields = ['url', 'username', 'email', 'is_staff']

# ViewSets define the view behavior.
class UserViewSet(viewsets.ModelViewSet):
    queryset = User.objects.all()
    serializer_class = UserSerializer

# Routers provide an easy way of automatically determining the URL conf.
router = routers.DefaultRouter()
router.register(r'users', UserViewSet)

# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
    url(r'^', include(router.urls)),
    url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework'))
]
Posted by: Guest on January-24-2020

Browse Popular Code Answers by Language