vcard.py 643 B

123456789101112131415161718192021222324252627
  1. def get_orgs():
  2. with open('contacts/data/export.vcf', 'r', encoding='utf-8') as rfh:
  3. full_file = rfh.read()
  4. raw_cards = full_file.split('BEGIN:VCARD')
  5. cards = []
  6. for c in raw_cards:
  7. card = {}
  8. for line in c.split('\n'):
  9. if ':' in line:
  10. k, v = line.split(':', 1)
  11. if ';' in k:
  12. k = k.split(';')[0]
  13. card[k] = v
  14. cards.append(card)
  15. orgs = {}
  16. for c in cards:
  17. if 'FN' in c and 'ORG' in c:
  18. orgs[c['FN']] = c['ORG'].split(';')
  19. return orgs
  20. if __name__ == '__main__':
  21. print(get_orgs())