poligarcia / django-passbook

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Passbook

=============== django-passbook

This application implements the specified API for passbook webservices. It handles pass registration, updates and logging. It may be easily plugged to you django application by just adding the installed app and importing the urls. It is based on Apple's specificatin and Mattt's rails example (https://github.com/mattt/passbook_rails_example)

If you need to create passes (.pkpass files) in python you should check http.//github.com/devartis/passbook.

Requirements

  • Django 1.4

Getting Started

$ pip install django-passbook

Add 'django_passbook' to you installed apps in the settings.py file.

You should also import the urls in your site urls.

from django_passbook import urls
urlpatterns = patterns('',
    url(r'^api/', include('django_passbook.urls')),

django-passbook signals certain events that might come handy in your application.

from django_passbook.views import pass_registered, pass_unregistered
@receiver(pass_registered)
def pass_registered(sender, **kwargs):
    pass

@receiver(pass_unregistered)
def pass_unregistered(sender, **kwargs):
    pass

Specification

The complete specification can be found in the Passbook Web Service Reference.

Contact

devartis

About

License:MIT License