Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Subscription web/desktop app [PYTHON]

Firstly pardon me if i've yet again failed to title my question correctly.

I am required to build an app to manage magazine subscriptions. The client wants to enter subscriber data and then receive alerts at pre-set intervals such as when the subscription of a subscriber is about to expire and also the option to view all subscriber records at any time. Also needed is the facility to send an SMS/e-mail to particular subscribers reminding them for subscription renewal.

I am very familiar with python but this will be my first real project. I have decided to build it as a web app using django, allowing the admin user the ability to view/add/modify all records and others to subscribe. What options do I have for integrating an online payment service? Also how do I manage the SMS alert functionality? Any other pointers/suggestions would be welcome.

Thank You

like image 404
slery Avatar asked Dec 21 '25 04:12

slery


1 Answers

Payment gateway integration:

  • Here is a detailed article about how to integrate the Authorize.net payment system into a Django project. Authorize.net is used by a few popular Django projects, including the Satchmo e-commerce store project.
  • django-paypal is a pluggable Django app which lets you connect to PayPal merchant services.

SMS alerts:

  • django-sms is a Django app which is "...designed to make sending SMS text messages as simple as sending an email." so might be a good start.

General Django

  • You didn't mention your knowledge level of Django itself; if you need to brush up on your Django skills I would highly recommend the book Django 1.0 Website Development.

I think it's also worth pointing out that the resources I've mentioned here were all found in the first few results of a Google search for each topic. These are the search terms I used:

  • django payment gateway integration
  • django paypal integration (because I knew of PayPal beforehand)
  • django sms alerts
like image 152
Wayne Koorts Avatar answered Dec 22 '25 19:12

Wayne Koorts



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!