python-payflowpro icon indicating copy to clipboard operation
python-payflowpro copied to clipboard

A simple Python client for PayPal's Payflow Pro API (HTTPS Interface).

Results 8 python-payflowpro issues
Sort by recently updated
recently updated
newest added

It appears this library provides no support for Secure Token and Transparent Redirect (i.e., parameters SECURETOKENID, CREATESECURETOKEN, and SILENTTRAN). Classes/Fields for these can easily be added and passed as 'extras',...

There seems to be no way to create a recurring billing profile to charge a PayPal account. For this we would need to provide a BAID parameter. Moreover, would it...

Thank you for all the hard work on this API. I noticed a slight issue when using the reference_transaction() method. The Payflow gateway would report back to me that I...

When i do: responses, unconsumed_data = client.credit_referenced(transid) From my Paypal manager / test mode, I can see a successful credit .. But unfortunately the amount is 1$ for some reason...

When querying recurring profiles that have old transactions the parse_parameters def (line 354) throws a KeyError, as not all data is returned. Below is an example of unconsumed data returned...

``` bash ********************************************************************** File "client.py", line 70, in __main__ Failed example: responses, unconsumed_data = client.profile_modify( profile_id='RT0000000002', extras=[ Profile(profilename="Joe Bloggs", start=052413,), CreditCard(acct=new_acct,expdate=new_expdate,cvv2=new_cvc,), ShippingAddress(shiptostreet="123 Main St.", shiptocity="Oakland", shiptofirstname="Joe", shiptolastname="Bloggs", shiptostate="CA", shiptocountry="US", shiptozip="94123"),...

Hello. Thanks for all the work on this library, you saved me a bunch of trouble, and came up with a pretty well designed solution, where I would've done a...

When you are querying RecurringProfiles, if any of the field names (FIRSTNAME, SHIPTOCITY, etc.) have accented characters (example: Andrés), python-payflowpro will come back with a UnicodeDecodeError: ``` UnicodeDecodeError: 'ascii' codec...