mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
17 lines
442 B
Python
Executable file
17 lines
442 B
Python
Executable file
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from paypal.standard.forms import PayPalStandardBaseForm
|
|
from paypal.standard.ipn.models import PayPalIPN
|
|
|
|
|
|
class PayPalIPNForm(PayPalStandardBaseForm):
|
|
"""
|
|
Form used to receive and record PayPal IPN notifications.
|
|
|
|
PayPal IPN test tool:
|
|
https://developer.paypal.com/us/cgi-bin/devscr?cmd=_tools-session
|
|
"""
|
|
|
|
class Meta:
|
|
model = PayPalIPN
|
|
exclude = []
|