Skip to content
This repository has been archived by the owner on Nov 29, 2018. It is now read-only.

A simple python client for InformaCast Mobile based on requests and Hammock

License

Notifications You must be signed in to change notification settings

k-masters/icm-python-client

Repository files navigation

InformaCast Mobile REST Python Client

A simple, easy to use REST client based on requests and Hammock

Installation

Installation should be straight forward with pip:

pip install icm-python-client

Usage

Import the client:

from icm_python_client.icm_client import ICMClient

Create an instance of the client (session kwargs may also be provided):

icm_client = ICMClient.create('<My Access Token>')

Have fun!

# Get first page of users
icm_client.users().GET().json()

# Paginate through all users
for user in icm_client.users().LIST():
    print user
    
# Search for a user named Jim
icm_client.users().GET(params={'limit': 10, 'q': 'Jim'}).json()

# Get a specific user
icm_client.users('de7b51a0-5a1e-11e4-ab31-8a1d033dd637').GET().json()

# Get a specific user's devices
icm_client.users('de7b51a0-5a1e-11e4-ab31-8a1d033dd637').devices().GET().json()

# Create a user
user = icm_client.users().POST(params={'name': 'Jim Bob', 'email': '[email protected]'}).json()

# Update the created user
icm_client.users(user['id']).PUT(params={'name': 'Jim Bob The Second'}).json()

# Delete the updated user
icm_client.users(user['id']).DELETE().json()

License

Copyright 2015 Singlewire LLC

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

A simple python client for InformaCast Mobile based on requests and Hammock

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages