惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
小众软件
小众软件
博客园 - 叶小钗
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
P
Proofpoint News Feed
MyScale Blog
MyScale Blog

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - ninyawee/healthkit-from-backup-to-sqlite: Conver...
circleoncirc · 2026-06-17 · via Hacker News: Show HN

Turn the raw HealthKit database from an iPhone backup into a clean, queryable SQLite file you can browse with Datasette — no slow on-device "Export All Health Data" step required.

This is the missing companion to Simon Willison's healthkit-to-sqlite: that tool ingests the Health app's export.zip (the "Export All Health Data" file). This one reads the raw healthdb_secure.sqlite directly — the store Apple keeps on the device and syncs via iCloud — which you get from an iPhone backup. The raw store is richer and avoids the slow, sometimes-failing on-device XML export entirely.

healthkit-to-sqlite this tool
Input Health app export.zip raw healthdb_secure.sqlite from a backup
Get the input on-device export (slow, can fail/time out) extract once from an encrypted backup
Fidelity re-serialized XML the original store Apple actually keeps
Output SQLite for Datasette SQLite for Datasette
iPhone backup ──> healthdb_secure.sqlite ──[this tool]──> health.db ──> datasette
   (source of truth, read-only)                        (derived, disposable lens)

Why bother

The raw store is faithful but unfriendly: integer type enums with no string table, Apple-absolute timestamps, per-type canonical units, and values split across quantity / original_quantity columns. This tool resolves all of that into one readable database:

  • Readable type names — the data_type integer enum is mapped to names like HeartRate, StepCount, SleepAnalysis (mapping cross-checked against christophhagen/HealthDB and verified against each DB's own row counts).
  • ISO-8601 timestamps — Apple-absolute seconds (since 2001-01-01) converted to UTC; daily rollups bucket on a timezone offset you pass in.
  • Normalized units — pulse rates normalized to bpm (HealthKit stores some types as count/s and others as count/min), distances in metres, energy in kcal.
  • Daily rollupsdaily_steps, daily_distance_km, daily_active_energy, daily_heart_rate, daily_sleep_hours.
  • Provenance — each sample keeps its source device and recorded timezone.

The raw DB is opened read-only and immutable — it is never modified. health.db is fully regenerable: delete it and re-run any time.

Getting the raw database

  1. Make an encrypted local backup of the iPhone (Finder/iTunes, or idevicebackup2). Encryption is required — health data is only included in encrypted backups.
  2. Extract HealthDomain/Health/healthdb_secure.sqlite from the backup (e.g. with iMazing, or a backup-decryption library such as iphone_backup_decrypt).

Usage

Requires uv (the script declares its own deps — none beyond the stdlib — via PEP 723):

./healthkit_from_backup_to_sqlite.py healthdb_secure.sqlite health.db 7
#                                     ^raw (read-only)        ^out     ^UTC offset for daily rollups

All three args are optional (defaults: ./healthdb_secure.sqlite, ./health.db, +0/UTC). Then explore:

What you get

The importer prints a summary as it builds (≈4 s for ~10 years of data). Illustrative run:

built health.db  (220 MB)

row counts:
  quantity_samples   1,300,000
  category_samples      28,000
  workouts                 420

date range: ('2016-09-13 21:21:48', '2026-06-12 03:59:14')

top quantity types:
  ActiveEnergyBurned             460,000
  HeartRate                      220,000
  BasalEnergyBurned              170,000
  StepCount                      148,000
  DistanceWalkingRunning         138,000

…and then the readable, query-ready database. For example, a year-over-year resting heart rate trend is one line of SQL:

SELECT strftime('%Y', start_utc) AS yr,
       round(avg(value)) AS resting_bpm
FROM quantity_samples
WHERE type = 'RestingHeartRate'
GROUP BY yr;
yr    resting_bpm
2019  68
2020  71
...   ...

No enum decoding, no Apple-epoch math, no unit juggling — that's all done.

Schema

Tables

Table What
quantity_samples numeric samples — type, start_utc, end_utc, value, unit, canonical_value, source, tz
category_samples enumerated samples (sleep, stand hours, mindful, symptoms) with decoded value_label
workouts one row per workout — activity, start_utc, end_utc, duration_min, distance_km, source, tz
data_types, workout_types, category_value_labels enum lookups

Viewssamples (unified quantity+category), daily_steps, daily_distance_km, daily_active_energy, daily_heart_rate, daily_sleep_hours.

Example queries

SELECT * FROM daily_heart_rate ORDER BY day DESC LIMIT 30;
SELECT activity, count(*), round(avg(distance_km),2) FROM workouts GROUP BY 1 ORDER BY 2 DESC;
SELECT strftime('%Y',start_utc) yr, round(avg(value)) avg_bpm
  FROM quantity_samples WHERE type='HeartRate' GROUP BY 1;

Notes / gotchas

  • Energy is stored labelled cal in the raw DB but the values are kcal (an Apple labelling quirk); the rollups call it kcal.
  • Unknown_<n> types are enum values not in the map (Apple adds types with new iOS releases) — they still import, just without a friendly name. PRs welcome to extend the map.
  • HealthKit has no single fixed timezone. Each sample keeps its own recorded tz; the daily-rollup views need one offset to bucket by, which is the third CLI argument.
  • Apple Watch metrics (heart rate, resting HR, energy, sleep) only exist for periods the watch was worn — gaps are real, not a bug.

Related

License

MIT