Skip to content

Instantly share code, notes, and snippets.

View Bild96's full-sized avatar
🏠
Working from home

Malcolm Bild96

🏠
Working from home
View GitHub Profile
@firaswehbe
firaswehbe / get_weights.py
Created February 4, 2020 19:48
Extracting your weight from Apple Health
#!/usr/bin/env python
# Export the data from Apple Health
# You will get an export.zip file
# Unzip that file. You will get a bunch of files use export.xml
import xml.etree.ElementTree as ET
tree = ET.parse('export.xml')
root = tree.getroot()