diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/contact.py b/deltachat-rpc-client/src/deltachat_rpc_client/contact.py index 8f3c09d7f..eefa474f1 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/contact.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/contact.py @@ -60,3 +60,6 @@ class Contact: self.account, self._rpc.create_chat_by_contact_id(self.account.id, self.id), ) + + def make_vcard(self) -> str: + return self._rpc.make_vcard(self.account.id, [self.id])