16 lines
No EOL
268 B
Markdown
16 lines
No EOL
268 B
Markdown
# Trustcafe API Wrapper
|
|
|
|
Intended use (not working yet but testing.py does)
|
|
|
|
'''
|
|
import trustcafeapi
|
|
import os, simplejson as json
|
|
|
|
|
|
API = trustcafeapi.APIClient(
|
|
client_id=os.getenv("client_id"),
|
|
client_secret=os.getenv("client_secret"),
|
|
debug=True
|
|
)
|
|
|
|
''' |