{ "info": { "author": "Daniel Kaufhold", "author_email": "daniel.kaufhold@bitmazk.com", "bugtrack_url": null, "classifiers": [], "description": "Django Paypal Express Checkout\n==============================\n\nA Django application to integrate PayPal in your Django driven site.\n\nFeatures\n--------\n\nCurrently it only features a simple express checkout implementation for one\nitem or to allow a user to raise his account balance.\n\nSo if you e.g. have yearly payment for an account or only one item on sale,\nthis app is capable of doing the PayPal express checkout handling for you.\n\nCheck the \"Installation\" section on what you are yet able to set up.\n\n\nInstallation\n------------\n\nYou need to install the following prerequisites in order to use this app::\n\n pip install Django\n\nIf you want to install the latest stable release from PyPi::\n\n $ pip install django-paypal-express-checkout\n\nIf you feel adventurous and want to install the latest commit from GitHub::\n\n $ pip install -e git://github.com/bitmazk/django-paypal-express-checkout.git#egg=paypal_express_checkout\n\nAdd ``paypal_express_checkout`` to your ``INSTALLED_APPS``::\n\n INSTALLED_APPS = (\n ...,\n 'paypal_express_checkout',\n )\n\nHook this app into your ``urls.py``::\n\n urlpatterns = patterns('',\n ...\n url(r'^checkout/', include('paypal_express_checkout.urls')),\n )\n\n\nAdd your hostname to the following settting: ::\n\n HOSTNAME = 'http://example.com' # without trailing slash\n\nIn case you want to test your checkout view in the browser locally, you need\nto install something like `localtunnel `_ and set\nyour hostname to your localtunnel url: ::\n\n HOSTNAME = 'http://XXXX.localtunnel.me'\n\nFor testing and development you might want to set the PayPal URLs to the\nsandbox ones in your ``local_settings.py``: ::\n\n PAYPAL_API_URL = 'https://api-3t.sandbox.paypal.com/nvp'\n PAYPAL_LOGIN_URL = (\n 'https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token='\n )\n\nThe following setting will be the description of all payments that are\ndisplayed when the user logs into his PayPal account for checkout: ::\n\n SALE_DESCRIPTION = 'Your payment to Foobar Inc.'\n\n.. hint::\n\n This is not the description of an Item!\n\nFinally you need to set the following settings to the user, password and\nsignature PayPal will provide you with: ::\n\n PAYPAL_USER = 'username_merchant_api1.gmail.com'\n PAYPAL_PWD = 'your api password'\n PAYPAL_SIGNATURE = 'your api signature'\n\nDon't forget to run the South migrations::\n\n ./manage.py migrate paypal_express_checkout\n\n\nSettings\n--------\n\nIf you want to allow anonymous checkout set the\n``PAYPAL_ALLOW_ANONYMOUS_CHECKOUT`` to ``True``:::\n\n PAYPAL_ALLOW_ANONYMOUS_CHECKOUT = True # Defaults to False\n\n\nUsage\n-----\n\n**Creating Items**\n\nFirst you should add an ``Item`` to your project. They can be easily added and\nupdated via the Django admin.\nThere you set ``Item.name`` as the display name of your item,\n``Item.description`` for a further description and ``Item.value`` for the price\nof this item.\nYour customer will then be able to chose between the items you provide and set\na quantity for how much he wants to buy.\n\n**Overriding the form**\n\nIf you seek for a more complex solution, at this point we provide the\n``SetExpressCheckoutFormMixin`` to allow you to customize the form that is used\nto process the checkout procedure.\nThe minimum implementation should include: ::\n\n class MyForm(SetExpressCheckoutFormMixin):\n def get_items_and_quantities(self):\n item = Item.objects.get(pk=1)\n quantity = 1\n return [(item, quantity), ]\n\nHave a look at our ``paypal_express_checkout.forms.SetExpressCheckoutForm``\nexample implementation for a better understanding.\n\nFurther we supply a simpe settings hook to tell the app, what new form to use.\nJust set ``PAYPAL_SET_CHECKOUT_FORM`` to the correct form class like so:::\n\n PAYPAL_SET_CHECKOUT_FORM = 'myproject.forms.MyForm'\n\n\n**Logging**\n\nEach payment is logged in our provided ``PaymentTransaction`` model.\nIt can also easily be accessed via Django admin and will provide you with\ninformation to identify every payment in every status.\n\nOccasionally there might be an error during the payment process, that the will\nbe logged in the ``PaymentTransactionError`` model.\nIt stores information about exceptions or errorous PayPal responses that occur\nduring a payment.\n\nContribute\n----------\n\nIf you want to contribute to this project, please perform the following steps::\n\n # Fork this repository\n # Clone your fork\n $ mkvirtualenv -p python2.7 django-paypal_express_checkout\n $ pip install -r requirements.txt\n $ ./logger/tests/runtests.sh\n # You should get no failing tests\n\n $ git co -b feature_branch master\n # Implement your feature and tests\n # Describe your change in the CHANGELOG.txt\n $ git add . && git commit\n $ git push origin feature_branch\n # Send us a pull request for your feature branch\n\nWhenever you run the tests a coverage output will be generated in\n``tests/coverage/index.html``. When adding new features, please make sure that\nyou keep the coverage at 100%.\n\nUpdating from v1.2 and below\n----------------------------\n\nv1.3 of this app has updated the ``factory_boy`` requirements to >2.0.0\n``factory_boy`` though has a dependency for setuptools>=0.8, which you need to\ninstall before upgrading your virtual environment. Otherwise running ``pip\ninstall --upgrade -r requirements.txt`` will fail.\n\n\nRoadmap\n-------\n\nCheck the issue tracker on github for milestones and features to come.\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bitmazk/django-paypal-express-checkout", "keywords": "django", "license": "The MIT License", "maintainer": "", "maintainer_email": "", "name": "django-paypal-express-checkout", "package_url": "https://pypi.org/project/django-paypal-express-checkout/", "platform": "OS Independent", "project_url": "https://pypi.org/project/django-paypal-express-checkout/", "project_urls": { "Homepage": "https://github.com/bitmazk/django-paypal-express-checkout" }, "release_url": "https://pypi.org/project/django-paypal-express-checkout/1.9.1/", "requires_dist": null, "requires_python": "", "summary": "A reusable Django app to include a PayPal payment flow to your site.\n", "version": "1.9.1" }, "last_serial": 2603602, "releases": { "0.2": [ { "comment_text": "", "digests": { "md5": "672f09730119cbd81dc8076dd23876a4", "sha256": "3db0fea2466d8e1e9ab79281c2e813d239ff1f481762d9851f9b29f60b363a9f" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.2.tar.gz", "has_sig": false, "md5_digest": "672f09730119cbd81dc8076dd23876a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17437, "upload_time": "2013-04-04T05:08:13", "url": "https://files.pythonhosted.org/packages/54/b9/2ddad1361c06209896da0e5672e239faf46fbaef8bc107d0f1a22ebb6eec/django-paypal-express-checkout-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "7841d6c8e3fc507919a842ba26520ad1", "sha256": "c7990843b27536ece0bd31c2858c4102996df2434bfbeb1ad0afb0d0d4f7fa0d" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.3.tar.gz", "has_sig": false, "md5_digest": "7841d6c8e3fc507919a842ba26520ad1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18964, "upload_time": "2013-04-05T04:29:11", "url": "https://files.pythonhosted.org/packages/d9/d7/74013ab5c2744d6f10ace3cb086825e9b833e7864f28599c1bb2fe11525a/django-paypal-express-checkout-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "97f7727c7f3d18f498dfd06e7ca4b7a2", "sha256": "4bd65592c50bc5b9da0f660200064a78934e1c4868639211f536c99113c0051f" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.4.tar.gz", "has_sig": false, "md5_digest": "97f7727c7f3d18f498dfd06e7ca4b7a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20747, "upload_time": "2013-05-17T04:19:34", "url": "https://files.pythonhosted.org/packages/bb/eb/b00c4cc0b55d3dd8727c3e5ed10f6f83439981a0da90422fb1f823e462db/django-paypal-express-checkout-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "ed339706ce13dde1ce6c4b903a83097a", "sha256": "07accfce105652e33385c1ff8a8f7e06323660c2b8398eda8583bf42385f9c57" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.4.1.tar.gz", "has_sig": false, "md5_digest": "ed339706ce13dde1ce6c4b903a83097a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20771, "upload_time": "2013-05-17T05:03:31", "url": "https://files.pythonhosted.org/packages/e0/e4/5426c6c2901d98319f455b1466d5d822c8146c92456f9eb96c8fa1b42dc3/django-paypal-express-checkout-0.4.1.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "a2ca572ecfce4b6cab16998ade4dfb67", "sha256": "06ce1553edc6aac96e2a99958fadb711e15eb556b4e0fa57ded92589afd3e1e7" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.5.tar.gz", "has_sig": false, "md5_digest": "a2ca572ecfce4b6cab16998ade4dfb67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20804, "upload_time": "2013-05-17T09:03:26", "url": "https://files.pythonhosted.org/packages/63/fa/3135815f5a8d9c26ffb812bd05815de7b565c91ef53d20cccc7c787d438b/django-paypal-express-checkout-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "66356c17cbf15fcf83053136ae17ca3a", "sha256": "7ead68bd991f466f20ab50057220101005386e0bcb5f73645d5ca44276bf369a" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.5.1.tar.gz", "has_sig": false, "md5_digest": "66356c17cbf15fcf83053136ae17ca3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20813, "upload_time": "2013-05-17T09:13:52", "url": "https://files.pythonhosted.org/packages/b3/fb/deb43548eef184b1df113c3e594c339c5aacc4a01ca091a142a2f247c760/django-paypal-express-checkout-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "889f0ed4282a14a4078381be3faf9381", "sha256": "080e4165a36fd95f4f13bdcc6a1745dcb1d620106963aaea60a42b53516a3c09" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.5.2.tar.gz", "has_sig": false, "md5_digest": "889f0ed4282a14a4078381be3faf9381", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21354, "upload_time": "2013-05-31T09:49:24", "url": "https://files.pythonhosted.org/packages/1f/58/730b6f7b7a1bc83264cce1d93a1ee3e6e07c1f186a257ffae1d16cab1671/django-paypal-express-checkout-0.5.2.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "204ed105c97cb382124a879d661b77e0", "sha256": "2404cf900f3f0759def08ed57cf1c75d03f5a6cf53f93d641893da16481579cc" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.6.tar.gz", "has_sig": false, "md5_digest": "204ed105c97cb382124a879d661b77e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22160, "upload_time": "2013-07-23T09:31:57", "url": "https://files.pythonhosted.org/packages/8a/74/16fb077e1f69320fa507d762173374d07f7a6b622545a41badc8a5f3be55/django-paypal-express-checkout-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "f6d21aa02daa77acb1b2411b572b2601", "sha256": "22abbfe59482c1ad92fa167b03d64688b8b5937352ae001410ac5f2db9362c7f" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.7.tar.gz", "has_sig": false, "md5_digest": "f6d21aa02daa77acb1b2411b572b2601", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30661, "upload_time": "2013-09-07T11:45:32", "url": "https://files.pythonhosted.org/packages/89/b2/714599f79004df8b0686f018a4e4c914abadfa78ba6468066fbdd97604f7/django-paypal-express-checkout-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "8a7efe988b057d95c742eb20166da0a0", "sha256": "4232999e012107ea6713aa8149924ee2d325c274489262f678617a3267443274" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.7.1.tar.gz", "has_sig": false, "md5_digest": "8a7efe988b057d95c742eb20166da0a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36615, "upload_time": "2013-09-07T14:13:05", "url": "https://files.pythonhosted.org/packages/8b/e0/499767ba26e89d4c8ebcd591c7850b2865aad3e506b386bf65d59c530a6b/django-paypal-express-checkout-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "17b2895247c60117e754ce26b58ebf2a", "sha256": "b392f7c086af4eda795ddb5cbc69206a3480ecce1afd104e06938a481f720d78" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.7.2.tar.gz", "has_sig": false, "md5_digest": "17b2895247c60117e754ce26b58ebf2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37428, "upload_time": "2013-09-07T17:01:20", "url": "https://files.pythonhosted.org/packages/b8/b0/305ae8e96ab65344e70efe4ca3880b71216e60de07890b79cf6ca80369d1/django-paypal-express-checkout-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "095312005637685284bec5941f6da4e5", "sha256": "9d8ee4bd1423b1063533710f6b08d6fc6a449de9976c14ec97b50365623f48c8" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.7.3.tar.gz", "has_sig": false, "md5_digest": "095312005637685284bec5941f6da4e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23443, "upload_time": "2013-09-12T12:18:33", "url": "https://files.pythonhosted.org/packages/07/21/b40d82c4034c2ef9a660de0bd0932235847eeffcb1364ec56e97de935c87/django-paypal-express-checkout-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "3921e398bdd1681113f150743da0abab", "sha256": "56ddd425fecc5648126764380698af160930003f77efcc33e1a1d7a574a7a136" }, "downloads": -1, "filename": "django-paypal-express-checkout-0.7.4.tar.gz", "has_sig": false, "md5_digest": "3921e398bdd1681113f150743da0abab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23462, "upload_time": "2013-09-12T12:37:56", "url": "https://files.pythonhosted.org/packages/5d/4a/ed35d087dc23d27b53274ac031ba46dcd173450f17413e9c73b471e3f696/django-paypal-express-checkout-0.7.4.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "4a1c6436fa5920f8fcfac732201eb3dd", "sha256": "5f2e0f723a3d0e25b9e63d533266d9d53c4b97c0b8a0e032c8984cc48d14e114" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.0.tar.gz", "has_sig": false, "md5_digest": "4a1c6436fa5920f8fcfac732201eb3dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24718, "upload_time": "2013-09-24T18:37:29", "url": "https://files.pythonhosted.org/packages/a8/d0/99aa19f7b3948f99364ba9ebfa98aa89795f5428d98d3a2b77738fb8ff3f/django-paypal-express-checkout-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "3aafb7e6e6ae9e255ecb17a086cf5c84", "sha256": "a99ccdd1b578cd334ef913530a165d7298b4992ea1c2069cf3bee60a5345c511" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.1.tar.gz", "has_sig": false, "md5_digest": "3aafb7e6e6ae9e255ecb17a086cf5c84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24796, "upload_time": "2013-09-24T18:58:12", "url": "https://files.pythonhosted.org/packages/8e/f0/f2ba1ca00ca3cb38f49c4761a92481a676fb4604b0c743b7337aa4798b37/django-paypal-express-checkout-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "4c0f215a9b8c91154314b16fa0392d9e", "sha256": "a4cae2695c2ab22acaa4711223c7445e58db374c8fe9d6cbbdecd2a94be13a86" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.1.1.tar.gz", "has_sig": false, "md5_digest": "4c0f215a9b8c91154314b16fa0392d9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24784, "upload_time": "2013-10-06T16:12:06", "url": "https://files.pythonhosted.org/packages/84/f4/72c1a5d3005480ff7f9f0a66d47ea4845ad2b569db295812efb5e4714e94/django-paypal-express-checkout-1.1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "2628ba1e6f2eab0770248c03a31ba8c6", "sha256": "aa39bca0a7d529fcd61f66609fd7f41a920d8a3643f8320b77eb896c96fe0817" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.2.tar.gz", "has_sig": false, "md5_digest": "2628ba1e6f2eab0770248c03a31ba8c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25023, "upload_time": "2013-11-02T05:58:51", "url": "https://files.pythonhosted.org/packages/63/1e/2d0c785ae555be4920ba0757821495e6eafa4a2705049d157484ba7d11ca/django-paypal-express-checkout-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "d7d4243b6439c30587770663c7ead61f", "sha256": "e07efc90fe42ac643f254e3348ebeda5346a6cfa66c780a850b6859ad2ccc8ee" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.3.tar.gz", "has_sig": false, "md5_digest": "d7d4243b6439c30587770663c7ead61f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24150, "upload_time": "2013-12-04T14:48:56", "url": "https://files.pythonhosted.org/packages/46/95/96a511d6b12ad1208dfe709bbce8592cafaf1b418ca21cd345f39ff5c345/django-paypal-express-checkout-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "bb25eea43a1eb95a8cc3f3331fcb0ca9", "sha256": "9bcd11344a42cb8af8867e2ff62724149c86d3d7d17e1ddf8d9c38d4936c762a" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.4.tar.gz", "has_sig": false, "md5_digest": "bb25eea43a1eb95a8cc3f3331fcb0ca9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25505, "upload_time": "2013-12-27T01:40:10", "url": "https://files.pythonhosted.org/packages/7f/46/5ab48c88834c0764088a1480fee4349c0d10074b1a449380fd458d7f57e6/django-paypal-express-checkout-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "02b456584d51a42222779a7955a25901", "sha256": "c4bd6f231ab486a717cb5ebaf503ce5130107452f0122d309bf77147fde569a3" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.5.tar.gz", "has_sig": false, "md5_digest": "02b456584d51a42222779a7955a25901", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25537, "upload_time": "2014-01-11T06:53:03", "url": "https://files.pythonhosted.org/packages/ee/b2/e13993b09371a89b0e56fd70e1e874d3e58d543284fc44f090a8568cf98f/django-paypal-express-checkout-1.5.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "1ae247b8f64dc0df9bffc4b71f523f7b", "sha256": "515fa8c49499aa480f00c41053e021397374ebcf220647699b98055ecad64a0d" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.5.1.tar.gz", "has_sig": false, "md5_digest": "1ae247b8f64dc0df9bffc4b71f523f7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30769, "upload_time": "2014-01-15T11:07:01", "url": "https://files.pythonhosted.org/packages/03/04/7b39cca450a3cce0817017b3e3148308e08ae002ecdfad5903ca3e1999c9/django-paypal-express-checkout-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "2a9f3b682cb1871edebda959fa2bd4b3", "sha256": "42545b5cb084bbd406a90b5c359c6e19d5b231f4e120d66ebae4d87ba62ec665" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.5.2.tar.gz", "has_sig": false, "md5_digest": "2a9f3b682cb1871edebda959fa2bd4b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25683, "upload_time": "2014-03-21T05:58:28", "url": "https://files.pythonhosted.org/packages/75/89/feb05d79fa581ce6f41bc31e232788efcec77e7d3d0fd0d459ec888c2491/django-paypal-express-checkout-1.5.2.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "eca0340791ca5d57287f3ddd50f37906", "sha256": "9f95869926966d4952b3cebd3987bebf889fb039f86481acba2e7554c72f0e5d" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.6.tar.gz", "has_sig": false, "md5_digest": "eca0340791ca5d57287f3ddd50f37906", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25760, "upload_time": "2014-03-21T11:13:13", "url": "https://files.pythonhosted.org/packages/cf/9b/6c598975dee8d0f149e4330d390863d395f5c5f0bf41b5e594feeb07d0d5/django-paypal-express-checkout-1.6.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "3b9e3a5114e458fafa3526084b01ebc0", "sha256": "a3b4b9d41d323cd25ce0545725b30b0366586e44cd77e57bae8565a7558df812" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.7.tar.gz", "has_sig": false, "md5_digest": "3b9e3a5114e458fafa3526084b01ebc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26297, "upload_time": "2014-04-07T10:39:20", "url": "https://files.pythonhosted.org/packages/0e/2d/8d86c75bd48d0fbafde53b7c548b417f2c048766e707b1b217e0caf6b5be/django-paypal-express-checkout-1.7.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "9039e5edc6cc6c1fb50893596f11fb7e", "sha256": "4326dd128abea29fb7e3d5bff4fbcac59d04d31b57efe835ab0ce5e6e2fd774b" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.7.1.tar.gz", "has_sig": false, "md5_digest": "9039e5edc6cc6c1fb50893596f11fb7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23460, "upload_time": "2014-07-15T14:02:24", "url": "https://files.pythonhosted.org/packages/fc/ad/d34d1b225628ca9357e1cc69ab75a827e4717b1147c6cd1ff3c532787477/django-paypal-express-checkout-1.7.1.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "3c374ea0d22847f55fe1a3f73cc67195", "sha256": "d1e70433c2dee54799721fc9e639f338796e919537a3054becadbdc8837eaa3f" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.8.tar.gz", "has_sig": false, "md5_digest": "3c374ea0d22847f55fe1a3f73cc67195", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26228, "upload_time": "2014-07-21T13:33:41", "url": "https://files.pythonhosted.org/packages/c9/c6/a5796340100f5655c191864de6c6583634aa53e46f4d02e182db7bf96671/django-paypal-express-checkout-1.8.tar.gz" } ], "1.9": [ { "comment_text": "", "digests": { "md5": "51d90e52946caf369db5e5a20cab860f", "sha256": "6efe9f713440c47ab1361554871ac1ef70313d2bc101f2ff773ed8ad1b610b13" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.9.tar.gz", "has_sig": false, "md5_digest": "51d90e52946caf369db5e5a20cab860f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26199, "upload_time": "2017-01-14T22:02:09", "url": "https://files.pythonhosted.org/packages/57/ff/08e37ab8e9d4c0e0732c669583efce4c1502bd5cacdf7dc2742d233ba347/django-paypal-express-checkout-1.9.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "5b4efee878be5651b6eb966b051fad39", "sha256": "8400df3ef929df99597189dcc0183c9526d60590737141fb98bc09347ac04cbb" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.9.1.tar.gz", "has_sig": false, "md5_digest": "5b4efee878be5651b6eb966b051fad39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26217, "upload_time": "2017-01-28T13:16:43", "url": "https://files.pythonhosted.org/packages/3f/91/b3ab32378df88bd6f1f7dfc13ed7d60e66770bac021232ed40862b968ece/django-paypal-express-checkout-1.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5b4efee878be5651b6eb966b051fad39", "sha256": "8400df3ef929df99597189dcc0183c9526d60590737141fb98bc09347ac04cbb" }, "downloads": -1, "filename": "django-paypal-express-checkout-1.9.1.tar.gz", "has_sig": false, "md5_digest": "5b4efee878be5651b6eb966b051fad39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26217, "upload_time": "2017-01-28T13:16:43", "url": "https://files.pythonhosted.org/packages/3f/91/b3ab32378df88bd6f1f7dfc13ed7d60e66770bac021232ed40862b968ece/django-paypal-express-checkout-1.9.1.tar.gz" } ] }