Skip to content

Instantly share code, notes, and snippets.

View phillymjs's full-sized avatar

Michael Stango phillymjs

  • Philadelphia, PA
  • 06:04 (UTC -04:00)
  • X @PhillyMJS
View GitHub Profile
@gerwin3
gerwin3 / make-vcard.py
Created January 23, 2021 16:16
Generate vCard using Python
"""
This little script can generate a valid .vcf (vCard). It will ask you to fill
in some details and write the vcf-file.
"""
def main():
print('Please enter contact details:')
first_name = input(' - First name : ')
last_name = input(' - Last name : ')
email = input(' - E-mail address : ')