[TurboGears] Re: What do people use for accepting credit cards?

2006-12-18 Thread Ian Wilson

So it turns out I have to support paypal as well as use cc's through
authorize.net.   So if you ever did find a python interface to paypal
that you could share that would be fanstatic.  Or if anyone could
explain roughly how paypal works that would be great.  Even if its
just you using it as a customer because I have no idea how you would
even write up a flow chart of the process. I don't really understand
their interface either... authorize.net was pretty straight forward.
I'm still reading though so maybe I'll get to it eventually.

Thanks...
-Ian

On 12/15/06, vinjvinj [EMAIL PROTECTED] wrote:

 You don't need to write one. The guys at satchmo (see my earlier post)
 have created a authorize.net payment module.


 


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
TurboGears group.
To post to this group, send email to turbogears@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~--~~~~--~~--~--~---



[TurboGears] Re: What do people use for accepting credit cards?

2006-12-15 Thread vinjvinj

You don't need to write one. The guys at satchmo (see my earlier post)
have created a authorize.net payment module.


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
TurboGears group.
To post to this group, send email to turbogears@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~--~~~~--~~--~--~---



[TurboGears] Re: What do people use for accepting credit cards?

2006-12-14 Thread Bob Ippolito

Most of the payment gateways I've looked at in the past two years
support something text or XML based over HTTPS. Having an Python
specific API available makes it a little easier and/or more obvious,
but it's definitely possible to write your own without that much
hassle. For example. USA ePay uses a simple HTTP POST:
http://www.usaepay.com/topics/api.html

Some gateways require you to use some binary extension module, but
those have a C API that you could at least wrap with something like
Pyrex. I doubt I'd use one of those gateways though.

-bob

On 12/14/06, Ian Wilson [EMAIL PROTECTED] wrote:

 Yeah wow get me on this thread.  I am trying to use Authorize.net.  I
 had to just follow their api docs to connect but it seems to work(at
 least in test mode so far).  I had really no choice because the
 company was already using Authorize.net.  Does paypal have an API you
 could just implement?

 -Ian


 On 12/13/06, vinjvinj [EMAIL PROTECTED] wrote:
 
  I've narrowed it down to trustcommerce and paflow pro from paypal?
  Trustcommerce has a python interface, but I can't find any python
  interface for paypal's offering.
 
  Thanks for your suggestions.
 
  Vineet
 
 
  
 

 


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
TurboGears group.
To post to this group, send email to turbogears@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~--~~~~--~~--~--~---



[TurboGears] Re: What do people use for accepting credit cards?

2006-12-14 Thread vinjvinj

I found a authorize.net implementation (in python) at:

http://satchmo.python-hosting.com/file/trunk/satchmo/payment/modules/authorizenet.py

It's released under absd license. The paypal integration through the
web payment standard program is pretty simple. It's getting the IPN and
PDT implemented is giving me some grief.

Trustcommerce is the most simple, however their fees are too high.


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
TurboGears group.
To post to this group, send email to turbogears@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~--~~~~--~~--~--~---



[TurboGears] Re: What do people use for accepting credit cards?

2006-12-14 Thread kuom

I have used Authorize.net at my previous job, they have examples on how
to interface with their payment gateway using perl, python, and PHP.  I
have used the perl's CPAN module
(Business::OnlinePayment:::AuthorizeNet) and the official
Authorize.net PHP4 scripts before.  I am not aware of any python
modules/packages for Authorize.net, and I am in fact planning on
writing one...


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
TurboGears group.
To post to this group, send email to turbogears@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~--~~~~--~~--~--~---



[TurboGears] Re: What do people use for accepting credit cards?

2006-12-13 Thread Ian Wilson

Yeah wow get me on this thread.  I am trying to use Authorize.net.  I
had to just follow their api docs to connect but it seems to work(at
least in test mode so far).  I had really no choice because the
company was already using Authorize.net.  Does paypal have an API you
could just implement?

-Ian


On 12/13/06, vinjvinj [EMAIL PROTECTED] wrote:

 I've narrowed it down to trustcommerce and paflow pro from paypal?
 Trustcommerce has a python interface, but I can't find any python
 interface for paypal's offering.

 Thanks for your suggestions.

 Vineet


 


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
TurboGears group.
To post to this group, send email to turbogears@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~--~~~~--~~--~--~---