gpt4 book ai didi

python - 使用 Python 的 Vcard 解析器

转载 作者:太空狗 更新时间:2023-10-30 01:41:00 30 4
gpt4 key购买 nike

我正在解析我的 vcard 信息(复制到 txt 文件)以提取 name:number 并将其放入字典中。

数据样本:

BEGIN:VCARD  VERSION:2.1  N:MEO;Apoio;;;  FN:Apoio MEO  TEL;CELL;PREF:1696  TEL;CELL:162 00  END:VCARD  BEGIN:VCARD  VERSION:2.1  N:estrangeiro;Apoio MEO;no;;  FN:Apoio MEO no estrangeiro  TEL;CELL;PREF:+35196169000  END:VCARD  
import re
file = open('Contacts.txt', 'r')
contacts = dict()

for line in file:
name = re.findall('FN:(.*)', line)
nm = ''.join(name)

if len(nm) == 0:
continue
contacts[nm] = contacts.get(nm)
print(contacts)

有了这个,我得到了一本包含名称的字典,但对于数字,我得到的是 None。 {'name': None, 'name': None}.

我可以用 re 做这个吗?要使用相同的 re.findall 表达式提取姓名和号码?

最佳答案

你最好使用已经存在的 existing library,而不是重新发明轮子:

pip install vobject

然后在 python 中

>>> import vobject
>>> s = """\
... BEGIN:VCARD
... VERSION:2.1
... N:MEO;Apoio;;;
... FN:Apoio MEO
... TEL;CELL;PREF:0123456789
... TEL;CELL:0123456768
... END:VCARD
... BEGIN:VCARD
... VERSION:2.1
... N:estrangeiro;Apoio MEO;no;;
... FN:Apoio MEO no estrangeiro
... TEL;CELL;PREF:+0123456789
... END:VCARD """
>>> vcard = vobject.readOne(s)
>>> vcard.prettyPrint()
VCARD
VERSION: 2.1
TEL: 1696
TEL: 162 00
FN: Apoio MEO
N: Apoio MEO

大功告成!

所以如果你想用它制作一本字典,你需要做的就是:

>>> {vcard.contents['fn'][0].value: [tel.value for tel in vcard.contents['tel']] }
{'Apoio MEO': ['1696', '162 00']}

所以你可以把所有这些都变成一个函数:

def parse_vcard(path):
with open(path, 'r') as f:
vcard = vobject.readOne(f.read())
return {vcard.contents['fn'][0].value: [tel.value for tel in vcard.contents['tel']] }

从那里,您可以改进代码以在单个 vobject 文件中处理多个 vcard,并用更多手机更新 dict .

N.B.:我留给你一个练习,将上面的代码从读取一个文件中的一个且仅一个 vcard 更改为可以读取多个 vcard 的代码。提示:read the documentation of vobject .

N.B.:我正在使用你的数据,我认为无论你写什么,都是没有意义的。但有疑问,我已经修改了电话号码。


只是为了好玩,让我们看看您的代码。首先是缩进问题,但我认为这是因为复制/粘贴错误 ☺。

① import re
② file = open('Contacts.txt', 'r')
③ contacts = dict()

④ for line in file:
⑤ name = re.findall('FN:(.*)', line)
⑥ nm = ''.join(name)

⑦ if len(nm) == 0:
⑧ continue
⑨ contacts[nm] = contacts.get(nm)

⑩ print(contacts)

首先,第②行有两个问题。您正在使用 open() 打开文件,但并未关闭文件。如果您调用此函数来打开十亿个文件,您将耗尽系统的可用文件描述符,因为您没有关闭这些文件。作为一个好习惯,您应该始终使用 with 构造:

with open('...', '...') as f:
… your code here …

它会为您处理 fd,并更好地显示您可以在哪里使用打开的文件。

第二个问题是您正在调用变量 file,它隐藏了 file 类型。希望 file 类型很少被使用,但这是一个坏习惯,因为有一天您可能不理解由于您用变量隐藏了类型而发生的错误。只是不要使用它,总有一天它会为您省去麻烦。

第 ⑤ 行和第 ⑥ 行,您在每一行上应用了一个 re.findall 正则表达式。您最好使用 re.match(),因为您已经遍历了每一行,并且您不会在该行中包含 FN: something。这将使您避免不必要的 ''.join(name) 但与其对这种简单的事情使用正则表达式,不如使用 str.split() :

if 'FN:' in line:
name = line.split(':')[-1]

第⑦行不仅是多余的——如果你使用上面的if,而且实际上是错误的。因为那样您将跳过其中没有 FN: 的所有行,这意味着您将永远不会提取电话号码,只会提取名称。

最后第⑧行完全没有意义。基本上,您所做的相当于:

if nm in contacts.keys():
contacts[nm] = contacts[nm]
else:
contacts[nm] = None

总而言之,在您的代码中,您所做的只是提取姓名,您甚至不必理会电话号码。所以当你说:

With this I am getting a dictionary with names but for numbers I am getting None

这没有意义,因为您实际上并不是要提取电话号码。

Can I do this with re? To extract both name and number with the same re.findall expression?

是的,您可以使用看起来像(未经测试的正则表达式,很可能无法正常工作)的东西,遍历整个文件,或者至少对于每个 vcard:

FN:(?P<name>[^\n]*).*TEL[^:]*:(?P<phone>[^\n])

但是,当您拥有一个完美适合您的库时,何必费心呢!

关于python - 使用 Python 的 Vcard 解析器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35825919/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com