All Projects β†’ devslaw β†’ Django_rest_example

devslaw / Django_rest_example

Django/DRF rest application example.

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Django rest example

Usaspending Api
Server application to serve U.S. federal spending data via a RESTful API
Stars: ✭ 166 (+876.47%)
Mutual labels:  api, postgresql, django, django-rest-framework
Best Of Web Python
πŸ† A ranked list of awesome python libraries for web development. Updated weekly.
Stars: ✭ 1,118 (+6476.47%)
Mutual labels:  api, django, django-rest-framework
Postgraduation
University management platform dedicated for post-graduation in computer science field using django rest framework.
Stars: ✭ 35 (+105.88%)
Mutual labels:  api, django, django-rest-framework
Tutorialdb
A search πŸ”Ž engine for programming/dev tutorials, See it in action πŸ‘‰
Stars: ✭ 93 (+447.06%)
Mutual labels:  api, django, django-rest-framework
Docker Tutorial
Docker εŸΊζœ¬ζ•™ε­Έ - εΎžη„‘εˆ°ζœ‰ Docker-Beginners-Guide 教你用 Docker ε»Ίη«‹ Django + PostgreSQL πŸ“
Stars: ✭ 906 (+5229.41%)
Mutual labels:  postgresql, django, django-rest-framework
Hydroshare
HydroShare is a collaborative website for better access to data and models in the hydrologic sciences.
Stars: ✭ 117 (+588.24%)
Mutual labels:  postgresql, django, django-rest-framework
Drf Autodocs
Ultimately automated DRF documentation rendering(UNMAINTAINED)
Stars: ✭ 82 (+382.35%)
Mutual labels:  api, django, django-rest-framework
Project Dashboard With Django
Agile Project Management dashboard with Django REST and Vue.js
Stars: ✭ 25 (+47.06%)
Mutual labels:  postgresql, django, django-rest-framework
Rest Api
Learn how to build your own REST API with Python, Django, and the Django Rest Framework.
Stars: ✭ 232 (+1264.71%)
Mutual labels:  api, django, django-rest-framework
Awesome Django Rest Framework
πŸ’»πŸ˜Tools, processes and resources you need to create an awesome API with Django REST Framework
Stars: ✭ 689 (+3952.94%)
Mutual labels:  api, django, django-rest-framework
Django Rest Framework Datatables
Seamless integration between Django REST framework and Datatables.
Stars: ✭ 241 (+1317.65%)
Mutual labels:  api, django, django-rest-framework
Ara
ARA Records Ansible and makes it easier to understand and troubleshoot.
Stars: ✭ 1,176 (+6817.65%)
Mutual labels:  api, django, django-rest-framework
Django Api Domains
A pragmatic styleguide for Django API Projects
Stars: ✭ 365 (+2047.06%)
Mutual labels:  api, django, django-rest-framework
Docker Django Nginx Uwsgi Postgres Tutorial
Docker + Django + Nginx + uWSGI + Postgres εŸΊζœ¬ζ•™ε­Έ - εΎžη„‘εˆ°ζœ‰ ( Docker + Django + Nginx + uWSGI + Postgres Tutorial )
Stars: ✭ 334 (+1864.71%)
Mutual labels:  postgresql, django, django-rest-framework
Django React Boilerplate
DIY Django + React Boilerplate for starting your SaaS
Stars: ✭ 385 (+2164.71%)
Mutual labels:  postgresql, django, django-rest-framework
Feedhq
FeedHQ is a web-based feed reader
Stars: ✭ 525 (+2988.24%)
Mutual labels:  postgresql, django
Fcm Django
FCM Django: Send push notifications via django to websites, iOS & android mobile devices through FCM (Firebase Cloud Messaging)
Stars: ✭ 495 (+2811.76%)
Mutual labels:  django, django-rest-framework
Django React Blog
Simple blog built with Django and React/Redux, deployed with Docker, and served with nginx/uwsgi.
Stars: ✭ 528 (+3005.88%)
Mutual labels:  django, django-rest-framework
Django Rest Framework Mongoengine
Mongoengine support for Django Rest Framework
Stars: ✭ 544 (+3100%)
Mutual labels:  django, django-rest-framework
Dj Rest Auth
Authentication for Django Rest Framework
Stars: ✭ 491 (+2788.24%)
Mutual labels:  django, django-rest-framework

django_rest_example

Awesome

Django/DRF rest application example with PostgreSQL and RabbitMQ.

Create virtualenv

cd /var/envs && mkvirtualenv --python=/usr/bin/python3 django_rest_example

Install requirements for a project.

cd /var/www/django_rest_example && pip install -r requirements/local.txt

Make migrations and migrate

python manage.py makemigrations
python manage.py migrate

Request example

response = requests.get(
    url="http://127.0.0.1:8000/api/v0/api-key/",
    headers={
        "Api-Key": "<YOUR_API_KEY>",
    },
)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].