Reputation: 343
Still new in python. I am trying to creating an e-commerce website where tutors can sell their online courses and e-books, using Flask. Now I am faced with new challenge. How can I send payment to multiple customers all at once? Can I create a script using flask to send payment? is there any third party platform I can use for such purpose ? Is it a good idea to save user's bank account details in database? please, I need your reply.
Upvotes: 0
Views: 355
Reputation: 99
Short answer is no.
You need to a) accept money b) send money. Those are not flask questions or python questions.
You need a service (like Stripe) that is set up to accept payments and send payments and you need your flask app to connect to that service and provide the necessary instructions using their API.
Checkout Stripe Connect as a product that does this. https://stripe.com/gb/connect
Upvotes: 1