Tuesday 16 June 2020

Online Assignment Submission Project on Python Django











Buy Now ₹501

Online Assignment Submission Project on Python Django is a system that enable the student to submit their assignment or project online without submitting any physical file. The proposed system helps reducing and minimizing human error, capable to assist supervisors in process controlling and managing students. During lockdown its very help full project.

Functional requirements to explain

identity:administrator, teacher, teaching assistant, student (each person has their own school ID number, within 10 digits, there can be letters, and everyone has a password)
Administrator: issue questions, delete questions 、Teacher information management, class organization (a teaching class has a main teacher, there can be no teaching assistant, or more than one teaching assistant)
Teachers: teaching assistant management (specify the teaching assistant's authority), class management, problem setting, assignment assignment, corrective assignment, statistics job completion
Assistants: rights specified by the teacher to complete all or part of the work, classroom management, the question, assignments, correcting homework, work statistics completion
Students: complete and submit the Assignment.

Technology Used in the project Online Assignment Submission 

  • We have developed this project using the below technology
  • HTML : Page layout has been designed in HTML
  • CSS : CSS has been used for all the desigining part
  • JavaScript : All the validation task and animations has been developed by JavaScript
  • Python : All the business logic has been implemented in Python
  • SQLite : SQLite database has been used as database for the project
  • Django : Project has been developed over the Django Framework

Supported Operating System

  • We can configure this project on following operating system.
  • Windows : This project can easily be configured on windows operating system. For running this project on Windows system, you will have to install
  • Python 2.7, PIP, Django.
  • Linux : We can run this project also on all versions of Linux operating systemMac : We can also easily configured this project on Mac operating system.

Online Assignment Submission Project on Django Installation Steps :-

  • Install Python 3.7 Or Higher
  • Install Django version 2.2.0
  • Install all dependencies cmd -python -m pip install –-user -r requirements.txt
  • Finally run cmd - python manage.py runserver

Buy Now ₹501

Student Login Details :
username: student@2
password: visg123456
teacher  Login Details :
username: teacher@2
password: visg123456
Admin  Login Details :
Link - http://127.0.0.1:8000/admin
username: visg
password: visg123456

Sunday 14 June 2020

Django Project on Medical Shop Management System





Medical Store Database Management System using Django
The main objective of the Django Project on Medical Shop Management System is to manage the details of Sells, Medicines, Stocks, Company,Inventory. It manages all the information about Sells, Medical Shop, Inventory, Sells. The project is totally built at administrative end and thus only the administrator is guaranteed the access. The purpose of the project is to build an application program to reduce the manual work for managing the Sells, Medicines, Medical Shop, Stocks. It tracks all the details about the Stocks, Company, Inventory.

Functionalities Provided By Django Project On Medical Shop Management System Are As Follows:

Dealer Management.

  • Add Dealer.
  • View Dealers.

Medicine  Management.

  • Add Medicine.
  • View Medicine.

Employees Management.

  • Add Employees.
  • View Employees.

Customers Management.

  • Add Customers.
  • View Customers

Purchase  Management.

  • New Purchase .
  • View All Purchase

Download Source Code

Installation Steps Django Project On Medical Shop Management System

Setting up the project:
Download the project zip file. Extract it.
Install Python3 in your system. Download the latest version. https://www.python.org/downloads/
Install django in your system using the following command:
pip install Django==1.11.6
Current version is Django 2.0.9 but this project uses the older version.
You can make use of any text editor such as Sublime, Atom, Pycharm, Webstorm etc. The link for Pycharm is mentioned below: Download the community(free) version. https://www.jetbrains.com/pycharm/download/#section=windows
Open Pycharm, open the extracted project folder in Pycharm. Go to Pycharm terminal and enter the following command:
python manage.py runserver
URL routing is handled in the file: pharma/urls.py
All the functionalities such as Create, update, delete, retrieve are present in the file: pharma/views.py
The database by default used with Django is SQLite3:
The database models are created in the file: pharma/models.py
Iff any changes are made in the models.py file such as adding, deleting fields or new tables, run the following two commands:
python manage.py makemigrations pharma python manage.py migrate
All the SQL queries are generated by Django implicitly. You can view the SQL commands using the following command:
python manage.py sqlmigrate pharma migration_name
"migration_name" is the file name generated during each Model file update, choose any filename from the folder and enter in the command to see the SQL commands of that update.

Thursday 4 June 2020

Income Tax and EMI Calculator Android App Project





Income Tax Calculator calculates tax and salary deductions with detailed tax calculations and explanations based on the latest Indian tax rates .This calculator is for the salaried individuals resident etc.
build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.cmt.taxcalculator"
        minSdkVersion 23
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:design:28.0.0'
}

Download Source Code

Download APK File