変換 | Json Vcf
def vcf_to_json(vcf_file_path): contacts = [] current_contact = None current_prop = None
Converting between JSON and VCF is a common task when migrating contact data between web applications (which often use JSON) and legacy or mobile systems (which rely on VCF). This guide covers both directions of conversion, including specifications, code examples, edge cases, and tooling. 2.1 The VCF (vCard) Format A simple vCard 4.0 example: json vcf 変換
lines.append("END:VCARD") return "\n".join(lines) with open('contacts.json') as f: contacts = json.load(f) []): ptype = phone.get('type'
# Organization if 'organization' in contact: lines.append(f"ORG:contact['organization']") '').upper() if ptype: lines.append(f"TEL
# Phones with types for phone in contact.get('phone', []): ptype = phone.get('type', '').upper() if ptype: lines.append(f"TEL;TYPE=ptype:phone['number']") else: lines.append(f"TEL:phone['number']")
"version": "4.0", "fullName": "John Doe", "telephone": [ "type": ["work", "voice"], "value": "+1-555-123-4567" ], "email": ["john.doe@example.com"]