FullContact (formerly RainMaker)

Implemented the Python client for FullContact's API.
Languages: Python

Working for FullContact I built the Full Contact API client for python.

Code sample:

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
import rainmaker
rainmaker = rainmaker.RainMaker("API_KEY")
print(rainmaker.do_lookup("[email protected]"))

# Output
{
    "status": 200,
    "contactInfo": {
        "familyName": "Lorang",
        "givenName": "Bart",
        "fullName": "Bart Lorang",
        "emailAddresses":
        [
        "[email protected]"
        ]
    },
    "interests": {
        "Football": true,
        "Sports & Recreation": true,
        "Business": true,
        "Online News": true,
        "Baseball": true,
        "Tennis": true,
        "News & Current Events": true,
        "Basketball": true,
        "Blogging": true,
        "Social Networks": true,
        "Online Journals": true,
        "Golf": true,
        "Technology": true
    },
    "organizations": [
        {
            "name": "Forseti Holdings, LLC",
            "title": "Chairman & CEO",
            "startDate": "2010-01"
        },
        {
            "name": "Rainmaker Technologies",
            "title": "CEO",
            "startDate": "2010-01"
        },
        {
            "name": "Forseti Holdings LLC",
            "title": "Chairman & CEO",
            "isPrimary": true
        },
        {
            "name": "CloudCenter LLC",
            "title": "Chairman & CEO",
            "isPrimary": false
        },
        {
            "name": "DTS",
            "isPrimary": false
        }
    ],
    "demographics": {
        "influencerScore": "81-90",
        "householdIncome": "250k+",
        "age": "31",
        "homeOwnerStatus": "Own",
        "locationGeneral": "Denver, Colorado, United States",
        "children": "No",
        "gender": "Male",
        "maritalStatus": "Single"
    },
    "socialProfiles": [
        {
            "type": "facebook",
            "url": "http://www.facebook.com/bart.lorang",
            "id": "651620441",
            "birthday": "08/16/1979",
            "username": "bart.lorang"
        },
        {
            "url": "http://twitter.com/lorangb",
            "id": "5998422",
            "type": "twitter",
            "username": "lorangb"
        },
        {
            "url": "http://www.linkedin.com/in/bartlorang",
            "id": "bartlorang",
            "type": "linkedin",
            "username": "bartlorang"
        },
        {
            "url": "http://about.me/lorangb",
            "type": "about.me"
        },
        {
            "url": "http://www.flickr.com/people/39267654@N00/",
            "id": "39267654@N00",
            "type": "flickr"
        },
        {
            "url": "http://profiles.friendster.com/6986589",
            "type": "friendster"
        },
        {
            "url": "https://profiles.google.com/lorangb",
            "id": "lorangb",
            "type": "google profile",
            "username": "lorangb"
        },
        {
            "url": "http://www.myspace.com/137200880",
            "type": "myspace"
        },
        {
            "url": "http://picasaweb.google.com/lorangb",
            "type": "picasa"
        },
        {
            "url": "http://tungle.me/bartlorang",
            "id": "bartlorang",
            "type": "tungle.me",
            "username": "bartlorang"
        },
        {
            "url": "http://youtube.com/lorangb",
            "type": "youtube"
        },
        {
            "type": "friendster",
            "url": "http://profiles.friendster.com/6986589"
        }
    ],
    "photos": [
        {
            "url": "http://graph.facebook.com/<snip>",
            "type": "facebook"
        },
        {
            "url": "https://lh5<snip>",
            "type": "google profile"
        },
        {
            "url": "http://profile<snip>",
            "type": "facebook"
        },
        {
            "url": "http://photos.friendster.com<snip>",
            "type": "friendster"
        },
        {
            "url": "http://c2.ac-images<snip>",
            "type": "myspace"
        },
        {
            "url": "http://images.plaxo.com/<snip>",
            "type": "plaxo"
        },
        {
            "url": "http://a1.twimg.com/<snip>",
            "type": "twitter"
        },
        {
            "type": "gravatar",
            "url": "https://secure.gravatar.com/<snip>"
        },
        {
            "type": "linkedin",
            "url": "http://media.linkedin.com/<snip>"
        }
    ]
}

But that's not all! I've done much more. Check out more of my client work.