Hi everyone! I want to integrate an online payment method into my app. I haven't chosen one yet, I'm still looking. Any recommendations? A particular library or a Flask extension? Which service do you use? Thanks in advance!
Hi Andrés, 2011/9/24 Andrés Villalobos <andresalvivar@gmail.com>: > I want to integrate an online payment method into my app. I haven't > chosen one yet, I'm still looking. > > Any recommendations? A particular library or a Flask extension? > > Which service do you use? I use BrainTree in a large project and it's a great fit. http://www.braintreepayments.com/docs/python https://github.com/braintree/braintree_python In other projects, Matt Dawson and I use spreedly with PayPal, discussed here: http://flask.pocoo.org/mailinglist/archive/2011/6/17/paypal-integration-for-flask/#92647a8a80a5f9a4c5034ccd3f67ec1c Relevant mailing list discussions, especially around a Flask extension: http://flask.pocoo.org/mailinglist/archive/2011/6/17/paypal-integration-for-flask/ http://flask.pocoo.org/mailinglist/archive/2010/8/12/flask-payments/ http://flask.pocoo.org/mailinglist/archive/2010/7/31/flask-cash/ -Ron
BrainTree seems to be the recommeded service, but it's only for bussiness with physical presence in U.S :( Spreedly with PayPal seems to be a good option, I will look into it. Thanks to all for the information!
Hi Andres, Off the top of my head, I can think of 1)Striped (closed-beta) 2)Braintree 3)Paypal Also, someone released a payment processing extension for Django a few days ago. Maybe his code can give you some additional inspirations. http://news.ycombinator.com/item?id=3029766 Hope this helps. -Cheng-Han 2011/9/24 Andrés Villalobos <andresalvivar@gmail.com> > Hi everyone! > > I want to integrate an online payment method into my app. I haven't > chosen one yet, I'm still looking. > > Any recommendations? A particular library or a Flask extension? > > Which service do you use? > > Thanks in advance! >
On Sat, Sep 24, 2011 at 4:30 PM, Cheng-Han Lee <lee.chenghan@gmail.com>wrote: > Hi Andres, > > Off the top of my head, I can think of > > 1)Striped (closed-beta) > I have not used stripe (https://stripe.com/) but I find its business proposition to be the most simple and start-up friendly. Here is its python API:https://github.com/stripe/stripe-python.git I intend to use it soon:) > 2)Braintree > 3)Paypal > > Also, someone released a payment processing extension for Django a few days > ago. Maybe his code can give you some additional inspirations. > > http://news.ycombinator.com/item?id=3029766 > > Hope this helps. > > -Cheng-Han > > > 2011/9/24 Andrés Villalobos <andresalvivar@gmail.com> > >> Hi everyone! >> >> I want to integrate an online payment method into my app. I haven't >> chosen one yet, I'm still looking. >> >> Any recommendations? A particular library or a Flask extension? >> >> Which service do you use? >> >> Thanks in advance! >> > >