Search code examples
djangopaypaldjango-paypal

django-paypal change currency to euro


I'm using django-paypal and I want to charge my users in € not in $. I didn't find a way to change that behavior (the currency is always USD). But I'm very sure there is a way to do that.


Solution

  • Found it, just put:

    "currency_code": "EUR",            # currency
    

    in the dictionary.