Metadata-Version: 2.1
Name: learnupon
Version: 0.1.1
Summary: 
Home-page: https://github.com/swimlane/swimlane-learnupon
Author: Michael Butler
Author-email: michael.butler@swimlane.com
Requires-Python: >=3.6,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: requests (>=2.22,<3.0)
Project-URL: Repository, https://github.com/swimlane/swimlane-learnupon
Description-Content-Type: text/markdown

# Swimlane Learnupon

## Description
A python package for interacting with the LearnUpon LMS.

## Installation
```
pip install learnupon
```

## Usage
```
from learnupon import LearnUpon

learnupon = LearnUpon(portal_url="https://myportal.learnupon.com", 
                      username="abc123", password="def456")
                      
new_user = learnupon.invite_user(email_address="new_user@mycompany.com")
```
