Hello world!
This is simple python package,
that can interact with Moodle Webservices REST API.
Available endpoints
Currently you can call only `core_course_get_courses` endpoint.
To call that endpoint you simple write
python
from pymoodleclient import Client, endpoints
client = Client("moodle_url", "api_token")
course_list = client.call(endpoints.course.GetAllCourses)