result = client.concepts.batch([201826, 4329847, 1112807])for concept in result["concepts"]: print(f"{concept['concept_id']}: {concept['concept_name']}")
result = client.concepts.relationships(201826, page_size=20)for rel in result["relationships"]: print(f"{rel['relationship_id']}: {rel['concept_name_2']}")