Skip to content

brookite/pyvcard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyvcard

Description:

pyvcard is a light and convenience library for interacting with vCard files. This library can parse, build, convert, perform vCard validation

Advantages:

  • vCard parsing

  • Supported JSON (jCard), XML (xCard), CSV parsing and converting

  • vCard object representation

  • vCard building

  • Searching in vCard object included

Python 3.6+ recommended. WARNING: pyvcard is in early alpha. It may be unstable

Tutorials:

  1. Parsing simple vcf file:
    cards = pyvcard.openfile("vcard.vcf", encoding="utf-8").vcards()
  1. Parsing vcf from string
    stringvcf = "BEGIN:VCARD..."
    cards = pyvcard.parse(stringvcf).vcards() #vCardSet
  1. Building vcf
    builder = pyvcard.builder()
    builder.set_version("3.0")
    builder.add_property("GEO", ["1.25", "87.5"], group="item0", params={})
    builder.set_name("John Appleseed")
    builder.set_phone("1234567890")
    vcard = builder.build()
  1. String representation of vCard object
    string = object.repr_vcard() #or 
    string = object.repr()
  1. Indexing vCard objects for search
    #example
    indexer = pyvcard.vCardIndexer(index_params=True)
    pyvcard.parse(stringvcf, indexer=indexer)
  1. Search in vCard or in vCardSet
    vcardset.find_by_name("Smith", indexsearch=True, fullmatch=True, case=True)
    vcardset.find_by_group("item0")
    vcardset.find_by_phone("1234567890")
    vcardset.find_by_phone_endswith("890")
    vcardset.find_by_phone_startswith("123")
    vcardset.find_by_property("PROFILE", "VCARD")
    vcardset.find_by_value("VCARD")
  1. Convert vCard or vCardSet to XML, JSON, CSV
    pyvcard.convert(vcardset).xml().result() #may use 'json', 'xml', 'csv', 'html'
  1. Parse from various sources
    pyvcard.parse_from(source, "csv") #may use 'json', 'xml', 'csv', 'vcf', 'html'
  1. Difference search (for example using fuzzywuzzy)
    from fuzzywuzzy import fuzz
    import pyvcard
    def wratio(str1, str2):
        return fuzz.WRatio(str1, str2)
    vset.difference_search("phone", "12345678", wratio)
  1. Extracting main data from vCard object
    print(vcard.contact_data())
    #{'name': 'John Doe', 'number': [1234567890, 123456789], 'struct_name': {'surname': 'Doe', 'given_name': 'John', 'additional_name': 'Quentin', 'prefix': 'Mr,Dr', 'suffix': 'Esq.'}}
  1. Other features
    vcard[0]
    vcard["FN"]
    pyvcard.is_vcard(vcard)
    pyvcard.is_vcard_property(vcard[0])

About

A powerful vCard parser

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages