Skip to content

Instantly share code, notes, and snippets.

View my4paws's full-sized avatar

Vikki Sibbick my4paws

View GitHub Profile
@my4paws
my4paws / Addcontact.py
Created April 15, 2018 06:50
Pythonista add new contact to IOS
import contacts
import clipboard
import webbrowser
import dateutil
name = clipboard.get().split(',')
pers = contacts.Person()
grp = contacts.Group()
pers.first_name = name[0]
pers.last_name = name[1]
pers.middle_name = name[2]