Django Passbook server app
Project description
![Passbook](http://cl.ly/JPjc/title_passbook.png)
===============
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](https://developer.apple.com/library/prerelease/ios/#documentation/PassKit/Reference/PassKit_WebService/WebService.html).
Contact
=======
devartis
- http://devartis.com
- http://github.com/devartis
- http://twitter.com/devartis
- info@devartis.com
===============
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](https://developer.apple.com/library/prerelease/ios/#documentation/PassKit/Reference/PassKit_WebService/WebService.html).
Contact
=======
devartis
- http://devartis.com
- http://github.com/devartis
- http://twitter.com/devartis
- info@devartis.com
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 django-passbook-0.1.0dev.tar.gz
.
File metadata
- Download URL: django-passbook-0.1.0dev.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fb22196280f63dc7dd31893fee2532941a1428290e0f06803d8e93f300f79c2 |
|
MD5 | 9b1cce845053d0c7b06b69d93088830d |
|
BLAKE2b-256 | 1b0a4c47f812c82c8a7f73ba0fc9085da2e775b9bf4a60d11e20d2f90c1757be |