Assignment submission system using Python

Published on . Written by

Assignment submission system using Python

When it comes to submission’s we often tend to be late, or become lazy to do the assignments, practical’s and submit them late, or find it hard to submit it on paper. Let’s build a submission portal which helps students to submit their practical and assignments online easily. And the faculty can upload documents on the portal for students’ reference. The students can upload and download documents as well as the faculty. And students will then graded for their work on the portal itself.

Read more..

SLNOTE

Skyfi Labs Projects
Concept Used

Python programming

Database management

Web development

Hardware and software used

  1. A suitable OS such as Windows/Linux/Mac
  2. A desktop or laptop with enough Disc storage
  3. Enough RAM to run the program
  4. Python 2 and upwards pre-installed in the system, Pycharm or IDLE or any python based software.
  5. Python-Flask/Django for application development
  6. Any SQL based engine for Database

SLLATEST
Modules

  • Login module for student and faculty
  • Subject modules
  • Student profile
  • Faculty profile
  • faculty documents upload
  • student documents upload
  • marks the grading module
  • database
Features

  • Faculty can download, upload and grade students
  • Students can download and upload documents
Project Implementation

  • As we are going to use python for developing the application, make sure that flask or Djnago or any python web development framework is preinstalled.
  • Start by importing flask into the IDE you are using, then create the homepage and make sure to route the application using flask routing function.
  • Then create your log in page, in the login page add a row which allows the person to select if he/she is a faculty or student. The student has to login by enrollment number as username and faculty by email-id
  • Next, add two more pages 1. Student profile and 2. Faculty profile.
  • In the student profile, the following fields should be added
    • Subjects according to semester
    • Create different pages for each subject and add them to the student profile then add them to student profile
    • In each subject page, the create file upload module by using following file uploading using flask (if you are using flask)
      • config['MAX_CONTENT-PATH']
      • config['UPLOAD_FOLDER']
    • Now when the student log’s in he should be redirected to his profile
    • Similarly, for the faculty
    • Add a database, in database add two tables one for student and another of the faculty
    • In student table store all the files a student uploads subject wise, so in the table create the following attributes:
  1. Student id (primary key)
  2. Subjects
  3. Grade
  • Similarly, in the faculty table add the following attributes
    1. Faculty id (primary key)
    2. Subjects
    3. Grading
  • Connect the databases tables to particular profiles
  • The grade column in the faculty should be equal to the grade column in the student’s profile, so that when the faculty grades the student can see them.
  • So, write a query to do so.
  • Then combine all for the completion of the application.

SLDYK
Kit required to develop Assignment submission system using Python:
Technologies you will learn by working on Assignment submission system using Python:


Any Questions?


Subscribe for more project ideas