In my django projects I have a series of external libraries that I use, such as the Stripe Python SDK and the Pusher Python SDK.
Is there a good way to instantiate these, so that I only use one instance everywhere? I was thinking I could instantiate it in settings.py
, but it seems a bit weird.
Go to Source
Author: aroooo