<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
Hi,<br>
<br>
I am using Vobject to parse vcards. I have an issue to access some
field.<br>
<br>
Here is the vcard:<br>
<b>BEGIN:VCARD<br>
VERSION:3.0<br>
FN:Daffy Duck Knudson (with Bugs Bunny and Mr. Pluto)<br>
N:Knudson;Daffy Duck (with Bugs Bunny and Mr. Pluto)<br>
NICKNAME:gnat and gnu and pluto<br>
BDAY;value=date:02-10<br>
TEL;type=HOME:<font color="#3333ff">+01-(0)2-765.43.21</font><br>
TEL;type=CELL:<font color="#33cc00">+01-(0)5-555.55.55</font><br>
ACCOUNT;type=HOME:010-1234567-05<br>
ADR;type=HOME:;;Haight Street 512\;\nEscape\,
Test;Novosibirsk;;80214;Gnuland<br>
TEL;type=HOME:+01-(0)2-876.54.32<br>
ORG:University of Novosibirsk\, Department of Octopus<br>
  Parthenogenesis<br>
END:VCARD</b><br>
<br>
I can access the most of the fields, example:<br>
&gt;&gt;&gt; print vcard.n<br>
&lt;N{} Daffy Duck (with Bugs Bunny and Mr. Pluto)  Knudson &gt;<br>
&gt;&gt;&gt; print vcard.n.value.family<br>
Knudson<br>
&gt;&gt;&gt; print vcard.bday<br>
&lt;BDAY{u'VALUE': [u'date']}02-10&gt;<br>
&gt;&gt;&gt; print vcard.tel<br>
&lt;TEL{u'TYPE': [u'HOME']}<b><font color="#3333ff">+01-(0)2-765.43.21</font></b>&gt;<br>
&gt;&gt;&gt; print vcard.tel.value<br>
<b><font color="#3333ff">+01-(0)2-765.43.21</font></b><br>
<br>
<b>However, this vcard has 3 phone numbers and I can only access the
first one (using vcard.tel), so how can I access the two other phone
number ?</b><br>
<br>
Thank you for your help and Best Regards,<br>
<br>
Fred.<br>
</body>
</html>