A python wrapper for a LearnDash API
Project description
LearnDash Python Library
Warning, early alpha. Most functionality is missing. The LearnDash Python Library provides a simple wrapper for a LearnDash API.
Documentation
See the LearnDash API V2 Docs.
Installation
pip install learndash
Usage
import learndash
learndash.api_host = https://my-learndash-website.com
# Auth is provided via wordpress user credentials when needed
import os
learndash.wordpress_un = os.environ.get('WORDPRESS_UN')
learndash.wordpress_pw = os.environ.get('WORDPRESS_PW')
# list Courses
courses = learndash.Course().list()
print(courses)
# retrieve specific Course
course = learndash.Course(12).retrieve()
print(course)
# add user to a course
course_id = 1
learndash.Course(1).users().update({'user_ids': [course_id]})
Supported Resources
The Learndash V2 API is still in beta, and this library is still in development. Supported resources and examples are listed below.
- Course
- Retrieve
learndash.Course(1).retrieve()
- List
learndash.Course().list()
- Retrieve
- Course Step
- List
learndash.Course(1).steps().list()
- Update
learndash.Course(1).steps().update({})
- List
- Course Prerequisite
- List
learndash.Course(1).prerequisites().list()
- List
- Course User
- List
learndash.Course(1).users().list()
- Update
learndash.Course(1).users().update({'user_ids': []})
- List
- Course Group
- List
learndash.Course(1).groups().list()
- Update
learndash.Course(1).groups().update()
- List
- User
- Retrieve
learndash.User(1).retrieve()
- List
learndash.User().list()
- Retrieve
- User Course Progress
- List
learndash.User(1).course_progress().list()
- List
- User Course
- List
learndash.User(1).courses().list()
- Update
learndash.User(1).courses().update({'user_ids': []})
- List
- User Group
- List
learndash.User(1).groups().list()
- Update
learndash.User(1).groups().update({})
- List
- User Quiz Progress
- List
learndash.User(1).quiz_progress().list()
- List
Configuring API Paths
The LearnDash Wordpress plugin allows admins to configure the paths for each API resource. By default, this library will use the LearnDash plugin's default paths, but you can reconfigure those paths.
How To Configure
Simply import the learndash module and overwrite the default path for an endpoint.
import learndash
learndash.path_courses = 'courses' # Leave out slashes
Configurable Paths
All configurable paths and their default values are below. From learndash/__init__.py
.
path_assignments = 'sfwd-assignment'
path_courses = 'sfwd-courses'
path_course_steps = 'steps'
path_course_prerequisites = 'prerequisites'
path_course_users = 'users'
path_course_groups = 'groups'
path_essays = 'sfwd-essays'
path_groups = 'groups'
path_group_courses = 'courses'
path_group_leaders = 'leaders'
path_group_users = 'users'
path_lessons = 'sfwd-lessons'
path_price_types = 'price-types'
path_questions = 'sfwd-question'
path_question_types = 'question-types'
path_quizzes = 'sfwd-quiz'
path_quiz_statistics = 'statistics'
path_quiz_statistics_questions = 'questions'
path_topics = 'sfwd-topic'
path_users = 'users'
path_user_course_progress = 'course-progress'
path_user_courses = 'courses'
path_user_groups = 'groups'
path_user_quiz_progress = 'course-progress'
Dependencies
Requires the requests library.
Project details
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
File details
Details for the file learndash-0.0.7.tar.gz
.
File metadata
- Download URL: learndash-0.0.7.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d23a77ae0a1566840b9ae805bfee51446bc1dfe16bfd5b27b16086d16382a20e |
|
MD5 | 9dd82565772ed94fad9005dbeb7b667d |
|
BLAKE2b-256 | 0d2594fcd4181f20abb7fc11a1296310ce337acedd7c18e0b5fc2619d45265a2 |
File details
Details for the file learndash-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: learndash-0.0.7-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be1a5d467f0a328ee1b4462063182aa306304e967d9de48f236a53a66f18e93a |
|
MD5 | d65907d4a6d80d6ba997da1f8b957072 |
|
BLAKE2b-256 | 10322338c8102ebf0e0b88c9962b9175b7c394c2d5cf3e9a651d975303aa8e2c |