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 520B

1234567891011121314151617181920212223
  1. from typing import Any, List
  2. from pydantic import BaseModel
  3. from million.model.message import Message
  4. from million.model.participant import Participant
  5. class Image(BaseModel):
  6. creation_timestamp: int
  7. uri: str
  8. class JoinableMode(BaseModel):
  9. mode: int
  10. link: str
  11. class FacebookExport(BaseModel):
  12. messages: List[Message]
  13. participants: List[Participant]
  14. title: str
  15. is_still_participant: bool
  16. thread_path: str
  17. magic_words: List[Any]
  18. image: Image
  19. joinable_mode: JoinableMode