blob: 45aa2177fd0d824efe0ac5d57f34bb9dafea5f83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import re
class Contacts:
def __init__(self):
self.contacts = []
def add(self, mbox_mail):
contact = mbox_mail.get_from()
self.contacts.append(Contact(contact))
def search(self, query):
contacts_query = re.compile(query)
return [contact.__dict__ for contact in self.contacts if contacts_query.match(contact.addresses[0])]
class Contact:
def __init__(self, contact):
self.addresses = [contact]
self.name = ''
|