Re: Not sure if I am doing django-paypal correctly

2021-12-31 Thread lone...@gmail.com
I found a better article at: Better Django-paypal article . For the most part, it does a really thorough explanation of what needs to be done. There were some things that I had to adjust myself, but that was easy enough. My Go

Re: Not sure if I am doing django-paypal correctly

2021-12-30 Thread Joel Tanko
The code is really simple to implement, but I don't think the explanation was intuitive enough. You would need to create a signal like so #hooks.py from django.dispatch import Signal success_signal = Signal(providing_args=[]) #views.py from .hooks import success_signal ... # after payment succ

Re: Not sure if I am doing django-paypal correctly

2021-12-30 Thread lone...@gmail.com
Hey man, beggars cannot be choosers! Thank you! On Thursday, December 30, 2021 at 1:28:12 AM UTC-5 Yorben Verhoest wrote: > Hello > > I'm a Django Noobie and maybe I'm completely wrong about this but in my > app named "core", I have a file called apps.py where I register my signals. > I just fo

Re: Not sure if I am doing django-paypal correctly

2021-12-29 Thread Yorben Verhoest
Hello I'm a Django Noobie and maybe I'm completely wrong about this but in my app named "core", I have a file called apps.py where I register my signals. I just followed a tutorial as well so I can't yet explain what it does but if I had to guess is just to register the app with my signals. Jus

Not sure if I am doing django-paypal correctly

2021-12-29 Thread lone...@gmail.com
Hello all, I decided to try and accept payments on my web application. I have chosen the django-paypal application to help me out with this task. I found a decent walkthrough at: how-to-accept-paypal-payments-on-your-django-application