Reputation: 13515
I am trying to implement Stripe payment https://stripe.com/ in my app. I need to include this library https://stripe.com/docs/libraries. I downloaded and installed it on Lib/site-packages. I checked in IDLE and import stripe
works. How do I include this in my app's folder?
Upvotes: 11
Views: 1492
Reputation: 101149
Just place the stripe
directory from the library in your app's root directory.
Upvotes: 13