Python package for using the Airship API
Project description
About
urbanairship is a Python library for using the Airship REST API for push notifications, message center messages, email, and SMS.
Requirements
As of version 5.2.0, either Python 2.7, 3.5, 3.6, or 3.7 is required. Other requirements can be found in requirements.txt.
Questions
The best place to ask questions or report a problem is our support site: http://support.airship.com/
Usage
See the full documentation for this library, as well as the 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 and Android 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')) >>> push.device_types = ua.device_types('ios', 'android') >>> push.send()
Sending a message center message 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, message center user', ... '<html><h1>Hello!</h1><p>Goodbye.</p></html>') >>> push.send()
Web Push to a tag
>>> import urbanairship as ua >>> airship = ua.Airship('application_key', 'master_secret') >>> push = airship.create_push() >>> push.audience = ua.tag('web_tag') >>> push.notification = ua.notification(alert='Hello') >>> push.device_types = ua.device_types('web') >>> push.send()
History
5.0 Support for SMS and Email messages. See changelog for other updates.
4.0 Support for Automation, removed Feedback
3.0 Support for Open Channels, several other significant changes
2.0 Support for Web Notify and more iOS 10, stopped supporting Python 2.6
1.0 Support for In-App and iOS 10
0.8 Support for Reports APIs
0.7 Support for Python 3, major refactoring
0.6 Major refactoring, support for push api v3
0.5 Added Android, 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
See the CHANGELOG file for more details.
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-5.3.0.tar.gz
.
File metadata
- Download URL: urbanairship-5.3.0.tar.gz
- Upload date:
- Size: 38.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/2.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62e92bd0778e780632385a86764003d0656c643296d28a924eb0c33eb9789b76 |
|
MD5 | e11bcea907fb33d55520d1d0eb382b18 |
|
BLAKE2b-256 | 327746bc512b14327e2a48ec2a0f32cf0a7a25b6efa3c570b47da5979782498f |