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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
J
Java Code Geeks
I
InfoQ
V
Visual Studio Blog
M
MIT News - Artificial intelligence
H
Help Net Security
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
A
About on SuperTechFans
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
WordPress大学
WordPress大学

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - ninyawee/healthkit-from-backup-to-sqlite: Conver...
circleoncirc · 2026-06-17 · via 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