Skip to content

convert contacts info recorded in CSV file to VCard file

Notifications You must be signed in to change notification settings

md11235/cl-csv2vcf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

csv2vcf

A Common Lisp program which converts contacts info recorded in CSV file to VCard file, which then could be imported into iPhone, Android phones and Microsoft Outlook.

Currently only Simplified Chinese Names are supported.

Usage Example

Prepare a CSV file

say there is a CSV file at e:/tmp/test.csv whose content is like:

王小明,13912345678 13366778899,[email protected],贵州

Multiple phone numbers and email accounts separated by one space are supported.

Convert CSV to VCF

  • using quicklisp to load this system:

    (ql:quickload 'csv2vcf)

  • convert

    (csv2vcf:csv->vcf '(full-name mobile email work-address) "e:/tmp/test.csv")

  • the output VCF is under the same directory with the CSV file.

  • and QRCode images(png) also resides in that directory.

  • supported fields

    • supported fileds:
    • full-name
    • org
    • mobile
    • work-fixed-line
    • email
    • work-address
    • home-address
    • url
    • note

About

convert contacts info recorded in CSV file to VCard file

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published