We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6613b13 commit 352f777Copy full SHA for 352f777
.gitignore
@@ -4,3 +4,4 @@ _tmp
4
env
5
venv
6
__pycache__
7
+.env
30_fullcontact.py
@@ -1,3 +1,4 @@
1
+import os
2
import sys
3
import requests
@@ -15,7 +16,7 @@
15
16
17
# constants
18
-API_KEY = 'GET YOUR OWN'
19
+API_KEY = os.environ.get('FULLCONTACT_API_KEY')
20
BASE_URL = 'http://api.fullcontact.com/v2/person.json'
21
22
0 commit comments