Some tips with integrating Stripe with a subscription-based Django application
I just finished integrating Stripe with a subscription-based Django application a few weeks ago for processing credit card payments. This was the first time I've used this service and found the Stripe API and documentation to be very well written. Below are some things I learned while working on this project.
Avoid storing any credit card data in your database if you can for Payment Card Industry (PCI) compliance
One of the main reasons to …