Skip to main content
client.people() -> pd.DataFrame
Download people identified through AWS Rekognition facial recognition analysis.

Returns

pd.DataFrame with people data.

Example

from jmail import JmailClient

client = JmailClient()
people = client.people()

# People with the most photo appearances
top = people.sort_values("photo_count", ascending=False).head(20)
print(top[["name", "photo_count"]])

Columns

ColumnTypeDescription
idintUnique person ID
namestringIdentified name
sourcestringDetection source
photo_countintNumber of photos containing this person

Direct URLs

https://data.jmail.world/v1/people.parquet
https://data.jmail.world/v1/people.ndjson.gz