Added fullcontact api
This commit is contained in:
parent
24d6113bd7
commit
436f3119f9
49
30_fullcontact.py
Normal file
49
30_fullcontact.py
Normal file
@ -0,0 +1,49 @@
|
||||
import sys
|
||||
import requests
|
||||
|
||||
"""
|
||||
|
||||
1. pip install requests
|
||||
2. Obtain an API key: https://www.fullcontact.com/developer/pricing/
|
||||
|
||||
Example usage:
|
||||
|
||||
$ python 30_fullcontact.py email SOME@EMAIL.COM
|
||||
$ python 30_fullcontact.py twitter TWITTER_HANDLE
|
||||
"""
|
||||
|
||||
|
||||
# constants
|
||||
|
||||
API_KEY = 'GET YOUR OWN'
|
||||
BASE_URL = 'http://api.fullcontact.com/v2/person.json'
|
||||
|
||||
|
||||
# helpers
|
||||
|
||||
def get_arguments():
|
||||
if len(sys.argv) is 3:
|
||||
return {
|
||||
'media': sys.argv[1],
|
||||
'user_info': sys.argv[2]
|
||||
}
|
||||
else:
|
||||
print('Specify at least 1 argument')
|
||||
sys.exit()
|
||||
|
||||
|
||||
def call_api(contact):
|
||||
url = BASE_URL + '?{0}={1}&apiKey={2}'.format(
|
||||
contact['media'], contact['user_info'], API_KEY)
|
||||
r = requests.get(url)
|
||||
if r.status_code == 200:
|
||||
return r.text
|
||||
else:
|
||||
return "Sorry, no results found."
|
||||
|
||||
|
||||
# main
|
||||
|
||||
if __name__ == "__main__":
|
||||
media = get_arguments()
|
||||
print(call_api(media))
|
@ -29,3 +29,4 @@
|
||||
1. **27_send_sms.py**: Send SMS message via [TextBelt](http://textbelt.com/)
|
||||
1. **28_income_tax_calculator.py**: Income tax calculator via [Taxee](http://taxee.io/)
|
||||
1. **29_json_to_yaml.py**: Convert JSON to YAML
|
||||
1. **30_fullcontact.py**: Call the [FullcContact](https://www.fullcontact.com/developer/) API
|
||||
|
Loading…
Reference in New Issue
Block a user