Python package for using the Urban Airship API
Project description
About
urbanairship is a Python library for using the Urban Airship web service API for push notifications and rich app pages.
Requirements
As of version 0.7, Python 2.6, 2.7, 3.3 or 3.4 is required.
Functionality
Version 0.7 is a major upgrade and backwards incompatible with earlier versions. This release focuses on support for Python 3 and the new version 3 push API. There is also a major reorganization of the codebase.
To encourage the use of our SDK, which takes care of proper channel registration, support for device token registration has been removed. Support for v1 endpoints has also been removed and support for:
blackberry pin lookup,
lookup and listing for device tokens, and
sending to device tokens
has been moved from v1 to v3.
A more detailed list of changes can be found in the CHANGELOG.
Version 0.6.3 is a bug fix release and its updates are compatible with the .6 series. See the CHANGELOG for more information.
Usage
See the full documentation, as well as the Urban Airship API Documentation.
Simple iOS Push
>>> import urbanairship as ua >>> airship = ua.Airship('application_key','master_secret') >>> push = airship.create_push() >>> push.audience = ua.or_(ua.alias('adam'), ua.ios_channel('some_ios_channel')) >>> push.notification = ua.notification(alert='Hello') >>> push.device_types = ua.device_types('ios') >>> push.send()
Broadcast to iOS, Android, and BlackBerry devices
>>> push = airship.create_push() >>> push.audience = ua.all_ >>> push.notification = ua.notification( ... ios=ua.ios(alert='Hello iOS'), ... android=ua.android(alert='Hello Android'), ... blackberry=ua.blackberry(alert='Hello BlackBerry')) >>> push.device_types = ua.device_types('ios', 'android', 'blackberry') >>> push.send()
Sending a rich app page to a single iOS device
>>> import urbanairship as ua >>> airship = ua.Airship('application_key','master_secret') >>> push = airship.create_push() >>> push.audience = ua.ios_channel('some_ios_channel') >>> push.notification = ua.notification(alert='Hello') >>> push.device_types = ua.device_types('ios') >>> push.message = ua.message( ... "Hello, Rich Push User", ... "<html><h1>Hello!</h1><p>Goodbye.</p></html>") >>> push.send()
Questions
The best place to ask questions is our support site: http://support.urbanairship.com/
History
0.7 Support for Python 3, major refactoring
0.6 Major refactoring, support for push api v3
0.5 Added Android, Blackberry, Rich Push, and scheduled notifications
0.4 Added batch push
0.3 Added deregister, device token list, other minor improvements
0.2 Added tags, broadcast, feedback
0.1 Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file urbanairship-0.8.0.tar.gz
.
File metadata
- Download URL: urbanairship-0.8.0.tar.gz
- Upload date:
- Size: 20.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fbaa47ac4d5bc63474188ec7ff8e8e82adb120012050d5ad8ee049815e757d7 |
|
MD5 | 9caf3aa8304f3822ce50a524a3abb4c7 |
|
BLAKE2b-256 | 0d8736334854ed932fa3c648ee470a564d3333b8e9b33ae1e54e28e3810c7c70 |