blob: f997b52771e5410c69c7f1be3a1fb3750d834410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import re
class Contacts:
def __init__(self):
self.contacts = []
def add(self, mbox_mail):
contact = mbox_mail.from_addr
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 = ''
|