{"id":23116442,"url":"https://github.com/mkptechnicals/vaccine-management-system-python","last_synced_at":"2026-04-29T10:31:51.242Z","repository":{"id":228164294,"uuid":"773313991","full_name":"MKPTechnicals/Vaccine-Management-System-PYTHON","owner":"MKPTechnicals","description":"Vaccination center management system: registers, tracks, and searches vaccination data. Users can register for doses, record vaccinations, and search by Aadhaar number.","archived":false,"fork":false,"pushed_at":"2024-03-19T07:43:58.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-08T06:08:24.681Z","etag":null,"topics":["latest-projects","management-system","mysql","mysql-client","mysql-connector","mysql-database","mysql-server","mysqli","python","python-project","python-projects","python3","vaccine","vaccine-appointments","vaccine-availability","vaccine-management-system","vaccine-slots","vaccine-tracker"],"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/MKPTechnicals.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-03-17T10:33:47.000Z","updated_at":"2025-01-01T10:43:57.000Z","dependencies_parsed_at":"2025-04-04T01:27:44.816Z","dependency_job_id":null,"html_url":"https://github.com/MKPTechnicals/Vaccine-Management-System-PYTHON","commit_stats":null,"previous_names":["mkptechnicals/vaccine-management-system-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MKPTechnicals/Vaccine-Management-System-PYTHON","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MKPTechnicals%2FVaccine-Management-System-PYTHON","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MKPTechnicals%2FVaccine-Management-System-PYTHON/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MKPTechnicals%2FVaccine-Management-System-PYTHON/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MKPTechnicals%2FVaccine-Management-System-PYTHON/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MKPTechnicals","download_url":"https://codeload.github.com/MKPTechnicals/Vaccine-Management-System-PYTHON/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MKPTechnicals%2FVaccine-Management-System-PYTHON/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32421562,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T06:29:02.080Z","status":"ssl_error","status_checked_at":"2026-04-29T06:29:00.631Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["latest-projects","management-system","mysql","mysql-client","mysql-connector","mysql-database","mysql-server","mysqli","python","python-project","python-projects","python3","vaccine","vaccine-appointments","vaccine-availability","vaccine-management-system","vaccine-slots","vaccine-tracker"],"created_at":"2024-12-17T04:16:14.712Z","updated_at":"2026-04-29T10:31:51.225Z","avatar_url":"https://github.com/MKPTechnicals.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vaccination Center Management System\n\n[![Python](https://img.shields.io/badge/Python-3.x-blue.svg)](https://www.python.org/)\n[![MySQL](https://img.shields.io/badge/MySQL-Database-blue.svg)](https://www.mysql.com/)\n\nThis Python script facilitates the management of a vaccination center. It allows registration for vaccination, entry of vaccinated individuals, and searching vaccination records by Aadhaar number.\n\n## Features\n\n- **Registration**: Users can register for vaccination by providing their details such as name, Aadhaar number, city, contact number, dose number, and vaccine type (Covaxin or Covishield).\n- **Vaccination Entry**: Authorized personnel can record the entry of vaccinated individuals by providing necessary details including name, Aadhaar number, city, contact number, and vaccine type.\n- **Search**: Allows searching vaccination records by Aadhaar number to retrieve information about the doses administered to the individual.\n\n## Setup\n\n1. Install Python if not already installed.\n2. Install the required `mysql.connector` module using pip: `pip install mysql-connector-python`.\n3. Replace placeholder database credentials with your actual database details in the script.\n4. Execute the script in a Python environment.\n\n## Personal Information Replacement\n\nTo ensure the security of your personal information and database credentials, follow these steps to replace the placeholder values with your actual data:\n\n1. **Database Credentials:**\n   - Open the script and locate the database connection section.\n   - Replace `\"HOST\"`, `\"USERNAME\"`, `\"PASSWORD\"`, and `\"DATABASE\"` with your actual database hostname, username, password, and database name respectively.\n\n2. **PIN Code (Optional):**\n   - If you want to change the PIN code required for certain operations, locate the PIN verification section.\n   - Update the PIN value (currently set to `1265`) with your desired PIN code.\n\n3. **Execution:**\n   - Once all personal information is replaced, save the changes to the script.\n   - Execute the script in your Python environment.\n\nBy following these steps, you can safely manage and operate the vaccination center management system with your own database and PIN code.\n\n## Creating Database Tables\n\nBefore using the script, make sure to create the necessary tables in your MySQL database with the following schema:\n\n```sql\nCREATE TABLE DOSE_1_COVAXIN (\n    CITY VARCHAR(50) NOT NULL,\n    CONTACT_NUMBER BIGINT NOT NULL,\n    DATE DATETIME NOT NULL,\n    NAME VARCHAR(50) NOT NULL,\n    AADHAAR BIGINT NOT NULL\n);\n\nCREATE TABLE DOSE_1_COVISHIELD (\n    NAME VARCHAR(50) NOT NULL,\n    DATE DATETIME NOT NULL,\n    CONTACT_NUMBER BIGINT NOT NULL,\n    CITY VARCHAR(50) NOT NULL,\n    AADHAAR BIGINT NOT NULL\n);\n\nCREATE TABLE DOSE_2_COVAXIN (\n    AADHAAR BIGINT NOT NULL,\n    CITY VARCHAR(50) NOT NULL,\n    CONTACT_NUMBER BIGINT NOT NULL,\n    DATE DATETIME NOT NULL,\n    NAME VARCHAR(50) NOT NULL\n);\n\nCREATE TABLE DOSE_2_COVISHIELD (\n    CITY VARCHAR(50) NOT NULL,\n    NAME VARCHAR(50) NOT NULL,\n    DATE DATETIME NOT NULL,\n    CONTACT_NUMBER BIGINT NOT NULL,\n    AADHAAR BIGINT NOT NULL\n);\n\nCREATE TABLE REGISTRATION_COVAXIN (\n    AADHAAR BIGINT NOT NULL,\n    CITY VARCHAR(50) NOT NULL,\n    CONTACT_NUMBER BIGINT NOT NULL,\n    DATE DATETIME NOT NULL,\n    DOSE INT NOT NULL,\n    NAME VARCHAR(50) NOT NULL\n);\n\nCREATE TABLE REGISTRATION_COVISHIELD (\n    AADHAAR BIGINT NOT NULL,\n    CITY VARCHAR(50) NOT NULL,\n    CONTACT_NUMBER BIGINT NOT NULL,\n    DATE DATETIME NOT NULL,\n    DOSE INT NOT NULL,\n    NAME VARCHAR(50) NOT NULL\n);\n```\n\nExecute these SQL statements in your MySQL database to create the necessary tables. Ensure that the table names, field names, and data types match the provided schema.\n\nBy following these steps, you can safely manage and operate the vaccination center management system with your own database and PIN code.\n\n## Usage\n\n1. Run the script.\n2. Select the desired option:\n   - Register for vaccination (Option 1)\n   - Record vaccination entry (Option 2)\n   - Search vaccination records (Option 3)\n   - Exit (Option 0)\n\n## Authors\n\n- [@mkptechnicals](https://www.github.com/MKPTechnicals)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkptechnicals%2Fvaccine-management-system-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmkptechnicals%2Fvaccine-management-system-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkptechnicals%2Fvaccine-management-system-python/lists"}