Client for moodle webservice
Project description
moodlepy
Python client for moodle webservice
Introduction
This library provide a pure Python interface for Moodle Web Service. It's compatible with Python versions 3.7+
Installing
You can install or upgrade moodlepy with:
pip install moodlepy --upgrade
Or you can install from source with:
git clone https://github.com/hexatester/moodlepy
cd moodlepy
python setup.py install
Usage
Example usage
from moodle import Moodle
url = 'https://my.domain/webservice/rest/server.php'
token = 'super secret token'
moodle = Moodle(url, token)
raw_site_info = moodle('core_webservice_get_site_info')
site_info = moodle.core.webservice.get_site_info() # return typed site_info
print(raw_site_info)
print(site_info)
# or
from moodle import Mdl
from moodle.core.webservice import BaseWebservice
moodle = Mdl(url, token)
webservice = BaseWebservice(moodle)
site_info2 = webservice.get_site_info()
assert site_info == site_info2
In the future all Web service functions will be covered by moodlepy
Moodle Web Service support
❗️ Not all types and methods are supported, since moodlepy is not yet released. A = Added, W = Work In Progress
| Area | Functions | Types | Tests | Status |
|---|---|---|---|---|
| auth_email | A | A | ||
| block | ||||
| core_auth | A | A | ||
| core_backup | ||||
| core_badge | A | A | A | |
| core_blog | A | A | A | |
| core_calendar | A | A | W | |
| core_cohort | ||||
| core_comment | W | |||
| core_competency | ||||
| core_completion | A | A | ||
| core_course | W | |||
| core_customfield | ||||
| core_enrol | ||||
| core_fetch | W | |||
| core_files | W | |||
| core_filters | ||||
| core_form | W | |||
| core_get | W | |||
| core_grade | W | |||
| core_grades | ||||
| core_grading | ||||
| core_group | ||||
| core_h5p | ||||
| core_message | A | W | ||
| core_notes | A | A | W | |
| core_output | ||||
| core_question | W | W | ||
| core_rating | ||||
| core_role | ||||
| core_search | W | |||
| core_session | W | |||
| core_tag | ||||
| core_update | ||||
| core_user | W | |||
| core_webservice | A | A | A | A |
| enrol_guest | A | A | ||
| enrol_manual | A | A | ||
| enrol_self | A | A | ||
| gradereport_overview | ||||
| gradereport_user | ||||
| gradingform_guide | ||||
| gradingform_rubric | ||||
| local_mobile | W | |||
| message_airnotifier | W | |||
| message_popup | W | |||
| mod_assign | W | |||
| mod_book | ||||
| mod_chat | W | |||
| mod_choice | ||||
| mod_data | ||||
| mod_feedback | ||||
| mod_folder | A | A | ||
| mod_forum | W | |||
| mod_glossary | ||||
| mod_imscp | ||||
| mod_label | ||||
| mod_lesson | W | |||
| mod_lti | ||||
| mod_page | W | |||
| mod_quiz | W | |||
| mod_resource | A | A | ||
| mod_scorm | ||||
| mod_survey | W | |||
| mod_url | A | A | ||
| mod_wiki | ||||
| mod_workshop | ||||
| report_competency | ||||
| report_insights | ||||
| tool_analytics | ||||
| tool_lp | ||||
| tool_mobile | A | A | W | |
| tool_templatelibrary | ||||
| tool_usertours | ||||
| tool_xmldb |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file moodlepy-0.16.0.tar.gz.
File metadata
- Download URL: moodlepy-0.16.0.tar.gz
- Upload date:
- Size: 68.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.8 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4e15f2d8016e8570c37b9c6e6921e248ccafcf5f144e077481fb7ab2ad284fa
|
|
| MD5 |
fc3fe95332ed159bc93ed19967f2847c
|
|
| BLAKE2b-256 |
0cf8286cc447804970307b774ea7d9ecb9e56f67417fa97f4fd39ea9424a504f
|
File details
Details for the file moodlepy-0.16.0-py3-none-any.whl.
File metadata
- Download URL: moodlepy-0.16.0-py3-none-any.whl
- Upload date:
- Size: 119.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.8 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16cae6463ce74893bc6f0e146faa42608cfaad066c2e5fe35e5cf882f95e279a
|
|
| MD5 |
7c5aed0ead1a535b9e6df5866890b94e
|
|
| BLAKE2b-256 |
a3d7da85ec545db1a9eb9d4dffdbb99edb4bd08ca82eb1264c2fbde172427210
|