About Saving Prices
Stripe payment gateway operates amounts in cents. Convert cents to a decimal price as follows:
from decimal import Decimal
amount_in_cents = 1499
payment.amount = Decimal(amount_in_cents) / 100
Tips and Tricks Programming Django 5.x Django 4.2 Django 3.2 Python 3 Stripe
Also by me
Django Paddle Subscriptions app
For Django-based SaaS projects.
Django GDPR Cookie Consent app
For Django websites that use cookies.