{"id":24388843,"url":"https://github.com/sandip-kanzariya/webscraping_sdp","last_synced_at":"2026-04-10T02:02:29.397Z","repository":{"id":271918787,"uuid":"749477551","full_name":"Sandip-Kanzariya/WebScraping_SDP","owner":"Sandip-Kanzariya","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-03T16:28:29.000Z","size":75,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-19T14:59:00.636Z","etag":null,"topics":["flask","flask-sqlalchemy","flaskapi","medicine","mysql-database","onlinedatabase","postgresql","python","render","scraping-websites","sqlite-database"],"latest_commit_sha":null,"homepage":"https://webscraping-sdp.onrender.com","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/Sandip-Kanzariya.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-01-28T17:41:31.000Z","updated_at":"2024-05-15T05:12:19.000Z","dependencies_parsed_at":"2025-01-19T14:57:44.408Z","dependency_job_id":null,"html_url":"https://github.com/Sandip-Kanzariya/WebScraping_SDP","commit_stats":null,"previous_names":["sandip-kanzariya/webscraping_sdp"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sandip-Kanzariya%2FWebScraping_SDP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sandip-Kanzariya%2FWebScraping_SDP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sandip-Kanzariya%2FWebScraping_SDP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sandip-Kanzariya%2FWebScraping_SDP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sandip-Kanzariya","download_url":"https://codeload.github.com/Sandip-Kanzariya/WebScraping_SDP/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243301125,"owners_count":20269286,"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":["flask","flask-sqlalchemy","flaskapi","medicine","mysql-database","onlinedatabase","postgresql","python","render","scraping-websites","sqlite-database"],"created_at":"2025-01-19T14:57:40.494Z","updated_at":"2025-12-28T05:34:08.767Z","avatar_url":"https://github.com/Sandip-Kanzariya.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MedMinear Backend [RESTfull APIs using FLASK]\n\n\u003e [Frontend](https://github.com/DigitalGit2003/WebScraping_Frontend)\n\n# Run Project\n\n## Setting up a Python Virtual Environment and Installing Packages (py = python)\n\n### Create Virtual Environment\n\n```bash\npy -m venv .venv\n```\n\n### Activate Virtual Environment\n\n```bash\n.venv\\Scripts\\activate\n```\n\n### Install Packages From requirements.txt\n\n```bash\npip install -r requirements.txt\n```\n\n### Environment Variable Setup (env.env file make changes as per your need)\n```py\nFLASK_APP=app\nFLASK_DEBUG=True\nFLASK_RUN_PORT=5050\nFLASK_RUN_HOST=0.0.0.0\n\n# For Remote PostgreSQL Database : postgresql://username:password@hostname:port/database_name\nSQLALCHEMY_DATABASE_URI=POSTGRESQL_REMOTE_URL\n\nJWT_SECRET_KEY = SELECTED_SECRET_KEY\nIMAGE_UPLOAD_FOLDER= PATH\nTESSERACT_CMD = PATH\nFLASK_SECRET_KEY = SELECTED_FLASK_SECRET_KEY\n\n# For Different Databases\n\n# For local SQLite Database\n# SQLALCHEMY_DATABASE_URI=sqlite:///db.sqlite3 \n\n# For local MySQL Database\n# SQLALCHEMY_DATABASE_URI=mysql://root:@localhost/flask \n# For Remote MySQL Database\n# SQLALCHEMY_DATABASE_URI=MYSQL_FREEDATABASE_URL\n\n# For local PostgreSQL Database\n# SQLALCHEMY_DATABASE_URI=POSTGRESQL_LOCAL_URL\n```\n\n### Install as per your database \n|Database|Pip|\n|---|---|\n|PostgreSQL|pip install psycopg2 or pip install psycopg2-binary|\n|MySQL|pip install mysqlclient|\n\n\n### Database set up (**If required then only**)\n```bash\nflask shell\nfrom app import db\ndb.create_all()\n```\n\n### Migration (**If required then only**)\n\n```shell\nflask db init\nflask db migrate -m \"message\"\nflask db upgrade\n```\n\n### Run Flask App (script_file_name = app.py)\n```bash\nflask --app script_file_name run\nor\npy script_file_name.py\n```\n\n## Team Members\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\n        \u003ca href=\"https://github.com/DigitalGit2003\"\u003e\n            \u003cimg src=\"https://github.com/DigitalGit2003.png\" width=\"100px;\" alt=\"\"/\u003e\n            \u003cbr /\u003e\n            \u003csub\u003e\u003cb\u003eGautam Lathiya\u003c/b\u003e\u003c/sub\u003e\n        \u003c/a\u003e\n        \u003cbr /\u003e\n        \u003ca href=\"https://github.com/Sandip-Kanzariya/WebScraping_SDP/commits?author=DigitalGit2003\" title=\"Code\"\u003e💻\u003c/a\u003e\n    \u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\n        \u003ca href=\"https://github.com/Sandip-Kanzariya\"\u003e\n            \u003cimg src=\"https://github.com/Sandip-Kanzariya.png\" width=\"100px;\" alt=\"\"/\u003e\n            \u003cbr /\u003e\n            \u003csub\u003e\u003cb\u003eSandip Kanzariya\u003c/b\u003e\u003c/sub\u003e\n        \u003c/a\u003e\n        \u003cbr /\u003e\n        \u003ca href=\"https://github.com/Sandip-Kanzariya/WebScraping_SDP/commits?author=Sandip-Kanzariya\" title=\"Documentation\"\u003e💻\u003c/a\u003e\n    \u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\n        \u003ca href=\"https://github.com/Prit-mmonpara\"\u003e\n            \u003cimg src=\"https://github.com/Prit-mmonpara.png\" width=\"100px;\" alt=\"\"/\u003e\n            \u003cbr /\u003e\n            \u003csub\u003e\u003cb\u003ePrit Monpara\u003c/b\u003e\u003c/sub\u003e\n        \u003c/a\u003e\n        \u003cbr /\u003e\n        \u003ca href=\"https://github.com/Sandip-Kanzariya/WebScraping_SDP/commits?author=Prit-mmonpara\" title=\"Documentation\"\u003e💻\u003c/a\u003e\n    \u003c/td\u003e\n    \u003c/tr\u003e\n\u003c/table\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsandip-kanzariya%2Fwebscraping_sdp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsandip-kanzariya%2Fwebscraping_sdp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsandip-kanzariya%2Fwebscraping_sdp/lists"}