Struggling on what library to use for each category. I prefer the simplest for each category.
Some advice please? Want to hear your experience on the pro & con if you tried them
payment
Thinking that I would offer both stripe and paypal payment option. django-payment should be the best? It’s maintained by jazzband and should work for both?
audit
Currently using django-reversion but I wonder if other 2 cover grounds that reversion doesn’t?
asset
I use django-compressor before, is any of the other 3 better?
This is a tough one to address within Django, because there are multiple ways for tables to be updated that don’t execute signals.
If you need to ensure that all changes are tracked, it must be done at the database layer.
If you’re looking for a “90%” solution, something like the django-auditlog appears to be an option. (However, it hasn’t been updated in 2 years, so I’d be concerned about its viability. It’s probably simple enough for you to maintain it if necessary.)The other two appear to handle two slightly different use-cases and may not necessarily address your requirements.