{"id":22369233,"url":"https://github.com/dev1912-sbt/book-library-management-app","last_synced_at":"2026-05-18T09:31:47.149Z","repository":{"id":232767765,"uuid":"785122785","full_name":"dev1912-sbt/book-library-management-app","owner":"dev1912-sbt","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-11T08:41:12.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-09T14:59:49.538Z","etag":null,"topics":["book-library","book-management-system","mysql","mysql-connector-python","python","tkinter"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dev1912-sbt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-11T08:39:41.000Z","updated_at":"2024-04-11T08:42:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"1a3fb289-1f43-43db-aeae-4b30070fd284","html_url":"https://github.com/dev1912-sbt/book-library-management-app","commit_stats":null,"previous_names":["dev1912-sbt/book-library-management-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dev1912-sbt/book-library-management-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev1912-sbt%2Fbook-library-management-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev1912-sbt%2Fbook-library-management-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev1912-sbt%2Fbook-library-management-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev1912-sbt%2Fbook-library-management-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dev1912-sbt","download_url":"https://codeload.github.com/dev1912-sbt/book-library-management-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev1912-sbt%2Fbook-library-management-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33172576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["book-library","book-management-system","mysql","mysql-connector-python","python","tkinter"],"created_at":"2024-12-04T19:19:11.002Z","updated_at":"2026-05-18T09:31:47.129Z","avatar_url":"https://github.com/dev1912-sbt.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Book Library Management\n\n## Install dependencies\n\n```bash\npip install -r requirements.txt\n```\n\n## Setup DB\n\n1. Create Database:\n\n    ```sql\n    CREATE DATABASE dbmsproject;\n    ```\n\n2. Create Tables:\n\n    - `Customer`:\n\n        ```sql\n        create table Customer (\n          id int primary key auto_increment,\n          first_name varchar(255) not null,\n          last_name varchar(255) not null,\n          address varchar(255) not null,\n          phone_no varchar(10) not null\n        );\n\n        insert into Customer (first_name, last_name, address, phone_no) values ('John', 'Doe', '123 Main St, Anytown', '1234567890');\n        insert into Customer (first_name, last_name, address, phone_no) values ('Jane', 'Smith', '456 Elm St, Somewhere', '9876543210');\n        insert into Customer (first_name, last_name, address, phone_no) values ('Alice', 'Johnson', '789 Oak St, Nowhere', '4567890123');\n        insert into Customer (first_name, last_name, address, phone_no) values ('Bob', 'Williams', '321 Pine St, Anyplace', '7890123456');\n        insert into Customer (first_name, last_name, address, phone_no) values ('Emily', 'Brown', '654 Maple St, Everywhere', '2345678901');\n        ```\n\n    - `Book`:\n\n        ```sql\n        create table Book (\n          isbn int primary key auto_increment,\n          title varchar(255) not null,\n          price real not null,\n          author int not null\n        );\n\n        insert into Book (title, price, author) values ('The Great Gatsby', 10.99, 1);\n        insert into Book (title, price, author) values ('To Kill a Mockingbird', 9.99, 2);\n        insert into Book (title, price, author) values ('1984', 11.99, 3);\n        insert into Book (title, price, author) values ('Pride and Prejudice', 8.99, 4);\n        insert into Book (title, price, author) values ('The Catcher in the Rye', 12.99, 5);\n        ```\n\n    - `_Order`:\n\n        ```sql\n        create table _Order (\n          id int primary key auto_increment,\n          total real not null\n        );\n\n        insert into _Order (total) values (50.75);\n        insert into _Order (total) values (35.25);\n        insert into _Order (total) values (28.50);\n        insert into _Order (total) values (42.00);\n        insert into _Order (total) values (65.80);\n        ```\n\n    - `Category`:\n\n        ```sql\n        create table Category (\n          id int primary key auto_increment,\n          name varchar(255) not null unique\n        );\n\n        insert into Category (name) values ('Fiction');\n        insert into Category (name) values ('Non-fiction');\n        insert into Category (name) values ('Mystery');\n        insert into Category (name) values ('Science Fiction');\n        insert into Category (name) values ('Romance');\n        ```\n\n    - `Publisher`:\n\n        ```sql\n        create table Publisher (\n          license varchar(15) not null unique,\n          first_name varchar(255),\n          last_name varchar(255),\n          address varchar(255)\n        );\n\n        insert into Publisher (license, first_name, last_name, address) values ('ABC123', 'Harper', 'Lee', '789 Broadway, Bigcity');\n        insert into Publisher (license, first_name, last_name, address) values ('DEF456', 'George', 'Orwell', '456 Park Ave, Metropolis');\n        insert into Publisher (license, first_name, last_name, address) values ('GHI789', 'Jane', 'Austen', '123 High St, Smalltown');\n        insert into Publisher (license, first_name, last_name, address) values ('JKL012', 'J.D.', 'Salinger', '101 Avenue Rd, Townsville');\n        insert into Publisher (license, first_name, last_name, address) values ('MNO345', 'F. Scott', 'Fitzgerald', '246 Main St, Villageton');\n        ```\n\n    - `Payment`:\n\n        ```sql\n        create table Payment (\n          id int primary key auto_increment,\n          amt real not null,\n          notes varchar(255)\n        );\n        ```\n\n3. Start Application.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev1912-sbt%2Fbook-library-management-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdev1912-sbt%2Fbook-library-management-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev1912-sbt%2Fbook-library-management-app/lists"}