{"id":17948721,"url":"https://github.com/ahmed-safa/medicines-array","last_synced_at":"2026-04-14T10:32:26.432Z","repository":{"id":259255418,"uuid":"877392846","full_name":"AHMED-SAFA/Medicines-Array","owner":"AHMED-SAFA","description":"Django based project on displaying brief details on available Medicines in Bangladesh including their prices.","archived":false,"fork":false,"pushed_at":"2024-10-23T16:29:46.000Z","size":52549,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-09T04:17:18.097Z","etag":null,"topics":["bootstrap5","css","csv","django","html","javascript","python","sqlite"],"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/AHMED-SAFA.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-10-23T15:13:43.000Z","updated_at":"2024-10-23T16:29:49.000Z","dependencies_parsed_at":"2024-10-24T00:15:31.627Z","dependency_job_id":null,"html_url":"https://github.com/AHMED-SAFA/Medicines-Array","commit_stats":null,"previous_names":["ahmed-safa/medicines-array"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AHMED-SAFA%2FMedicines-Array","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AHMED-SAFA%2FMedicines-Array/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AHMED-SAFA%2FMedicines-Array/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AHMED-SAFA%2FMedicines-Array/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AHMED-SAFA","download_url":"https://codeload.github.com/AHMED-SAFA/Medicines-Array/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247026657,"owners_count":20871410,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["bootstrap5","css","csv","django","html","javascript","python","sqlite"],"created_at":"2024-10-29T09:09:22.571Z","updated_at":"2026-04-14T10:32:26.404Z","avatar_url":"https://github.com/AHMED-SAFA.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eMedicine Array\u003c/h1\u003e\n\nMedicine Array is a Django-based web application that briefly details the available medicines in \u003cstrong\u003eBangladesh\u003c/strong\u003e. This project is designed to visualize medicines data efficiently.\n\n\u003cdiv align=\"center\"\u003e\n\n  ![Screenshot (17)](https://github.com/user-attachments/assets/e3f882ea-8cc3-40e2-ab1d-6f9d84386434)\n\n\u003c/div\u003e\n\n## Features\n\n- **View Data**: View the imported data from the database.\n- **Search for medicines**: It includes searching the medicine that is available in the market.\n- **Responsive Design**: Works well on both desktop and mobile devices.\n-\n  \u003cdetails\u003e\n  \u003csummary\u003e\n      \u003cstrong\u003eCSV to SQLite\u003c/strong\u003e\n  \u003c/summary\u003e\n  \u003cbr\u003e \n    Data was imported straight into the SQLite database using a CSV file. The dataset below is used for medical data.\n    \u003cpre\u003e\u003ccode\u003ehttps://www.kaggle.com/discussions/general/311821\u003c/code\u003e\u003c/pre\u003e\n  \u003c/br\u003e\n  \u003c/details\u003e\n  \n\u003ch2\u003eTechnologies Used\u003c/h2\u003e\n\n\u003cul\u003e\n  \u003cli\u003e\u003cstrong\u003eBackend\u003c/strong\u003e: Django 4.x (Python)\u003c/li\u003e\n  \u003cli\u003e\u003cstrong\u003eDatabase\u003c/strong\u003e: SQLite\u003c/li\u003e\n  \u003cli\u003e\u003cstrong\u003eFrontend\u003c/strong\u003e: HTML, CSS, Bootstrap (for responsive design)\u003c/li\u003e\n  \u003cli\u003e\u003cstrong\u003eVersion Control\u003c/strong\u003e: Git\u003c/li\u003e\n\u003c/ul\u003e\n  \n\n### Setup Instructions\n\n1. Clone repository:\n\u003cpre\u003e\u003ccode\u003egit clone https://github.com/AHMED-SAFA/Medicines-Array.git\u003c/code\u003e\u003c/pre\u003e\n\n2. Create and activate a virtual environment:\n\u003cpre\u003e\u003ccode\u003epython -m venv .venv\nsource .venv/Scripts/activate\u003c/code\u003e\u003c/pre\u003e\n\n3. Install the required dependencies:\n\u003cpre\u003e\u003ccode\u003epip install -r requirements.txt\npip install django\u003c/code\u003e\u003c/pre\u003e\n\n4. Apply migrations to set up the SQLite database:\n\u003cpre\u003e\u003ccode\u003epython manage.py migrate\npython manage.py makemigrations\u003c/code\u003e\u003c/pre\u003e\n\n5. Create a superuser to access the Django admin panel:\n\u003cpre\u003e\u003ccode\u003epython manage.py createsuperuser\u003c/code\u003e\u003c/pre\u003e\n\n6. Run the development server:\n\u003cpre\u003e\u003ccode\u003epython manage.py runserver\u003c/code\u003e\u003c/pre\u003e\n\n\u003ch2\u003eLicense\u003c/h2\u003e\n\u003cp\u003eThis project is licensed under the MIT License - see the \u003ca href=\"LICENSE\"\u003eLICENSE\u003c/a\u003e file for details.\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmed-safa%2Fmedicines-array","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahmed-safa%2Fmedicines-array","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmed-safa%2Fmedicines-array/lists"}