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

API client for PathGather

Example

from pathgather import PathgatherClient
import yaml
import json


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)

Features

  • User management

  • Content management

  • Path queries

Credits

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

History

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-0.3.0.tar.gz (20.2 kB view hashes)

Uploaded Source

Built Distribution

pathgather-0.3.0-py2.py3-none-any.whl (12.4 kB view hashes)

Uploaded Python 2 Python 3

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