Skip to main content

A Python API for Pushjet. Send notifications to your phone from Python scripts!

Project description

pushjet logo (Python API)

Welcome to pushjet, Python’s Pushjet (see the server on GitHub) API. Pushjet lets you push notifications directly to your phone (among other things)! This module lets you do that pushing from Python! It’s pretty sweet - it lets you do all sorts of cool things, like integrating notifications into your web app or notifying you when something goes on sale.

And yep, the module’s just named pushjet. Spiffy name, and surely not at all confusing. Probably. Hopefully. Maybe.

How to install

The module is on GitHub, and it’s also on PyPI! That means you can install it using pip. Simply run the following to install it:

> pip install pushjet

Bam, you’re ready to go. It’s compatible with both Python 2 and 3, too - nice, huh?

How to use

See the Getting started section of the documentation. Here’s a little taste:

import pushjet
import uuid

service = pushjet.Service.create(
    "Open courses", # Name
    "http://example.com/university_icon.png" # Icon URL
)
device = pushjet.Device(uuid.uuid4())
device.subscribe(service)
service.send(
    "A spot is open for you in the competitive eating course!", # Message
    "Course open", # Title
    "http://example.com/courses/eating/competitive" # Link
)
for message in device.get_messages():
    print message.title
    print message.message
    print message.link

For information on all the properties of the classes, and on how to use custom API instances, once again see the documentation.

Contact

If there’s a feature you’re missing or a bug you’ve found in pushjet, open an issue on GitHub. If you’ve got a question - or there’s anything you’d like to talk about at all, really - you can reach me via:

I usually answer much faster on Twitter. Thaaaat… should be all. I think. Unless I’ve forgotten something, which I don’t think I have. I never think I have, though, and then sometimes I still have. Let’s hope I haven’t this time.

Enjoy!

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pushjet-1.0.0-py2.py3-none-any.whl (11.0 kB view hashes)

Uploaded Python 2 Python 3

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