Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

This is a basic guide on how to build a REST API with Django & Python. For much deeper depth, check out our new course on REST API: (https://kirr.co/90kxtx)

License

NotificationsYou must be signed in to change notification settings

codingforentrepreneurs/REST-API-Basics

Repository files navigation

Rest API Basics LOGO

REST API Basics

This is a basic, and rapid fire, guide on how to build a REST API with Django & Python. For much deeper depth and understanding, check out our new course onREST API.

Software

Related Source Code:https://kirr.co/9gqpkg

Initial Setup

virtualenv -p python3 restapi-basics# activate it # mac: `source bin/activate`# windows: `.\Scripts\activate`pip install django==1.11.8 djangorestframework==3.7.3 djangorestframework-jwt==1.11.0mkdir src && cd srcdjango-admin startproject cfehome .django-admin startapp postings

Update your settings to reflect the following:

INSTALLED_APPS = [    ...    'rest_framework',    'postings']REST_FRAMEWORK = {    'DEFAULT_PERMISSION_CLASSES': (        'rest_framework.permissions.IsAuthenticated',    ),    'DEFAULT_AUTHENTICATION_CLASSES': (        'rest_framework_jwt.authentication.JSONWebTokenAuthentication',        'rest_framework.authentication.SessionAuthentication',        'rest_framework.authentication.BasicAuthentication',    ),}

About

This is a basic guide on how to build a REST API with Django & Python. For much deeper depth, check out our new course on REST API: (https://kirr.co/90kxtx)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp