django-paypal

Django & PayPal integration

I am designing a website in Python (using Django), and I need to sell things through it. Can somebody help me with the source code to integrate the paypal-pro (do-direct payment) or else paypal-standard (express checkout)? ...

how to deal with returnurl in django-paypal for paypal WPP

I am now developing my site using django. In integrating my site with paypal, I use pluggable application "http://github.com/johnboxall/django-paypal". Although the document is very clear for "Using PayPal Payments Pro (WPP)", but I still have some questions, especially the relationship between "returnurl" and "confirm_template". #views...

Django PayPal & Additional Options

I'm using Django PayPal. PayPal has a list of options you can pass on your button. I'm trying to add some of these to my paypal_dict paypal_dict = { # ... # preopulate paypal checkout page "email": invoice.user.email, "first_name": invoice.user.first_name, "last_name": invoice.user.last_name, "address1": invoice...

django-paypal ExpressCheckout second step ???

Hi! i've been implementing django-paypal but when it return token and payerID where can i handle this? i put the confirm.html template but it doesn't show anything... By the way, im Using PayPal Payments Pro any idea ??? ...

django-paypal setup for paypal web site pro (wpp) signal issues

I'm using dcramer's fork of django-paypal and I've been successful in setting it up until now. I tried to connect 'paypal.pro.signals.payment_was_successful' to a listener I wrote but it sends the signal multiple times which is causing errors in my application. I've tried adding the 'dispatch_uid' to my connect statement but it still sen...

Multiple Items in django-paypal

I am using dcramer's version of django-paypal(but i think it shouldnt matter whether it is dcramer or johnboxall's). 1) How can i specify multiple items in my paypal_dict(to be used in PayPalPaymentsForm)? 2) Also, i need to suitably specify the shipping cost and the individual quantities in the Summary that appears in the Paypal screen...