MCPcopy Create free account
hub / github.com/chatmail/core / create_chat

Method create_chat

python/src/deltachat/account.py:399–401  ·  view source on GitHub ↗

Create a 1:1 chat with Account, Contact or e-mail address.

(self, obj)

Source from the content-addressed store, hash-verified

397 return (x for x in iter_array(dc_array, lambda x: Message.from_db(self, x)) if x is not None)
398
399 def create_chat(self, obj) -> Chat:
400 """Create a 1:1 chat with Account, Contact or e-mail address."""
401 return self.create_contact(obj).create_chat()
402
403 def create_group_chat(
404 self,

Calls 1

create_contactMethod · 0.95