No requiere instalación: usa dependencias en línea de PEP 723 con uv.
Copiar
# Show first 5 emailsuv run clients/python/jmail.py emails --head 5# Vista solo de red (sin cuerpo del mensaje, mucho más pequeña)uv run clients/python/jmail.py emails --slim --head 10# List all dataset URLsuv run clients/python/jmail.py urls
O bien úsalo como biblioteca:
Copiar
from jmail import JmailClientclient = JmailClient()df = client.emails(slim=True)print(df.head())