You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fb_export.py 247B

1234567891011
  1. from typing import List
  2. from pydantic import BaseModel
  3. from million.model.message import Message
  4. from million.model.participant import Participant
  5. class FacebookExport(BaseModel):
  6. messages: List[Message]
  7. participants: List[Participant]