The Stripe Python API can handle most of the basic functionality you may need. I currently use jkoelker's library in one of my projects since it allows me to integrate with Stripe webhook events as Pyramid events. This is really helpful for when I need to handle user subscriptions that expire or failed subscription payments. However, you don't need the library uploaded to Pypi in order to use it, if you are using pip, you can include the git project in your requirements.txt with the following line:
git+https://github.com/jkoelker/pyramid_stripe.git I've been meaning to talk to jkoelker for a few months to see about taking over this project though. Unfortunately, I haven't gotten around to it quite yet... On Fri, Mar 11, 2016 at 2:26 PM, Chris Rossi <[email protected]> wrote: > What would you need special to integrate with Pyramid? I use Stripe in a > Pyramid based website, but I have no idea what I would put in a > pyramid_stripe package. Just, you know, use the Stripe API--it's pretty > straightforward. > > Chris > > > On Fri, Mar 11, 2016 at 1:12 PM, Silviu Dicu <[email protected]> wrote: > >> Hi, >> >> I'm looking for a package that will allow payment management with Stripe >> integrated with Pyramid. >> >> Found https://github.com/jkoelker/pyramid_stripe but the author says is >> not updating it anymore nor >> he released it to pypi. >> >> thanks! >> >> -- >> You received this message because you are subscribed to the Google Groups >> "pylons-discuss" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To post to this group, send email to [email protected]. >> Visit this group at https://groups.google.com/group/pylons-discuss. >> For more options, visit https://groups.google.com/d/optout. >> > > -- > You received this message because you are subscribed to the Google Groups > "pylons-discuss" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/pylons-discuss. > For more options, visit https://groups.google.com/d/optout. > -- Vincent Catalano Software Engineer and Web Developer, (520).603.8944 -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/d/optout.
