{ "info": { "author": "Colin Powell", "author_email": "colin@onecardinal.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python" ], "description": "Django Shop Stripe plugin\n============================\n\nA plugin to use stripe with django-shop.\n\nhttp://www.stripe.com\n\nInstallation\n--------------\n\nAdd `shop_stripe` to your INSTALLED_APPS variable in your settings.py file.\n\nNext, add a few configuration variables in the same file:\n\n SHOP_STRIPE_PUBLISHABLE_KEY='my-publishable-key'\n SHOP_STRIPE_PRIVATE_KEY='my-super-secret-private-key'\n \n SHOP_PAYMENT_BACKENDS = (\n ...\n 'shop_stripe.offsite_stripe.StripeBackend',\n ...\n )\n\nThat's it!\n\nUsage\n-------\n\nThanks to Stripe.com's wonderful jscript features, it's painfully simple to integrate.\n\nThe shop_stripe plugin uses all the default django-shop templates, and the most important for our purposes is:\n\n shop_stripe/payment.html\n\nHere's an example to handle Stripe test input:\n\n {% extends \"base.html\" %}\n \n {% block extra-head %}\n {% include \"_stripe_head.html\" %}\n {% endblock %}\n \n {% block content %}\n