Skip to main content

paypal for django

Project description

提供paypal支付相关的view和方法

Quick start

  1. Install:

    pip install django_paypal2
  2. Add “paypal” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'paypal',
    ]
  3. Add paypal config to settings.py:

    PAYPAL = {
        "SERVER_URL": "http://localhost:8000", # current site host and port
        "sandbox": False,  # True or False
        "client_id": "xxx",
        "client_secret": "", # you can get id and secret from paypal
    }
  4. Include the polls URLconf in your project urls.py like this:

    url(r'^paypal/', include('paypal.urls')),
  5. Migrate db

  6. Create payment and redirect to paypal

    from paypal.models import PaypalPayment
    
    pp = PaypalPayment(description="sample pay")
    pp.add_item("sample", 'USD', float(amount))
    pp.reference_id = "your reference id"
    pp.save()
    return redirect('paypal_redirect', uid=pp.uid)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-paypal2-1.0.2.tar.gz (11.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page