├── DIABETECH-INTELLIGENT DEVICE FOR PREDICTING DIABETES.zip ├── .devcontainer └── devcontainer.json ├── README.md └── streamlit_app.py /DIABETECH-INTELLIGENT DEVICE FOR PREDICTING DIABETES.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santhosh050505/DIABETECH-INTELLIGENT-DEVICE-FOR-PREDICTING-DIABETES/HEAD/DIABETECH-INTELLIGENT DEVICE FOR PREDICTING DIABETES.zip -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Python 3", 3 | // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile 4 | "image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye", 5 | "customizations": { 6 | "codespaces": { 7 | "openFiles": [ 8 | "README.md", 9 | "streamlit_app.py" 10 | ] 11 | }, 12 | "vscode": { 13 | "settings": {}, 14 | "extensions": [ 15 | "ms-python.python", 16 | "ms-python.vscode-pylance" 17 | ] 18 | } 19 | }, 20 | "updateContentCommand": "[ -f packages.txt ] && sudo apt update && sudo apt upgrade -y && sudo xargs apt install -y