Skip to main content

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

Project description

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': 'jim.bob@aol.com'}).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.

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

icm-python-client-0.0.3.tar.gz (4.6 kB view details)

Uploaded Source

File details

Details for the file icm-python-client-0.0.3.tar.gz.

File metadata

File hashes

Hashes for icm-python-client-0.0.3.tar.gz
Algorithm Hash digest
SHA256 5a5a44695eb0cb15580cc3a3cba1d5b848037844817632d1d4966a1c1fdd4eec
MD5 9680d38a64a6748ed7cd14f789d139f1
BLAKE2b-256 f141ce9629401be9989c332ca47cb12cb7a6b9c4381904c34fb146eae3d18b1e

See more details on using hashes here.

Supported by

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