django-paypal icon indicating copy to clipboard operation
django-paypal copied to clipboard

A pluggable Django application for integrating PayPal Payments Standard or Payments Pro

Results 15 django-paypal issues
Sort by recently updated
recently updated
newest added

We were receiving intermittent timeout errors when making payments using the paypal pro libraries. passing the optional timeout parameter to urllib2.urlopen in _request fixes the issue.

I've added paymentaction to the payment form so that one can use the authorization/capture mode that paypal offers. Simply set 'paymentaction' : 'authorization' in the form's context. Cheers Michael

From was missing shipping option 2 which prompts the buyer for an address, and requires one before payment is taken. Also it was missing PayPal 'rm' variable which specifies the...

before now the paypal sandbox was used inconsistently this patch means that the sandbox will be used whenever django-paypal's TEST setting is true. This in turn is equal to the...

PayPal allows users to have more than one email address attached to their account. If such an email address is specified as RECEIVER_EMAIL, transaction's verification goes wrong because PayPal returns...

We added the italian locale. We also fixed a bug in pdt form due to an english date sended back from paypal while our locale is set in Italian.

Sane default image for payment button, fits with all the other buttons

I've refactored the PDT callback functionality into a decorator. This way, one can simply add the @pdt decoration to a view function and handle the PDT callback with custom logic.

Add a signal for PayPal notifying via IPN that a user's subscription failed a payment. This notification is crucial to respond to, because the event normally results in PayPal shortly...

Indicate the datetime format of all DateTimeFields so they can be correctly parsed. This change is made in particular for retry_at. When users create a subscription which later fails an...