Authentication & Swagger
Intro
Authentication
import requests
auth_header = { 'Authorization': 'Bearer abcd123456789'}
my_info = 'https://safcregistry.energyweb.org/api/users/me'
r = requests.get(my_info, header=auth_header)Noteworthy functions
Function
Purpose
Inputs
Outputs
Last updated