Skip to content

Commit 7c11b6c

Browse files
authored
Create README.md
1 parent 676ac55 commit 7c11b6c

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Library-Manager-python-
2+
3+
AVBIL Library Manager
4+
Software Requirements:
5+
• Python 3.x
6+
• MySQL
7+
• Pip (To install modules)
8+
Python (Required Modules)
9+
• Tkinter ( pip install tk )
10+
• PyMySQL ( pip install pymysql )
11+
• Pillow ( pip install pillow )
12+
Or run “modules.bat” in prerequisites folder
13+
MySQL Requirements
14+
• Database with two tables: Book table and Issue table
15+
Or run these 4 commands in MySQL Commandline Client one by one:
16+
create database db;
17+
use db;
18+
create table books(bid varchar(20) primary key, title varchar(30), author varchar(30), status varchar(30));
19+
create table books_issued(bid varchar(20) primary key, issuedto varchar(30));
20+
Authentication
21+
Put your MySQL connection details on the credentials.txt in the following format:
22+
HOST
23+
USER
24+
PASSWORD
25+
DATABASE NAME
26+
Do not change anything if using defaults in MySQL.
27+
How to Launch
28+
Click on launch.bat
29+
OR
30+
Open main.py in a python compiler of choice.

0 commit comments

Comments
 (0)