├── .DS_Store ├── .gitignore ├── README.md ├── api ├── __init__.py ├── admin.py ├── apps.py ├── filters.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── blogs ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_comment_blog.py │ ├── 0003_alter_comment_blog.py │ ├── 0004_album_track.py │ └── __init__.py ├── models.py ├── paginations.py ├── serializers.py ├── tests.py └── views.py ├── django_rest_main ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── employees ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── test_data_generator.py ├── tests.py └── views.py ├── manage.py └── students ├── __init__.py ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/api/admin.py -------------------------------------------------------------------------------- /api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/api/apps.py -------------------------------------------------------------------------------- /api/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/api/filters.py -------------------------------------------------------------------------------- /api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/api/models.py -------------------------------------------------------------------------------- /api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/api/serializers.py -------------------------------------------------------------------------------- /api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/api/tests.py -------------------------------------------------------------------------------- /api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/api/urls.py -------------------------------------------------------------------------------- /api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/api/views.py -------------------------------------------------------------------------------- /blogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blogs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/blogs/admin.py -------------------------------------------------------------------------------- /blogs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/blogs/apps.py -------------------------------------------------------------------------------- /blogs/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/blogs/migrations/0001_initial.py -------------------------------------------------------------------------------- /blogs/migrations/0002_alter_comment_blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/blogs/migrations/0002_alter_comment_blog.py -------------------------------------------------------------------------------- /blogs/migrations/0003_alter_comment_blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/blogs/migrations/0003_alter_comment_blog.py -------------------------------------------------------------------------------- /blogs/migrations/0004_album_track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/blogs/migrations/0004_album_track.py -------------------------------------------------------------------------------- /blogs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blogs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/blogs/models.py -------------------------------------------------------------------------------- /blogs/paginations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/blogs/paginations.py -------------------------------------------------------------------------------- /blogs/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/blogs/serializers.py -------------------------------------------------------------------------------- /blogs/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/blogs/tests.py -------------------------------------------------------------------------------- /blogs/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /django_rest_main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_rest_main/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/django_rest_main/asgi.py -------------------------------------------------------------------------------- /django_rest_main/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/django_rest_main/settings.py -------------------------------------------------------------------------------- /django_rest_main/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/django_rest_main/urls.py -------------------------------------------------------------------------------- /django_rest_main/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/django_rest_main/wsgi.py -------------------------------------------------------------------------------- /employees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /employees/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/employees/admin.py -------------------------------------------------------------------------------- /employees/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/employees/apps.py -------------------------------------------------------------------------------- /employees/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/employees/migrations/0001_initial.py -------------------------------------------------------------------------------- /employees/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /employees/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/employees/models.py -------------------------------------------------------------------------------- /employees/test_data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/employees/test_data_generator.py -------------------------------------------------------------------------------- /employees/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/employees/tests.py -------------------------------------------------------------------------------- /employees/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/manage.py -------------------------------------------------------------------------------- /students/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /students/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/students/admin.py -------------------------------------------------------------------------------- /students/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/students/apps.py -------------------------------------------------------------------------------- /students/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/students/migrations/0001_initial.py -------------------------------------------------------------------------------- /students/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /students/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/students/models.py -------------------------------------------------------------------------------- /students/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/students/tests.py -------------------------------------------------------------------------------- /students/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/students/urls.py -------------------------------------------------------------------------------- /students/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/drf-basics-course/HEAD/students/views.py --------------------------------------------------------------------------------