Build a Rest API with the Django REST Framework
Build a Rest API with the Django REST Framework and Python 3.6 This is a rapid-fire guide on covering the basics to build a REST API with Django & Python. For much deeper depth, check out our new course on REST API: (https://kirr.co/rfqyre) (https://kirr.co/90kxtx) Software Django 1.11.8 (https://kirr.co/hjogvt) Python 3.6.3 (https://kirr.co/ftq97z) Django Rest Framework 3.7.3 (https://kirr.co/svez0s) Django Rest Framework JWT 1.11.0 (https://kirr.co/vpibmo) 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.0 mkdir src && cd src django-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', ), } ''' # ----- Amazing Starts Small. Learn to build great products with code. Enroll: http://kirr.co/ni5fia or Subscribe: http://kirr.co/7l2sv4/ ----- Questions? http://kirr.co/wmdnzz/ Suggestions? http://kirr.co/5d7m1r/ All of my step by step projects: http://kirr.co/ni5fia/ My equipment: Laptop: http://amzn.to/2c965EL 4k Camera: http://amzn.to/2cb0JeS Drone/Aerial Video: http://amzn.to/2cCUgLq Flexible/Travel Tripod for DSLR: http://amzn.to/2d13rXi (I highly recommend this too: http://amzn.to/2ckauYr) General Purpose Tripod: http://amzn.to/2d4xNUS Webcam: http://amzn.to/2bZEc7I Camera Mic: http://amzn.to/2cb0PTp Studio Mic: http://amzn.to/2cCdNc3 Mic Arm (for Studio): http://amzn.to/2cCepyd Shock Mount (for Studio): http://amzn.to/2c97uLN Phone: http://amzn.to/2c97R8X Tablet (and portable external monitor) : http://amzn.to/2c5Fqdx External Hard drives: http://amzn.to/2c5FvxV Headphones (mic used for travel recording): http://amzn.to/2c5GGNO
Download
0 formatsNo download links available.