BitPagos Bitcoin Payment Backend for Django Shop
This applicaiton is a bitpagos backend for django-SHOP, or any other shop system implementing its shop interface.
Add django-paypal and this project to your INSTALLED_APPS:::
INSTALLED_APPS = ( ... 'shop_bitpagos', ... )
Add 'shop_bitpagos.offsite_bitpagos.BitPagosBackend' to django-SHOP's SHOP_PAYMENT_BACKENDS setting.
Make sure you set following in settings.py:
SHOP_BITPAGOS_KEY
#found it at https://www.bitpagos.net/api/settings/
Optional settings:
SHOP_BITPAGOS_CURRENCY
#default USD
Set bitpagos notification url to: https://www.yoursite.com/shop/pay/bitpagos/ipn/ # /shop depends on the prefix used for django-shop
Set a cron to run periodically:
python manage.py bitpagos_check
Feel free to write any comment or suggestion for this project to [email protected]