vcf-vcard

Reading vcf file data using python and re library

Reading vcf file data using python and re library Question: Here is content inside .vcf file data. BEGIN:VCARD VERSION:4.0 N:Muller;CCCIsabella;;; FN:Muller ORG:Bubba Gump Shrimp Co. TITLE:Shrimp Man PHOTO;MEDIATYPE=image/gif:http://www.example.com/dir_photos/my_photo.gif TEL;TYPE=work,voice;VALUE=uri:tel:+16829185770 REV:20080424T195243Z END:VCARD BEGIN:VCARD VERSION:4.0 N:Mraz;CCCEdwardo;;; FN:Mraz ORG:Bubba Gump Shrimp Co. TITLE:Shrimp Man PHOTO;MEDIATYPE=image/gif:http://www.example.com/dir_photos/my_photo.gif TEL;TYPE=work,voice;VALUE=uri:tel:+18083155095 REV:20080424T195243Z END:VCARD BEGIN:VCARD VERSION:4.0 N:Reynolds;CCCBrant;;; FN:Reynolds ORG:Bubba Gump Shrimp Co. TITLE:Shrimp Man …

Total answers: 3

Creating a multiple phone vCard using vObject

Creating a multiple phone vCard using vObject Question: im using vObject to create a vCard. Everything works well except I can’t add multiple phone numbers. Right now i’m doing this: v.add(‘tel’) v.tel.type_param = ‘WORK’ v.tel.value = employee.office_phone v.add(‘tel’) v.tel.type_param = ‘FAX’ v.tel.value = employee.fax As it’s working as a key value, the work phone is …

Total answers: 2