Skip to content

MichiganLabs/flask-gcm

Repository files navigation

Flask-GCM

Build Status Coverage Status PyPI Version PyPI Downloads

Flask-GCM is a simple wrapper for the gcm-client library to be used with Flask applications.

Getting Started

Requirements

  • Python 2.6+ or Python 3.3+

Installation

Flask-GCM can be installed with pip:

$ pip install flask-gcm

or directly from the source code:

$ git clone https://github.com/MichiganLabs/flask-gcm.git
$ cd flask-gcm
$ python setup.py install

Basic Usage

from flask import Flask
from flask.ext.gcm import GCM

app = Flask(__name__)
gcm = GCM(app)

Flask-GCM also supports the Flask "app factory" paradigm using init_app:

from flask import Flask
from flask.ext.gcm import GCM

gcm = GCM()

def create_app():
    app = Flask(__name__)
    gcm.init_app(app)
    return app

The gcm object can then be used as described in the gcm-client docs

For Contributors

Requirements

Installation

Create a virtualenv:

$ make env

Run the tests:

$ make test

Build the documentation:

$ make doc

Run static analysis:

$ make flake8
$ make pep257
$ make check  # includes all checks

Pull Request Guidelines

Contributions are always welcome! Please keep the following in mind when creating a pull request:

  • Include (passing) tests for all new features and bugfixes
  • Contributed code should pass flake8 checks
  • Include documentation which passes pep257 guidelines

About

Simple wrapper for the gcmclient library to be used with Flask applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages