Skip to content

Design and implement mySQL database and create UI to query, edit and display data using Python.

Notifications You must be signed in to change notification settings

mohite-abhi/Military-Intelligence-Database-Software

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MilitaryIntelligenceSoftware

Introduction Design and implement mySQL database and create UI to query, edit and display data using Python. This is a mysql project implemented with the help of python tkinter for ui.

Steps followed for creating the project

  1. Identify the data required such as list of people’s names, addresses, dob, list of organizations etc. and create table formats for them.
  2. Identify relations between those tables if any and make an er diagram using this data.
  3. Try to remove any redundancy and normalize the er diagram.
  4. Design an user interface prototype on paper/ paint program on computer to finalize the UI.
  5. Design the tables in mysql and decide foreign keys according to er diagram.
  6. Design the UI using tkinter in python and then connect them using mysql connector.

Let’s build Run this .py file with internet turned on, after reading below steps :
https://drive.google.com/file/d/1FlTJ_uL8k-yzM3rOdMdSlkZYtqJG_bY4/view?usp=sharing (size 77kb)

Running the python file shared above will launch the software, if your internet is connected and you have python installed in your system along with the following python library dependencies:

  • tk or tkinter
  • python-mysql-connector
  • pillow
  • numpy

    You can install these libraries with help of pip on windows/linux/macos. (mysql connector is installed with package manager in tested arch based linux machine)

    Our mysql database temporarily hosted online at https://www.freemysqlhosting.net, if it is expired then this won’t work, so in that case use this .sql file to import the database somewhere
    https://drive.google.com/file/d/1_DX59FUJD8wmMUoKzv2Zx_X7xTg9Ty3I/view?usp=sharing
    and then change these variables inside .py file to your own credentials.
    18 globalhost = "sql12.freemysqlhosting.net"
    19 globaluser="sql12352363"
    20 globalpwd="qssD26v9uQ"
    21 globaldb="sql12352363"

About

Design and implement mySQL database and create UI to query, edit and display data using Python.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages