5 lines
159 B
Python
5 lines
159 B
Python
import requests
|
|
import json
|
|
resp = requests.get('http://localhost:3015/workspaces', headers={'X-API-Key': 'jleu1212'})
|
|
print(resp.status_code)
|
|
print(resp.text) |