lunduke-cli/examples/check-key.py

9 lines
175 B
Python
Raw Normal View History

2025-04-11 21:46:02 +00:00
import requests
from lunduke.client import DiscourseClient
2025-04-11 21:46:02 +00:00
client = DiscourseClient()
response = client.get('/site.json')
2025-04-11 21:46:02 +00:00
print(response.status_code)
print(response.json())