# Time-stamp: <2002-08-26 17:48:31 crabbkw> # Code and design by Casey Crabb (crabbkw@nafai.dyndns.org) # This code is licensed under the BSD license. # See the LICENSE file for details class VCard: def __init__(self): self.fn = None self.given = None self.family = None self.nickname = None self.email = None class VCardTemp: def __init__(self): self.text = None