Skip to main content

Python module for using the Xtify webservice API

Project description

About

Python library for using the Xtify web service API for mobile push notifications.

Requirements

Tested using Python 2.7, it will probably work on older versions. For versions of Python 2.5 or earlier``simplejson`` will need to be installed.

Functionality

As of version 0.1 only the Xtify Push API 2.0 is implemented. Mostly because it was the only one I needed, at least for now….

Available Classes: PushNotification, PushContent, PushAction, PushRichContent

Usage Examples

>>> import xtify
>>> pushNotif = xtify.PushNotification(appKey='myAppKey', apiKey='myApiKey)
>>> pushNotif.sendAll=True
>>> pushNotif.content.subject='greetings earthling'
>>> pushNotif.content.message='take me to your leader'
>>> pushNotif.push()
>>> import xtify
>>> pushContent = xtify.PushContent(
    subject='greetings earthling', message='take me to your leader')
>>> pushNotif = xtify.pushNotification(
    appKey='myAppKey', apiKey='myApiKey', sendall=True, content=pushContent)
>>> pushNotif.push()

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xtify-0.1.tar.gz (3.8 kB view hashes)

Uploaded Source

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