Skip to main content

A thin python wrapper for the fastbill API

Project description

management commands

python manage.py fastbill --update-articles


signals

put this in your models.py

from django_fastbill.signals import customer_signal, subscription_signal, payment_signal
from django.dispatch import receiver


@receiver(customer_signal)
def customer_signal_receiver(sender, customer, event_type, raw_data, **kwargs):
print "#" * 50
print "sender", sender
print "event_type", event_type
print "customer", customer
print "data", raw_data
print "#" * 50


@receiver(subscription_signal)
def subscription_signal_receiver(sender, customer, subscription, event_type, raw_data, **kwargs):
print "#" * 50
print "sender", sender
print "event_type", event_type
print "customer", customer
print "subscription", subscription
print "data", raw_data
print "#" * 50

@receiver(payment_signal)
def payment_signal_receiver(sender, customer, subscription, invoice, event_type, raw_data, **kwargs):
print "#" * 50
print "sender", sender
print "event_type", event_type
print "customer", customer
print "subscription", subscription
print "invoice", invoice
print "data", raw_data
print "#" * 50

Project details


Download files

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

Source Distribution

django-fastbill-0.1.9.tar.gz (16.1 kB view details)

Uploaded Source

File details

Details for the file django-fastbill-0.1.9.tar.gz.

File metadata

File hashes

Hashes for django-fastbill-0.1.9.tar.gz
Algorithm Hash digest
SHA256 514f862a710652147c7b8d795929685759c5a13d52546fd30688110b3f96ebfe
MD5 4bc657ebf09148a9ab9ffc12ecde323e
BLAKE2b-256 6c59dec88f1748b8fe56f544a5b2d33b8fdab3e59ba383b5c9adb560fd0eff29

See more details on using hashes here.

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