Prefer using email? Say hi at hello@moveshelf.com
## README: this example shows how we can delete a subject from Moveshelf
# using the Moveshelf API.
# Delete a subject by ID
subject_id = "<subjectId>" # subject["id"]
result = api.deleteSubject(subject_id)
if result:
print(f"Subject {subject_id} deleted successfully")
else:
print(f"Failed to delete subject {subject_id}")