Skip to content
Novus Examples
vcf208 B

vCard Contact

A vCard 3.0 contact with name, email, phone, and address — for testing contact importers.

Preview — first 10 linesvcf
BEGIN:VCARD
VERSION:3.0
FN:Ada Lovelace
N:Lovelace;Ada;;;
EMAIL:ada@example.com
TEL;TYPE=CELL:+1-555-0100
ADR;TYPE=HOME:;;123 Example Street;London;;SW1A 1AA;UK
ORG:Novus Examples
END:VCARD

Specifications

Format
vCard 3.0
Contacts
1
Fields
FN, N, EMAIL, TEL, ADR, ORG
Line Endings
CRLF
Encoding
UTF-8

What is a .vcf file?

VCF (vCard) is a plain-text format for electronic business cards, storing contact details like names, phone numbers, emails, and addresses as property lines within BEGIN and END VCARD blocks. Multiple vCards can be concatenated in one file. It is the standard for contact exchange across devices.

How to use this file

Use an example VCF to test contact import, multi-card parsing, property and encoding handling, and interoperability between address-book applications.

How to use this file for testing

“vCard Contact” is a deterministic Novus Examples fixture for Contact parsing. vCard (.vcf) contact files with names, emails, phones, and addresses — for testing contact importers.

Documented properties for this file: UTF-8 · CRLF · vCard 3.0. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Data fixtures document their exact quirks — delimiters, encodings, null handling, schema, and row counts — in the spec table. Point your parser or importer at the file and assert it handles the documented edge cases; clean and deliberately-messy siblings make before/after diffs straightforward.

Code examples

import vobject  # pip install vobject

for card in vobject.readComponents(open("contact.vcf").read()):
    print(card.fn.value)

Generated by generation/data_formats.py. Free for any use, no attribution required — license.