WIP
This commit is contained in:
parent
b5b3681843
commit
3b8e1e558b
11 changed files with 414 additions and 0 deletions
16
testing.py
Normal file
16
testing.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue