Returns
pd.DataFrame with release batch data.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Download release batch metadata
client.release_batches() -> pd.DataFrame
pd.DataFrame with release batch data.
from jmail import JmailClient
client = JmailClient()
batches = client.release_batches()
# Show all batches sorted by release date
print(batches.sort_values("released_at")[["name", "description", "released_at"]])
| Column | Type | Description |
|---|---|---|
id | int | Batch ID |
name | string | Batch name (e.g., VOL00009, DataSet11) |
description | string | Batch description |
released_at | timestamp | Public release date |
https://data.jmail.world/v1/release_batches.parquet
https://data.jmail.world/v1/release_batches.ndjson.gz
