Skip to content

govex/talentpy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TalentLMS API Wrapper

Python client library for Talent LMS API

Installation

This module is not submitted to PyPI. You can install direct from github with pip install git+git://github.com/govex/talentpy or by cloning the repo and running: pip install -e . from within the directory.

Usage

from talentpy import Talent

apikey="yourTalentLMSkey"
domain="domain"

t = Talent(apikey=apikey, domain=domain)

Replace yourTalentLMSkey with your api key and domain with the part that says "domain" in https://domain.talentlms.com/. Strong suggestion: store your api key as an environmental variable and use os.environ.get('apikey') (which is the argument default). Never save an apikey in your code.

To get all your courses:

all_courses = t.get_courses()

See the talentpy module for the rest of the implemented methods.

If your needed API call does not have a method, please submit a pull request!

About

Python wrapper for TalentLMS API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages