Skip to content

Instantly share code, notes, and snippets.

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

Stig Brautaset stig

🏠
Working from home
View GitHub Profile
@stig
stig / sbp_stats.py
Last active March 5, 2026 22:22
Parses a SongBook Pro .sbpbackup file and prints venue statistics and song play counts. Requires no dependencies beyond the Python standard library.
#!/usr/bin/env python3
"""
SongBook Pro Backup - Statistics Generator
Analyses gigs, venues, and song play counts from a .sbpbackup file.
Usage: python3 sbp_stats.py [path/to/file.sbpbackup]
"""
import json
import sys
import zipfile