jkamdjou / fullcontact-aio

A simple Python interface for FullContact, using Requests.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FullContact.py

PyPI version Build Status

A Python interface for the FullContact API.

Installation

pip install FullContact-AIO

Usage

from fullcontact import FullContact
import asyncio
async def get_person():
    fc = FullContact('your_api_key')

    #return a FullContactRespoonse object
    r = await fc.person(email='you@email.com')
    print(r.status_code) # 200
    print(r.rate_limit_remaining) # 59
    print(r.json_response) # {u'socialProfiles': [...], u'demographics': {...}, ... }
asyncio.get_event_loop().run_until_complete(get_person())

Supported Python Versions

  • 3.6
  • 3.7

About

A simple Python interface for FullContact, using Requests.

License:MIT License


Languages

Language:Python 100.0%