{ "info": { "author": "Alexey Kuleshevich", "author_email": "lehins@yandex.ru", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "==============================\npython-wepay: Python WePay SDK\n==============================\n\n.. image:: https://readthedocs.org/projects/python-wepay/badge/?version=latest\n :target: https://readthedocs.org/projects/python-wepay/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/v/python-wepay.svg\n :target: https://pypi.python.org/pypi/python-wepay/\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/dm/python-wepay.svg\n :target: https://pypi.python.org/pypi/python-wepay/\n :alt: Number of PyPI downloads\n\n.. image:: https://landscape.io/github/lehins/python-wepay/master/landscape.png\n :target: https://landscape.io/github/lehins/python-wepay/master\n :alt: Code Health\n\n.. image:: https://img.shields.io/coveralls/lehins/python-wepay.svg\n :target: https://coveralls.io/r/lehins/python-wepay\n :alt: Tests Coverage\n\n.. image:: https://travis-ci.org/lehins/python-wepay.svg?branch=master \n :target: https://travis-ci.org/lehins/python-wepay\n :alt: Travis-CI\n\n\nFeatures\n--------\n\n* Make API calls in a very natural pythonic way, ex:\n\n.. code-block:: python\n\n >>> api = WePay(production=False, access_token='STAGE_243...')\n >>> response = api.account.create(\"name\", \"description\", type='nonprofit')\n >>> account_id = response['account_id']\n >>> callback_uri = \"https://example.com/ipn/account/%s\" % account_id\n >>> response = api.account.modify(account_id, callback_uri=callback_uri)\n >>> api.preapproval.create(\"short description\", \"daily\", amount=45.5, account_id=account_id)\n {'preapproval_id': 619202, 'preapproval_uri': 'https://stage.wepay.com/api/preapproval/619202'}\n\n* Validation of all required and optional parameters to each one of the calls.\n* Very easy construction of batch calls, simply by passing ``batch_mode=True`` to\n a call, ex:\n\n.. code-block:: python\n\n >>> call1 = api.checkout.create(1234, short_description, type, amount, batch_mode=True)\n >>> call2 = api.withdrawal.find(1235, sort_order='ASC', access_token='access_token_for_other_account', batch_mode=True)\n >>> response = api.batch.create(client_id, client_secret, [call1, call2])\n\n\nAbout\n-----\n\nThis package started as a part of `Django WePay Application\n`_, but I soon realized it could be\nuseful to other developers in Python community that do not use `Django\n`_. Originally it meant to be an extension of an\nofficial `Python WePay SDK `_, but instead\nit became a replacement. This package is also listed as a `third party Python\nSDK on WePay `_.\n\nStatus\n------\n\nProduction.\n\nRequirements\n------------\n\n* Python >= 2.7 or >= 3.2\n* Registered Application with WePay `production `_ site or\n it's `development `_ clone.\n* `six `_.\n* `requests `_ (optional):\n* `mock `_ (optional, for tests only)\n\nInstallation\n------------\n::\n\n pip install python-wepay\n\n\nDocumentation\n-------------\n\nhttp://python-wepay.readthedocs.org/en/latest/index.html\n\nLicense\n-------\n\nMIT licensed. See the bundled `LICENSE `_ file for more details.\n\n\nChangelog\n=========\n\n1.5.0\n-----\n\n* added ``/account/membership/`` calls.\n* added ``/user/mfa/`` calls.\n* New API version 2015-09-09 changes are reflected in this SDK version:\n\n * ``/withrawal/create`` is deprecated.\n\n* New API version 2015-08-15 changes are reflected in this SDK version:\n\n * ``/account/create`` now accepts both old and new style params.\n\n* removed deprecated call ``/user/resend_confirmation``.\n* ``/accout/create`` and ``/account/modify`` now accept ``country_options`` and\n ``fee_schedule_slot`` params\n* added restricted ``credit_card/transfer`` call.\n\n1.4.4\n-----\n\n* renamed ``user.resend_confirmation`` call to ``user.send_confirmation``.\n\n1.4.3\n-----\n\n* improved documentation.\n\n1.4.0\n-----\n\n* Removed backward compatibility with official `Python WePay SDK `_.\n* introduced ``WePayHTTPError``, which is a base exception for both ``WePayClientError`` and ``WePayServerError``\n* added ``cached_property`` decorator.\n* changed they way calls are initialized. This change doesn't affect the way calls are made.\n\n1.3.5\n-----\n\n* Fixed and improved error handling, new exceptions: ``WePayClientError`` and ``WePayServerError``.\n\n1.3.4\n-----\n\n* Connection ``timeout`` can be specified on per call basis.\n\n1.3.0\n-----\n\n* Python 3 compatible\n* Calls are made using `requests `_\n library by default (if installed), falls back to `urllib\n `_ if `requests`\n are not installed or if ``WePay`` is initialized with\n ``use_requests=False``.\n* ``WePayConnectionError`` is raised\n in case there is a problem connecting to WePay server, ex. timeout.\n* Addition of a full test suit.\n* Minor:\n\n * 'original_ip' and 'original_device' params are now optional in\n `/credit_card/create`.\n * ``silent`` mode is more flexible.\n * Moved ``SubscriptionPlan`` and ``SubscriptionCharge`` to their own modules.\n * Moved ``WePayWarning`` over to ``wepay.exceptions`` module.\n\n1.2.0\n-----\n\n* New API version 2014-01-08 changes are reflected in this SDK version:\n\n * implemented `/user/register` and `user/resend_confirmation` calls.\n * added `/account/get_update_uri` and `/account/get_reserve_details`\n * depricated `/account/add_bank`, `/account/balance`, `/account/get_tax`\n and `/account/set_tax` calls.\n\n* restructured SDK in such a way that all API objects are separate classes, so\n as an example, if we have a WePay instance ``api = WePay()`` and we want to\n make a `/account/find` call, it will look like this ``api.account.find()``\n instead of ``api.account_find()`` (notice **.** instead of **_**), although in\n this version both are equivalent, latter one is depricated and will be removed\n in version 1.3. Despite these changes lookup calls will be the same, ex.\n ``api.account(12345)``.\n\n* Added flexibility to use different API version per call basis. So it is now\n possible to make a depricated call like this: ``api.account.balance(1234,\n api_version='2011-01-15')``\n\n* added ``batch_reference_id`` keyword argument to each call that accepts\n ``batch_mode``\n\n\n1.1.2\n-----\n\n* Added required arguments to `/credit_card/create` call:\n\n * original_ip\n * original_device\n\n1.1.0\n-----\n\n* Added subscription calls:\n\n * `/subscription_plan`\n * `/subscription`\n * `/subscription_charge`\n\n* Few bug and spelling fixes.\n\n1.0.0\n-----\n\n* Initial release", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/lehins/python-wepay", "keywords": "wepay,payment,credit card", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "python-wepay", "package_url": "https://pypi.org/project/python-wepay/", "platform": "any", "project_url": "https://pypi.org/project/python-wepay/", "project_urls": { "Homepage": "https://github.com/lehins/python-wepay" }, "release_url": "https://pypi.org/project/python-wepay/1.5.0/", "requires_dist": [ "six" ], "requires_python": "", "summary": "Python SDK for WePay API (third party).", "version": "1.5.0" }, "last_serial": 1739532, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "4c5faf5b907888b2e274b880519764b0", "sha256": "e027684936218da71fecbb272d04ba1bd0b36bb63237a7cef4592eab4db2240b" }, "downloads": -1, "filename": "python-wepay-1.0.0.tar.gz", "has_sig": false, "md5_digest": "4c5faf5b907888b2e274b880519764b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4994, "upload_time": "2013-09-09T08:28:53", "url": "https://files.pythonhosted.org/packages/71/08/43b715c98e07ed97af0425ebee7cc4868e7094a4d91d04473b4d3442cda0/python-wepay-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "a91140364e35d3b8167b0e14c080f853", "sha256": "1e398fb935a5e8cab8b417c1a2f827f0ad871c96b8ce22dfa9e16fba0b30d555" }, "downloads": -1, "filename": "python-wepay-1.0.1.tar.gz", "has_sig": false, "md5_digest": "a91140364e35d3b8167b0e14c080f853", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7867, "upload_time": "2013-09-11T08:19:31", "url": "https://files.pythonhosted.org/packages/b5/43/35dcc3b6762f3b7a4048a1e9ce004261cea4f3d4de96fc6197681b406923/python-wepay-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "285914d492f8ccbfc3cefca0d96e8bd0", "sha256": "ccd910f121335ac62c4a886bb9b75c271910ed7cf53f00f927c274d74b17119d" }, "downloads": -1, "filename": "python-wepay-1.0.2.tar.gz", "has_sig": false, "md5_digest": "285914d492f8ccbfc3cefca0d96e8bd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7887, "upload_time": "2013-09-11T09:56:56", "url": "https://files.pythonhosted.org/packages/5b/cd/a3f02487da4999fb20f5d376b63e0c85bd73dd6428ef696786c2b9b0bf3d/python-wepay-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "a15dca1faa29f70a7c20ed6874493200", "sha256": "c42defcd30803019de7608547a67617ee250c9e28ff0da1c3e55702efa8e4d93" }, "downloads": -1, "filename": "python-wepay-1.0.3.tar.gz", "has_sig": false, "md5_digest": "a15dca1faa29f70a7c20ed6874493200", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7953, "upload_time": "2013-09-14T10:19:04", "url": "https://files.pythonhosted.org/packages/b5/71/6f2e8c09c853aa5ffe065a47fc1a06a06abb2237fd2b0f06f655f5dfd7a8/python-wepay-1.0.3.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "06c994a5bc5fb0ffe30af0a118f2dddc", "sha256": "9cf7b55573e1794d146f369dcdc4a69a1bb3a28dd3ade7715167825eb14e3b5d" }, "downloads": -1, "filename": "python-wepay-1.1.0.tar.gz", "has_sig": false, "md5_digest": "06c994a5bc5fb0ffe30af0a118f2dddc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9020, "upload_time": "2013-09-27T10:42:15", "url": "https://files.pythonhosted.org/packages/46/04/a187f2c913c9728b4ab52762b77f0b07140edef5327cc11ebe8c60a17a54/python-wepay-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "6972b6c7671543eed6476f52d61ae0a4", "sha256": "39e0d7c463968ba5db875b9482e4c377cf94c2bcc10757c65751834dcc245812" }, "downloads": -1, "filename": "python-wepay-1.1.1.tar.gz", "has_sig": false, "md5_digest": "6972b6c7671543eed6476f52d61ae0a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8990, "upload_time": "2013-10-01T06:17:22", "url": "https://files.pythonhosted.org/packages/8f/48/a96e85a93d9f18eb22ff014de7850daa3c25606d7c49288a69c85629f430/python-wepay-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "f15b3c2ac4fcad627aeba45705b70c0b", "sha256": "95e109b5da8d121660767aaf84838b4b38c2bd3143a7a4e31ad5945a55ee7329" }, "downloads": -1, "filename": "python-wepay-1.1.2.tar.gz", "has_sig": false, "md5_digest": "f15b3c2ac4fcad627aeba45705b70c0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8879, "upload_time": "2013-11-05T14:08:22", "url": "https://files.pythonhosted.org/packages/f8/db/385c5a608619929c731d10b99fce50b404cd03f7ccfb31971dc8c23401e1/python-wepay-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "a62e87aedaaedc68253ef8ad947c1449", "sha256": "023ec00d96120f8df9c348325b6ed074e3af7873906b515ed49a3170be4741ca" }, "downloads": -1, "filename": "python-wepay-1.1.3.tar.gz", "has_sig": false, "md5_digest": "a62e87aedaaedc68253ef8ad947c1449", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8953, "upload_time": "2013-11-11T23:55:02", "url": "https://files.pythonhosted.org/packages/7f/22/6add8a6d63ceb3a59d8016470cdb24d15a1be6135fe18c56f62e83ee352b/python-wepay-1.1.3.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "b4ee81735e51ea7e5aeb43110a98e2cf", "sha256": "d5922a79e13a79ef6dc1439d66ab6957bedfa965863d37cf9ccf1af2ba759bf6" }, "downloads": -1, "filename": "python-wepay-1.2.0.tar.gz", "has_sig": false, "md5_digest": "b4ee81735e51ea7e5aeb43110a98e2cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5834, "upload_time": "2014-01-13T07:10:31", "url": "https://files.pythonhosted.org/packages/17/ac/45c7c56235149561d870445049195788aa2a50b78aa0b10e3c01625323d6/python-wepay-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "73550fe74227b27b2ae7327f1d1f03cf", "sha256": "56f30b625248b1047bab3d8aa5726daad202eab79568706c19dc0be0ac223b79" }, "downloads": -1, "filename": "python-wepay-1.2.1.tar.gz", "has_sig": false, "md5_digest": "73550fe74227b27b2ae7327f1d1f03cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5886, "upload_time": "2014-01-15T23:38:46", "url": "https://files.pythonhosted.org/packages/3e/ad/2657f63c6065325df859f97b68699aaecbbeba74b4980492626184119b57/python-wepay-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "0b3f17ed252237ac81236f3ecc5393a4", "sha256": "929ebdc6034e760c245b2f4c1d802be14f5e71bfce4f80a237aadc9e31045807" }, "downloads": -1, "filename": "python-wepay-1.2.2.tar.gz", "has_sig": false, "md5_digest": "0b3f17ed252237ac81236f3ecc5393a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11918, "upload_time": "2014-01-16T00:24:16", "url": "https://files.pythonhosted.org/packages/c2/af/6ca9924d802813a967fafe5413ce362406fa46c7dd2c3d4389aaa55412ed/python-wepay-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "7545575f50d920d6a5f45ad285a84a4b", "sha256": "d76cd1e8d4d2e827aabaee15f243eac9440e8cd7e778382c38f71732ab4bcb9b" }, "downloads": -1, "filename": "python-wepay-1.2.3.tar.gz", "has_sig": false, "md5_digest": "7545575f50d920d6a5f45ad285a84a4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11991, "upload_time": "2014-04-01T03:40:29", "url": "https://files.pythonhosted.org/packages/f9/65/37dff631aba132f080e71d5936100e9cab66a33a829d2d383da66392e796/python-wepay-1.2.3.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "dddde001401eacb3fe8f82eba33197ef", "sha256": "a39ee1a36c2d98eabaf6840b607d0eb00b5812d8c6ca2153d8c49a275bdcaf62" }, "downloads": -1, "filename": "python-wepay-1.3.0.tar.gz", "has_sig": false, "md5_digest": "dddde001401eacb3fe8f82eba33197ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40163, "upload_time": "2014-04-24T03:40:25", "url": "https://files.pythonhosted.org/packages/4d/62/4ba8ec097c0a4de8896221681ebcfb589e188038d8004bc0340e8e6183b7/python-wepay-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "3f84efdaf0ad550a2e419af7303b64be", "sha256": "9c5b288f10bdd74a03c41697ed59528bf2cc132bad38b9de66a5859c50ebf6b3" }, "downloads": -1, "filename": "python-wepay-1.3.1.tar.gz", "has_sig": false, "md5_digest": "3f84efdaf0ad550a2e419af7303b64be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40141, "upload_time": "2014-04-24T04:04:30", "url": "https://files.pythonhosted.org/packages/b6/de/c4d3d740c598cbb2e385c016ee897862e64f528982125855938f6afa72e5/python-wepay-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "c73d35cb6aef5d98f225b3fcced9a5f7", "sha256": "6cc58f269362d3fcb9a278df50cbf6982e5f7bd48e7dbf681f873f0c055e7249" }, "downloads": -1, "filename": "python-wepay-1.3.2.tar.gz", "has_sig": false, "md5_digest": "c73d35cb6aef5d98f225b3fcced9a5f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40168, "upload_time": "2014-04-24T04:12:00", "url": "https://files.pythonhosted.org/packages/2c/15/a991c16cb61d99df19cbeb9e6ce804c2fea962ffa740e935350716bba368/python-wepay-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "47628ea895a3e372f9818bddb470fdbf", "sha256": "33b07bac7b2dcd6f95914a494de25e8fdcb20f59299364d806712ec757b15f13" }, "downloads": -1, "filename": "python-wepay-1.3.3.tar.gz", "has_sig": false, "md5_digest": "47628ea895a3e372f9818bddb470fdbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40490, "upload_time": "2014-04-24T05:11:05", "url": "https://files.pythonhosted.org/packages/55/f2/463fb9c2daccf7e12fbf3e4ab99e50cee1f60570d8a5f033222688fe7d94/python-wepay-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "37418a2d615bd7e5ffe3be6992ad6d8d", "sha256": "68f5da7aa34bd10bcc4936a26552d4a66261688dbec15f32e1287fb900f0f773" }, "downloads": -1, "filename": "python-wepay-1.3.4.tar.gz", "has_sig": false, "md5_digest": "37418a2d615bd7e5ffe3be6992ad6d8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41335, "upload_time": "2014-07-28T23:54:14", "url": "https://files.pythonhosted.org/packages/9f/3b/6878a950b5119296c24db690812a5dd268db921ba2edae6462232d95ae5b/python-wepay-1.3.4.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "ce64b537e0843fafcd357dbc27c41411", "sha256": "030c8e7adfc4d3402966531967d27a2e1fdb573083043491c19f9d82c4f7697f" }, "downloads": -1, "filename": "python_wepay-1.3.5-py2-none-any.whl", "has_sig": false, "md5_digest": "ce64b537e0843fafcd357dbc27c41411", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 37860, "upload_time": "2014-08-16T21:47:28", "url": "https://files.pythonhosted.org/packages/6a/e6/b10d88841f271ce9c3262b3beb8e0a2f9fc5e2d18cbe510852b931121fc5/python_wepay-1.3.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0671a4133a6cd72d84db2802b0b3a709", "sha256": "9bcd9bd7c8c0f6af3468f6ad1bacd043f963e72c8d829e9bb500ee89d1049b39" }, "downloads": -1, "filename": "python-wepay-1.3.5.tar.gz", "has_sig": false, "md5_digest": "0671a4133a6cd72d84db2802b0b3a709", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42429, "upload_time": "2014-08-16T21:47:31", "url": "https://files.pythonhosted.org/packages/84/07/488b2d1cfcffebbe9ced0299ad902ffae4e2df367b3337504d9fae36d8ee/python-wepay-1.3.5.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "173173ab89584f4c16a04e896ca52ca2", "sha256": "3f195eb3c7a1bb922340b03e59027a6e1b5e5af340d3550ed3822924b159d4f6" }, "downloads": -1, "filename": "python_wepay-1.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "173173ab89584f4c16a04e896ca52ca2", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 37114, "upload_time": "2014-08-26T09:25:02", "url": "https://files.pythonhosted.org/packages/90/02/84dabb7662fd624b83d6cdb7d6cb9965261b93ac231ed98ed95accb0fe43/python_wepay-1.4.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d5a74bef2bd72f3aae4ecdf25a51272f", "sha256": "a33042092973a7fe659f0c47a031145bec53bc68beb5dc8a20e1157b5b6a25ba" }, "downloads": -1, "filename": "python-wepay-1.4.0.tar.gz", "has_sig": false, "md5_digest": "d5a74bef2bd72f3aae4ecdf25a51272f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41544, "upload_time": "2014-08-26T09:25:04", "url": "https://files.pythonhosted.org/packages/ae/5f/13b32c8aa458089113178fbf47c93e09535158beb1d83e5e5d1de0c09ed6/python-wepay-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "b4e29e44fce2753d2f5092dd0a4fe374", "sha256": "02f20252252a16fe76374fb1e79064b60d08d72733ccacb88c4948c4f593ebac" }, "downloads": -1, "filename": "python_wepay-1.4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "b4e29e44fce2753d2f5092dd0a4fe374", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 37419, "upload_time": "2014-08-26T10:13:12", "url": "https://files.pythonhosted.org/packages/b3/7e/ffa6aa477109caaf368b304dee05bc225b1df61456a9b3f1adf9c43abe5d/python_wepay-1.4.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "71d0accbaf5e5a477770991c9138b97e", "sha256": "fee161bce97f82ca72ccfe8093b1e70694fffd2f2d15d212266f88eefe6a2fbe" }, "downloads": -1, "filename": "python-wepay-1.4.1.tar.gz", "has_sig": false, "md5_digest": "71d0accbaf5e5a477770991c9138b97e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41776, "upload_time": "2014-08-26T10:13:15", "url": "https://files.pythonhosted.org/packages/27/fc/249adf0650d75d5887f7b8755a671b69f5563c86aa85e67f1a91b92abb06/python-wepay-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "3c48198041d96b986580b0472152ab80", "sha256": "1f1a7ce76fce1c86ee0e003575bcd1dc6e0282115ca5e729bc31d45ccf70ff02" }, "downloads": -1, "filename": "python_wepay-1.4.2-py2-none-any.whl", "has_sig": false, "md5_digest": "3c48198041d96b986580b0472152ab80", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 37445, "upload_time": "2014-08-26T11:21:02", "url": "https://files.pythonhosted.org/packages/ed/23/5ff1d4cc1f697466ea853b18d3ca18d9044dbd0ed73c4c2a2e9e8529ce6b/python_wepay-1.4.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2afde42e224cc70160c3a92087e39a13", "sha256": "fb68c2ac083087c88bcdd2e470c7c00f2a685a20ac68c889d5b9b585a5f2f417" }, "downloads": -1, "filename": "python_wepay-1.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2afde42e224cc70160c3a92087e39a13", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 37429, "upload_time": "2014-08-26T11:26:05", "url": "https://files.pythonhosted.org/packages/c8/f6/38b15fc4e6fe7e9b80849189efb2f67feb725e111411ea9e417c006904ad/python_wepay-1.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6bd34cd78ba4808256943a87532d7233", "sha256": "7bab197240e3e6c69f275069b95f729746cae6b3eae9ff170ce6dadf1261f84a" }, "downloads": -1, "filename": "python-wepay-1.4.2.tar.gz", "has_sig": false, "md5_digest": "6bd34cd78ba4808256943a87532d7233", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41822, "upload_time": "2014-08-26T11:21:04", "url": "https://files.pythonhosted.org/packages/53/75/6f908745c238d0b753f6f311e62dc790978437c24c6bf2d0b01086c8a544/python-wepay-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "3c24d3aa0e1d4add40504f6175e27f8f", "sha256": "956d094b5f096b59c36fade49ba0f74ef1bc96a4bea2d643da6e612c546f39fb" }, "downloads": -1, "filename": "python_wepay-1.4.3-py2-none-any.whl", "has_sig": false, "md5_digest": "3c24d3aa0e1d4add40504f6175e27f8f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 67526, "upload_time": "2014-08-27T11:26:11", "url": "https://files.pythonhosted.org/packages/87/00/6e162a6b898d387d26afeecce931c05826952452004f82ef2dc4a17ee487/python_wepay-1.4.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3db5f230d0d284fbf5607a9ec6c3cec", "sha256": "f9fb6818ba288cb144a4bee3f1ac4ae1f97041bc9d2bb5d94c3ca62a682a05ad" }, "downloads": -1, "filename": "python_wepay-1.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "a3db5f230d0d284fbf5607a9ec6c3cec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 37640, "upload_time": "2014-08-27T11:26:13", "url": "https://files.pythonhosted.org/packages/4f/d3/0c5b18eff32e477558419ff14fffebab97ccf805e26520976044b7d92f47/python_wepay-1.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc4136486fa5b8886e03abdd3e2bd005", "sha256": "b6c5d424cdf722631c79d7470db2c390c43fdfe7e5839f73848b084786b49b8c" }, "downloads": -1, "filename": "python-wepay-1.4.3.tar.gz", "has_sig": false, "md5_digest": "cc4136486fa5b8886e03abdd3e2bd005", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42525, "upload_time": "2014-08-27T11:26:16", "url": "https://files.pythonhosted.org/packages/bb/26/9aa41f9144532895fde49f5fe9e22902d081ac0eb3aff5ed5086e06ea893/python-wepay-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "2f73b054adc4dbf4d43d47c57cfdc805", "sha256": "5352a42bf57f8dd87c3272e2dceab5cd492484291faa88ac3f96c9da2abd43bf" }, "downloads": -1, "filename": "python_wepay-1.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2f73b054adc4dbf4d43d47c57cfdc805", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68177, "upload_time": "2015-03-19T23:59:27", "url": "https://files.pythonhosted.org/packages/72/00/2e4081f46d25b09e7cf4f85fdf4b3256b64051a2f2ad36dd3a16cdf055ca/python_wepay-1.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "39c417595292c52971d78fa874618e5d", "sha256": "6a03d9a9c5002b0e9f45621a0d6e50addc29de974f210916136f98e61d63692f" }, "downloads": -1, "filename": "python-wepay-1.4.4.tar.gz", "has_sig": false, "md5_digest": "39c417595292c52971d78fa874618e5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43907, "upload_time": "2015-03-19T23:59:30", "url": "https://files.pythonhosted.org/packages/86/ce/90a06d573d8b3a070f516f05e1b60ebb9c099217412cdca86503cdc0d552/python-wepay-1.4.4.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "f319a56b046ba3ffd2188acd3ff55295", "sha256": "541f8fcfdfddc72b2dfa0fee5d4093760076970d68abe0a53b08ed8fc61254fb" }, "downloads": -1, "filename": "python_wepay-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f319a56b046ba3ffd2188acd3ff55295", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 71059, "upload_time": "2015-09-26T06:51:23", "url": "https://files.pythonhosted.org/packages/cb/ab/12055fb602e3490a3ffda44ee0c7948ae4429983c8852097bebf9a81734b/python_wepay-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d177f2f6639af8776933a9f68371583", "sha256": "fcada2606db578e314d243ec14841d50b60e195af05e4703debf1fd9ef2ddebc" }, "downloads": -1, "filename": "python-wepay-1.5.0.tar.gz", "has_sig": false, "md5_digest": "9d177f2f6639af8776933a9f68371583", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49642, "upload_time": "2015-09-26T06:51:28", "url": "https://files.pythonhosted.org/packages/77/36/e30ac02434467e17ae3177cc98caa124043f8278717826b9c37e848ad651/python-wepay-1.5.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f319a56b046ba3ffd2188acd3ff55295", "sha256": "541f8fcfdfddc72b2dfa0fee5d4093760076970d68abe0a53b08ed8fc61254fb" }, "downloads": -1, "filename": "python_wepay-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f319a56b046ba3ffd2188acd3ff55295", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 71059, "upload_time": "2015-09-26T06:51:23", "url": "https://files.pythonhosted.org/packages/cb/ab/12055fb602e3490a3ffda44ee0c7948ae4429983c8852097bebf9a81734b/python_wepay-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d177f2f6639af8776933a9f68371583", "sha256": "fcada2606db578e314d243ec14841d50b60e195af05e4703debf1fd9ef2ddebc" }, "downloads": -1, "filename": "python-wepay-1.5.0.tar.gz", "has_sig": false, "md5_digest": "9d177f2f6639af8776933a9f68371583", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49642, "upload_time": "2015-09-26T06:51:28", "url": "https://files.pythonhosted.org/packages/77/36/e30ac02434467e17ae3177cc98caa124043f8278717826b9c37e848ad651/python-wepay-1.5.0.tar.gz" } ] }