Skip to content

Releases: vlaszdunov/pymoodleclient

v0.2.0b1

11 Aug 10:45
Compare
Choose a tag to compare
v0.2.0b1 Pre-release
Pre-release

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

from pymoodleclient import Client, endpoints

client = Client("moodle_url", "api_token")
course_list = client.call(endpoints.course.GetAllCourses)