alipay for django
Project description
提供django下alipay直接支付接口
Quick start
Install:
pip install django_alipay2
Add “alipay” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'alipay', ][Optional] Include the alipay URLconf in your project urls.py like this:
url(r'^alipay/', include('alipay.urls')),Migrate:
python manage.py migrate
Add config ‘ALIPAY’ to settings.py like this:
# account below is for sandbox ALIPAY = { 'pid': '2088101122136241', 'key': '760bdzec6y9goq7ctyx96ezkz78287de', 'seller_email': 'overseas_kgtest@163.com', 'gateway': 'https://openapi.alipaydev.com/gateway.do?', 'server_url': 'http://localhost:8000' } # you may add an 'api_provider' to support multiple seller ALIPAY = { 'api_provider': 'some_package.sub_package.get_alipay_alipay' # input:seller_email, output:AlipayAPI }Create alipay redirect:
import uuid payment = AlipayPayment.objects.create( out_no=uuid.uuid4(), subject='充值', body='1年365元', amount_total=0.01, user=None, # 可以指定user seller_email='your_seller_email@domain.com', # reference_id='1' # 可选 ) return redirect('alipay_redirect', out_no=payment.out_no)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-alipay2-0.13.2.tar.gz
(13.4 kB
view details)
File details
Details for the file django-alipay2-0.13.2.tar.gz.
File metadata
- Download URL: django-alipay2-0.13.2.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.9.1 pkginfo/1.4.1 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/3.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c611d71485711e2110e5c7046146e439283798aa2c48e47f407d7bc20a0d6fe
|
|
| MD5 |
30fd428c46556daae904120f9b9fb7cf
|
|
| BLAKE2b-256 |
910be620a28c3c939eac58642f0abef7f3cf96d925f17eb3a361f3833b7b2443
|