Skip to main content

API client for PathGather

Project description

PathGather

https://img.shields.io/pypi/v/pathgather.svg https://img.shields.io/travis/tonybaloney/pathgather.svg Documentation Status https://codecov.io/gh/tonybaloney/pathgather/branch/master/graph/badge.svg Updates Python 3

The Pathgather python package is for connecting to and leveraging the Pathgather REST API from Python 2 or 3.

This project is not part of Pathgather or operated by Pathgather, it is an open-source package for consuming their API.

Example

from pathgather import PathgatherClient
import yaml
import json
from pprint import pprint

with open('.tenant.yml', 'r') as tenant_yml:
   config = yaml.load(tenant_yml)

client = PathgatherClient(config['host'], config['api_key'])

print(client.users.all())

with open('dump.json', 'r') as dump_j:
    data = json.load(dump_j)

for user in data['users']:
    print('Creating {0}'.format(user['full_name']))
    new_user = client.users.create(
        name=user['full_name'],
        job_title=user['job_title'],
        department='Learning and Development',
        email=user['email'])
    print(new_user)

pprint(client.users.all())

pprint(client.users.skills('362add1b-0a28-425b-a83c-40a6808fd094'))

pprint(client.paths.all())

Features

  • User management

  • Content management

  • Path queries

  • User completions of content

  • Gathering management and gathering membership

  • Gathering Content and Path management

  • Skills

Missing

The following features are in the API but not yet in this client

  • Conversations

  • Comments

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

1.4.0 (2018-03-12)

  • Add support for filtering content

  • Add support for updating a piece of content

1.3.0 (2017-12-11)

  • Add pathgather.skills API for gathering, listing and adding skills

  • Add support to invite a user from a gathering

  • Remove add_user feature, since the API doesn’t work

  • Add ability to list content in a gathering and delete content

  • Add support to list paths within a gathering

  • Update production path and user models

1.2.0 (2017-12-09)

  • Fetch content completions and starts for users

  • Register content completion for a user and a piece of content

  • Fetch path starts and completions for users

  • Gatherings API for listing, getting, creating, updating and deleting Gatherings

  • List users within a gathering

  • Add or remove users from a gathering

1.1.0 (2017-12-08)

  • Updated content models with new fields

  • Added support to specific content provider by name or custom_id

  • Fixed doc issue with content.create

  • Added pathgather.models package to setup.py

  • Added SSL check disable flag on client and HTTP proxy settings

1.0.0 (2017-09-01)

  • Introduce models for all methods, created tests based on documented and real API results. 91% test coverage

  • Add support for adding skills to users, setting the skill level and deleting skills

0.5.0 (2017-09-01)

  • Added some unit tests to the base client and improved doc strings for documentation

0.4.0 (2017-08-29)

  • [FIX] Remove default proxy settings

  • Add support to page out all() methods in content, users and paths. Method will now return all results

0.3.0 (2017-08-29)

  • Add proxy support

0.2.0 (2017-08-28)

  • Added path and content API endpoints

0.1.0 (2017-08-28)

  • First release on PyPI.

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

pathgather-1.6.0.tar.gz (48.0 kB view details)

Uploaded Source

Built Distribution

pathgather-1.6.0-py2.py3-none-any.whl (27.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pathgather-1.6.0.tar.gz.

File metadata

  • Download URL: pathgather-1.6.0.tar.gz
  • Upload date:
  • Size: 48.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pathgather-1.6.0.tar.gz
Algorithm Hash digest
SHA256 57a0e08ef4dae7cc62b851c91924fb357f786dd3548011d1c88bf1b8b3515646
MD5 e63b527859ba244a2a73e7c28eecac52
BLAKE2b-256 4e53e6a07a446359740ac5ca76f8e0777fa61d08fd077c27a6e2e115e98cfdce

See more details on using hashes here.

File details

Details for the file pathgather-1.6.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pathgather-1.6.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 8e63b511389238ba3228d62bc81dd04611c5b1a06b1b07fe3291cd1d40229e46
MD5 e2fde1e4f2f66bdeca6a16d4c4fe1f1f
BLAKE2b-256 4f14de04249c19591ed1db3e66838101e4a8aea18745818ccc6ef6e62c020551

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page