{"id":14972683,"url":"https://github.com/neeraj1909/quiz","last_synced_at":"2026-03-07T03:32:11.551Z","repository":{"id":44866884,"uuid":"121969400","full_name":"neeraj1909/quiz","owner":"neeraj1909","description":"It is a quiz web app created using Django and Bootstrap 4. ","archived":false,"fork":false,"pushed_at":"2022-01-21T19:00:09.000Z","size":298,"stargazers_count":23,"open_issues_count":2,"forks_count":9,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-14T19:35:49.680Z","etag":null,"topics":["django","django-application","django-channels","django-framework","django-project","python-3-6","python3"],"latest_commit_sha":null,"homepage":"http://quiz.neeraj.playingwithcode.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neeraj1909.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}},"created_at":"2018-02-18T16:38:23.000Z","updated_at":"2024-12-27T04:46:39.000Z","dependencies_parsed_at":"2022-09-24T22:23:03.877Z","dependency_job_id":null,"html_url":"https://github.com/neeraj1909/quiz","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/neeraj1909/quiz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neeraj1909%2Fquiz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neeraj1909%2Fquiz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neeraj1909%2Fquiz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neeraj1909%2Fquiz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neeraj1909","download_url":"https://codeload.github.com/neeraj1909/quiz/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neeraj1909%2Fquiz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30206573,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T03:24:23.086Z","status":"ssl_error","status_checked_at":"2026-03-07T03:23:11.444Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["django","django-application","django-channels","django-framework","django-project","python-3-6","python3"],"created_at":"2024-09-24T13:47:19.438Z","updated_at":"2026-03-07T03:32:11.530Z","avatar_url":"https://github.com/neeraj1909.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Online Quiz App in Django\n\nThis is an online quiz organizing website project, developed using Python's web framework Django.\u003cbr\u003e\nFor front-end designing we have used Twitter's front-end library Bootstrap4.\n\n### Current Features\n\n**Site access features:**\n\n\n* Every quiz can be accessed only if the user is logged in.\n* In the signing-up process the user is required to give the following information\n\t1. Full Name\n\t2. Email-id (unique for every user)\n\t3. Mobile Number (unique for every user)\n\t4. Roll No.\n\t5. Password\n* For login the user will be required to enter *Email-id* and *Password* only\n\n**Features of each quiz:**\n\n* The logged in user either can create his own quiz or take an existing quiz.\n* For creating the quiz, the user will be required to enter the *Title* of the quiz and questions and their corresponding options.\n* Or the user can take the existing quiz.\n* There will be timer of each quiz and the user is required to finish the quiz in time.\n* When the timer stops, the corresponding record (i.e. number of correct answers) will be saved automatically.\n\n\n**Dashboard features:**\n\n* There are two type of dashboard\n\t1. Dashboard of corresponding user\n\t2. Global dashboard (i.e. Leaderboard)\n* In the *Dashboard of corresponding user* the user can see his attempted quiz statistics \u003cbr\u003e(i.e. *No. of Correct answers*, *Marks obtained* )\n* In the *Global dashboard* there will be overall ranking of users who have attended the corresponding quiz.\n\n\n### Getting started with development\nDependenciies:\n- Python 3.6.x\n- Django 1.11.x\n- MySQL 5.7.x\n- Ubuntu 17.04 or later\n\n#### 1. Clone this repoistory\n```bash\ngit clone git@github.com:neeraj1909/quiz.git\ncd quiz\n```\n\n#### 2. Install the [virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/)\nFollow [instructions on official documentation page](https://virtualenvwrapper.readthedocs.io/en/latest/install.html).\n\n#### 3. Create the virtualenv\n```bash\n## run following command from `quiz` directory\nmkvirtualenv quiz -a \"$(pwd)\" -p python3.6\n```\n\n#### 4. Install python packages\n```bash\n## Activate the virtualenv which you created on the last step\nworkon quiz\npip install -r requirements.txt\n```\n\n#### 5. Setup the database\n*TODO - Add instructions for this when we start using MySQL database.*\n\n#### 6. Run database migrations\n```bash\npython manage.py migrate\n```\n\n#### 7. Run development server\n```bash\npython manage.py runserver\n```\n#### 8. Implementation of Timer\n*TODO - Implementation of timer for the quiz still have to be done.*\n\n### Contribute\n----------\n- Issue Tracker: [Issues](https://github.com/neeraj1909/quiz/issues)\n- Source Code: [Here](https://github.com/neeraj1909/quiz/)\n\n### Contributors\n----------\n\n* [Neeraj Kumar Singh](https://github.com/neeraj1909)\n\n\n### License\n----------\nMIT License\n\nCopyright (c) 2018 Neeraj Kumar Singh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneeraj1909%2Fquiz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneeraj1909%2Fquiz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneeraj1909%2Fquiz/lists"}