├── .env.example ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── assets ├── lm-ollama-support.png └── xml-csv-logo.png ├── requirements.txt └── src └── applehealth.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krumjahn/applehealth/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krumjahn/applehealth/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krumjahn/applehealth/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krumjahn/applehealth/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krumjahn/applehealth/HEAD/README.md -------------------------------------------------------------------------------- /assets/lm-ollama-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krumjahn/applehealth/HEAD/assets/lm-ollama-support.png -------------------------------------------------------------------------------- /assets/xml-csv-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krumjahn/applehealth/HEAD/assets/xml-csv-logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krumjahn/applehealth/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/applehealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krumjahn/applehealth/HEAD/src/applehealth.py --------------------------------------------------------------------------------