{"id":18317687,"url":"https://github.com/datarohit/django-rest-framework-course","last_synced_at":"2026-04-18T15:39:56.433Z","repository":{"id":200927178,"uuid":"706342973","full_name":"DataRohit/Django-Rest-Framework-Course","owner":"DataRohit","description":"My Django Rest Framework learning project encompassed generic API view classes, permissions, authentication methods including token-based and JWT, CORS handling, task scheduling, etc., providing a comprehensive understanding of RESTful API development.","archived":false,"fork":false,"pushed_at":"2024-01-07T12:19:59.000Z","size":2289,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-26T08:47:23.795Z","etag":null,"topics":["apscheduler","django","django-cors-headers","django-rest-framework","djongo","jsonwebtoken","mongodb","mongodb-database","pymongo","simplejwt","whitenoise"],"latest_commit_sha":null,"homepage":"https://django-rest-framework-gamma.vercel.app","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DataRohit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-17T19:00:31.000Z","updated_at":"2023-10-24T06:06:21.000Z","dependencies_parsed_at":"2023-10-22T06:23:34.532Z","dependency_job_id":"d2785b6d-ea72-4564-99ca-6690537d6aa1","html_url":"https://github.com/DataRohit/Django-Rest-Framework-Course","commit_stats":null,"previous_names":["datarohit/django-rest-framework"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DataRohit/Django-Rest-Framework-Course","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DataRohit%2FDjango-Rest-Framework-Course","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DataRohit%2FDjango-Rest-Framework-Course/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DataRohit%2FDjango-Rest-Framework-Course/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DataRohit%2FDjango-Rest-Framework-Course/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DataRohit","download_url":"https://codeload.github.com/DataRohit/Django-Rest-Framework-Course/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DataRohit%2FDjango-Rest-Framework-Course/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31974951,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apscheduler","django","django-cors-headers","django-rest-framework","djongo","jsonwebtoken","mongodb","mongodb-database","pymongo","simplejwt","whitenoise"],"created_at":"2024-11-05T18:07:07.266Z","updated_at":"2026-04-18T15:39:56.414Z","avatar_url":"https://github.com/DataRohit.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Django Rest Framework Course\n\n## Overview\nThis is a comprehensive Django Rest Framework course that takes you from a beginner to an advanced level. You can follow the commits in this repository sequentially to see all the changes made step by step to achieve the full functionality of the RestAPI.\n\n## Project Details\n**Project Hosting:** Vercel [here](https://django-rest-framework-gamma.vercel.app/)\n\n**Database:** Initially uses sqlite3 (recommended for beginners), later integrated with MongoDB.\n\n**Credits:** The project is based on the course provided by\n - [CodingEntrepreneurs](https://www.youtube.com/@CodingEntrepreneurs)\n - [BestTutorial07](https://www.youtube.com/@BestTutorial07)\n\n## Django Apps and Features\n - [***restapi***](https://github.com/DataRohit/Django-Rest-Framework-Course/tree/main/backend/restapi)\n   - Echo Request Data as JSON\n\n - [***products***](https://github.com/DataRohit/Django-Rest-Framework-Course/tree/main/backend/products)\n   - Return Random Product\n   - Product Detail using ID\n   - Product Update using ID\n   - Product Delete using ID\n   - List All Products\n   - Create New Product\n   - Search Product in DB\n\n - [***tokenauth***](https://github.com/DataRohit/Django-Rest-Framework-Course/tree/main/backend/tokenauth)\n   - Generate Django Auth Token\n\n - [***task_scheduler***](https://github.com/DataRohit/Django-Rest-Framework-Course/tree/main/backend/task_scheduler)\n   - Clear Expired Django Auth Token\n\n - [***jwtauth***](https://github.com/DataRohit/Django-Rest-Framework-Course/tree/main/backend/jwtauth)\n   - Generate Json Web Token\n   - Refresh Json Web Token\n   - Verify Json Web Token\n\n# Requirements\n\n - django\n - django-cors-headers\n - djangorestframework\n - djangorestframework-simplejwt\n - djongo==1.3.6\n - pymongo==3.11.3\n - dnspython\n - apscheduler\n - pyyaml\n - requests\n - python-dotenv\n - markdown\n - whitenoise\n\nAll the above metioned packages are listed in [requirements.txt](https://github.com/DataRohit/Django-Rest-Framework-Course/blob/main/backend/requirements.txt) file.\n\n# Concepts Covered\n - JSON Response\n - Decorators\n - Validators\n - Serializers\n - Models\n - Views\n - URLs\n - CRUD Operation\n - Generic API Views\n - Token Authentication\n - Custom Expiring Tokens\n - Model Permissions\n - Custom Permissions\n - Mixins\n - JSON Web Token\n - Django CORS\n - Throttling\n - Scheduler\n - MongoDB Integration\n - WhiteNoise Static Hosting\n - Vercel Setup","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatarohit%2Fdjango-rest-framework-course","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdatarohit%2Fdjango-rest-framework-course","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatarohit%2Fdjango-rest-framework-course/lists"}