from jmail import JmailClient
client = JmailClient()
# All emails with full body text
df = client.emails()
# Network-only (no body text, much smaller download)
df = client.emails(slim=True)
# Documenti con testo completo estratto (scarica file frammentati)
docs = client.documents(include_text=True)
# Photos, people, and facial recognition data
photos = client.photos()
people = client.people()
faces = client.photo_faces()
# iMessage conversations and messages
convos = client.imessage_conversations()
messages = client.imessage_messages()
# Crowd-sourced star counts
stars = client.star_counts()
# Release batch metadata
batches = client.release_batches()