change name to remove dashes and hopefully be importable

This commit is contained in:
simonwt 2026-03-30 23:05:49 +01:00
parent bfe42ef1a1
commit f07cf0e02d
5 changed files with 23 additions and 5 deletions

View file

@ -1,3 +1,16 @@
# 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
)
'''