This commit is contained in:
simonwt 2026-03-30 19:44:12 +01:00
parent b5b3681843
commit 3b8e1e558b
11 changed files with 414 additions and 0 deletions

16
testing.py Normal file
View file

@ -0,0 +1,16 @@
from apiclient import APIClient
import jobs
import os
from dotenv import load_dotenv
load_dotenv()
API = APIClient(
client_id=os.getenv("client_id"),
client_secret=os.getenv("client_secret"),
debug=True
)
API.sign_in()
# profile = requests.userprofile
profile = jobs.userprofile.get(API, "simon-little")
print(profile)