{ "info": { "author": "Swagger Contributors, David Stancu", "author_email": "david@dwolla.com", "bugtrack_url": null, "classifiers": [], "description": "dwolla-swagger-python\n=====================\n\nThe new Dwolla API V2 SDK, as generated by `this fork of\nswagger-codegen `__.\n\nVersion\n-------\n\n1.0.9\n\nInstallation\n------------\n\n``dwollaswagger`` is available on\n`PyPi `__, and therefore can\nbe installed automagically via\n`pip `__.\n\n*To install via pip:*\n\n::\n\n pip install dwollaswagger\n\n*To add to ``requirements.txt`` and make this a permanent dependency of\nyour package:*\n\n.. code:: requirements.txt\n\n YourApp\n SomeLibrary==1.2.3\n dwollaswagger>=1.0.0\n\n::\n\n pip install -r requirements.txt\n\n*To install directly from source:*\n\n::\n\n git clone https://github.com/Dwolla/dwolla-swagger-python && cd dwolla-swagger-python && python setup.py install \n\n*OS X users may need to run ``setup.py`` as a privileged user.*\n\nQuickstart\n----------\n\n``dwollaswagger`` makes it easy for developers to hit the ground running\nwith our API. Before attempting the following, you should ideally create\n`an application key and secret `__.\n\nConfiguring a client\n~~~~~~~~~~~~~~~~~~~~\n\nTo get started, all you need to set is the ``access_token`` and ``host``\nvalues.\n\n.. code:: python\n\n dwollaswagger.configuration.access_token = 'token'\n\n # For UAT/Sandbox\n client = dwollaswagger.ApiClient('https://api-uat.dwolla.com')\n\n # For Production\n client = dwollaswagger.ApiClient('https://api.dwolla.com')\n\nList 10 customers\n~~~~~~~~~~~~~~~~~\n\nNow that we've set up our client, we can use it to make requests to the\nAPI. Let's retrieve 10 customer records associated with the\nauthorization token used.\n\n.. code:: python\n\n dwollaswagger.configuration.access_token = 'token'\n client = dwollaswagger.ApiClient('https://api-uat.dwolla.com')\n\n customers_api = dwollaswagger.CustomersApi(client)\n my_custies = customers_api.list(limit=10)\n\n``my_custies`` will be a Python list that consists of ``Customer``\nobjects.\n\nCreating a new customer\n~~~~~~~~~~~~~~~~~~~~~~~\n\nTo create a customer, we can either provide a ``dict`` with the expected\nvalues, or a ``CreateCustomer`` object.\n\n.. code:: python\n\n customers_api = dwollaswagger.CustomersApi(client)\n\n location = customers_api.create(body = {\n 'firstName': \"Jennifer\",\n 'lastName': \"Smith\",\n 'email': \"jsmith@gmail.com\",\n 'phone': \"7188675309\"})\n\nor\n^^\n\n.. code:: python\n\n customers_api = dwollaswagger.CustomersApi(client)\n\n new_cust = dwollaswagger.CreateCustomer\n new_cust.first_name = \"Jennifer\"\n new_cust.last_name = \"Smith\"\n new_cust.email = \"jsmith@gmail.com\"\n new_cust.phone = \"7188675309\"\n\n location = customers_api.create(body=new_cust)\n\n``location`` will contain a URL to your newly created resource (HTTP 201\n/ Location header).\n\nModules\n-------\n\n``dwolla-python-swagger`` contains ``API`` modules which allow the user\nto make requests, as well as ``models`` which are\n`DAOs `__ that the\nlibrary uses to serialize responses.\n\nAPI\n~~~\n\nEach API module is named in accordance to (`Dwolla's API\nSpec `__ and encapsulates all of the\ndocumented functionality.\n\n- ``AccountsApi``\n- ``BusinessclassificationsApi``\n- ``CustomersApi``\n- ``DocumentsApi``\n- ``EventsApi``\n- ``FundingsourcesApi``\n- ``RootApi``\n- ``TransfersApi``\n- ``WebhooksApi``\n- ``WebhooksubscriptionsApi``\n\n--------------\n\nAPI objects take an ``ApiClient`` argument, which you created\n`here <##Configuring%20a%20client>`__.\n\nExample\n^^^^^^^\n\n.. code:: python\n\n doc_api = dwollaswagger.DocumentsApi(your_client_object)\n\nModels\n~~~~~~\n\nEach model represents the different kinds of requests and responses that\ncan be made with the Dwolla API.\n\n- ``AccountInfo``\n- ``Amount``\n- ``ApplicationEvent``\n- ``BaseObject``\n- ``BusinessClassification``\n- ``BusinessClassificationListResponse``\n- ``CreateCustomer``\n- ``CreateFundingSourceRequest``\n- ``CreateWebhook``\n- ``Customer``\n- ``CustomerListResponse``\n- ``Document``\n- ``DocumentListResponse``\n- ``EventListResponse``\n- ``FundingSource``\n- ``FundingSourceListResponse``\n- ``HalLink``\n- ``Money``\n- ``Transfer``\n- ``TransferListResponse``\n- ``TransferRequestBody``\n- ``Unit``\n- ``UpdateCustomer``\n- ``VerificationToken``\n- ``VerifyMicroDepositsRequest``\n- ``Webhook``\n- ``WebhookAttempt``\n- ``WebhookEventListResponse``\n- ``WebhookHeader``\n- ``WebhookHttpRequest``\n- ``WebhookHttpResponse``\n- ``WebhookListResponse``\n- ``WebhookRetry``\n- ``WebhookRetryRequestListResponse``\n- ``WebhookSubscription``\n\nREADME\n------\n\nIn order for the library's README file to display nicely on PyPi, we\nmust use the ``*.rst`` file format. When making changes to this README\nfile, please `use this tool `__\nto convert the ``*.md`` file to ``*.rst``, and make sure to keep both\nfiles updated.\n\nChangelog\n---------\n\n1.0.9 \\* API schema updated, ``CustomersAPI`` supports Customer search,\nnew softDelete method in ``FundingSourcesApi``.\n\n1.0.8 \\* API schema updated, new ``MasspaymentsApi`` and\n``MasspaymentitemsApi``. New ``MassPayment`` and ``MassPaymentItem``\nmodels.\n\n1.0.7 \\* API schema updated, ``TransfersApi`` has new endpoints for\ncancel a transfer and get a transfer\u2019s fees, new\n``OndemandauthorizationsApi``. \\* Existing ``MicroDeposits`` and\n``Documents`` models updated, new ``FacilitatorFeeRequest``,\n``Authorization``, and ``UpdateTransfer`` models.\n\n1.0.6 \\* Patch datetime issue in Models.\n\n1.0.5 \\* API schema error fixed, ``FundingSource`` object now has\n``_embedded`` key to fix serialization issues.\n\n1.0.4 \\* API schema updated, ``CustomersApi`` has new endpoints for IAV\nverification. \\* Existing ``Customer`` related models updated, new\n``VerificationToken`` model. \\* (release skipped, features in 1.0.5)\n\n1.0.3 \\* API schema updated, ``RootApi`` now added. \\* Changed\n``auth_token`` to ``access_token`` in compliance with\n`RFC-6749 `__ recommended\nnomenclature.\n\n1.0.2 \\* API schema updated, new methods in ``FundingsourcesApi``. \\*\nAll methods which take Swagger variables in ``path`` (e.g,\n``/resource/{id}``) can now be passed a resource URL to make it easier\nfor HAL-styled API consumption. \\* More idiomatic response logic for\nHTTP 201 responses. \\* Fix syntax error in README\n\n1.0.1 \\* API schema updated, new methods in ``CustomersApi`` and\n``TransfersApi``\n\n1.0.0 \\* Initial release.\n\nCredits\n-------\n\nThis wrapper is semantically generated by a fork of\n`swagger-codegen `__. -\n`swagger-codegen\ncontributors `__\n- `David Stancu `__\n\nLicense\n-------\n\nCopyright 2015 Swagger Contributors, David Stancu\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may\nnot use this file except in compliance with the License. You may obtain\na copy of the License at\n\n::\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://developers.dwolla.com", "keywords": "Swagger,Dwolla API", "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "dwollaswagger", "package_url": "https://pypi.org/project/dwollaswagger/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/dwollaswagger/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://developers.dwolla.com" }, "release_url": "https://pypi.org/project/dwollaswagger/1.0.9/", "requires_dist": null, "requires_python": null, "summary": "Dwolla API V2 client", "version": "1.0.9" }, "last_serial": 2097813, "releases": { "1.0.0": [], "1.0.2": [ { "comment_text": "", "digests": { "md5": "1ffa68d02c3549f98d0fbfd920d2e635", "sha256": "9a936c5ed5c03603e00c82e296d9e77c717cb36dd0f13552e65243bb64089226" }, "downloads": -1, "filename": "dwollaswagger-1.0.2.tar.gz", "has_sig": false, "md5_digest": "1ffa68d02c3549f98d0fbfd920d2e635", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16615, "upload_time": "2015-10-23T23:25:59", "url": "https://files.pythonhosted.org/packages/32/cf/9af433902e699ec568fbe3b407bf2e28bae906f8b31c5a6bd78e47d95ba1/dwollaswagger-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "f321747f747fa768a5df5a61d8636fa4", "sha256": "b0ebbfc22d9facd4a1d6afb2dcba76ceffed3df33f4dc0357c11e2c0d6b98ecd" }, "downloads": -1, "filename": "dwollaswagger-1.0.3.tar.gz", "has_sig": false, "md5_digest": "f321747f747fa768a5df5a61d8636fa4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17765, "upload_time": "2015-10-30T18:38:42", "url": "https://files.pythonhosted.org/packages/06/36/48f9e3417e6d15661b99af6024edfdbad97dd2ad05e1eac4761a853072cb/dwollaswagger-1.0.3.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "e201ca2aba60ccb51d45cda3112c6be1", "sha256": "19ce5b7cb7a5b61f9d726742f58fac52ddaf2676edd465512296bc7a9f9b8579" }, "downloads": -1, "filename": "dwollaswagger-1.0.5.tar.gz", "has_sig": false, "md5_digest": "e201ca2aba60ccb51d45cda3112c6be1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18383, "upload_time": "2015-12-03T19:11:45", "url": "https://files.pythonhosted.org/packages/c5/a4/99c48e4de770cc1091604ad07b41c00b138a9fa630358997b97be5061e01/dwollaswagger-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "6af846d0794b2adfd35b1c88dfc30304", "sha256": "c63edded3dd51dd45617fecd648a99f0a59572396951900553f8bb9aacd28979" }, "downloads": -1, "filename": "dwollaswagger-1.0.6-py2-none-any.whl", "has_sig": false, "md5_digest": "6af846d0794b2adfd35b1c88dfc30304", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 72789, "upload_time": "2016-02-05T01:58:33", "url": "https://files.pythonhosted.org/packages/bf/4e/1ec5d90ac4618b6de97ed7e26a12e6711c5fd1b8729bbbb4d025e0b58180/dwollaswagger-1.0.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4b862b0ba22bc92c45bc2c628430a67", "sha256": "3116fa6db3497f6cf5173401c7529bf551ee18656804a8d00d87056c3d9a13c9" }, "downloads": -1, "filename": "dwollaswagger-1.0.6.tar.gz", "has_sig": false, "md5_digest": "a4b862b0ba22bc92c45bc2c628430a67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18493, "upload_time": "2016-02-05T01:58:00", "url": "https://files.pythonhosted.org/packages/6f/44/e17f862f3773cd22aab6e598e045878fcda25ef67712f2eeae779cfa0410/dwollaswagger-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "135b5ee698b599b56940c046e33374e4", "sha256": "35856d5380a073cd9478f074c85f8bcaa399377591a584356396a954042bce97" }, "downloads": -1, "filename": "dwollaswagger-1.0.7-py2-none-any.whl", "has_sig": false, "md5_digest": "135b5ee698b599b56940c046e33374e4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 79677, "upload_time": "2016-03-11T20:59:50", "url": "https://files.pythonhosted.org/packages/90/55/03a5956b30d78614ead9abba21800729164595b28803e8de70e30bdedff7/dwollaswagger-1.0.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "111eb666d6d4748e002dafa350c2c1f3", "sha256": "47cc10121fa92a36b011422008d5a89b8528b822346936187920dfdf9173dde9" }, "downloads": -1, "filename": "dwollaswagger-1.0.7.tar.gz", "has_sig": false, "md5_digest": "111eb666d6d4748e002dafa350c2c1f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19402, "upload_time": "2016-03-11T20:59:34", "url": "https://files.pythonhosted.org/packages/ac/24/7d40849d310cc402cb8ade164d26af2a5db2ddb2ad2b75634481b36e529d/dwollaswagger-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "bf1545ae6cc8a9ef28f0f13a78799a27", "sha256": "e4ff998666de97048202898861abf053d7d18ece80dc8f75f4607bfb1a90e23d" }, "downloads": -1, "filename": "dwollaswagger-1.0.8-py2-none-any.whl", "has_sig": false, "md5_digest": "bf1545ae6cc8a9ef28f0f13a78799a27", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 89831, "upload_time": "2016-04-05T17:32:02", "url": "https://files.pythonhosted.org/packages/74/db/cf29330cf046a742f5549edd29bf7b64fa283bfdb559dbd724284b4f5e91/dwollaswagger-1.0.8-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16dd2bd42675ea68cbbae9d2437146dd", "sha256": "b9d5a06fbe8e097a621cd3dbe383cef8c8053e11388013c6435e1ec198122691" }, "downloads": -1, "filename": "dwollaswagger-1.0.8.tar.gz", "has_sig": false, "md5_digest": "16dd2bd42675ea68cbbae9d2437146dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20461, "upload_time": "2016-04-05T17:31:52", "url": "https://files.pythonhosted.org/packages/3c/be/6bc24d5005bb6ac600a2c4117e0f4e51eb8e09347319d2b041788de084de/dwollaswagger-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "68f20760e8c957813ef303b456efd30a", "sha256": "995ead86c53461c8cab53112da1e19c56cb8a856c8a244b3b97b5506e5974c47" }, "downloads": -1, "filename": "dwollaswagger-1.0.9-py2-none-any.whl", "has_sig": false, "md5_digest": "68f20760e8c957813ef303b456efd30a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 91084, "upload_time": "2016-05-03T21:35:25", "url": "https://files.pythonhosted.org/packages/64/39/30e3a1395597307b35b334e93345dcbb7ba8395e3a692187349eb3df3021/dwollaswagger-1.0.9-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9668b22d6ef39b946b7afe8af3ce115f", "sha256": "9f5806eef8afa0c6f7dbd0bf9231673ad283bf60d6295746681ee692de770146" }, "downloads": -1, "filename": "dwollaswagger-1.0.9.tar.gz", "has_sig": false, "md5_digest": "9668b22d6ef39b946b7afe8af3ce115f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20712, "upload_time": "2016-05-03T21:35:14", "url": "https://files.pythonhosted.org/packages/e7/00/19c7a8ba587a86f87ec845fc1611f071ab0ab59a06591d144fcb7c8e9d5c/dwollaswagger-1.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "68f20760e8c957813ef303b456efd30a", "sha256": "995ead86c53461c8cab53112da1e19c56cb8a856c8a244b3b97b5506e5974c47" }, "downloads": -1, "filename": "dwollaswagger-1.0.9-py2-none-any.whl", "has_sig": false, "md5_digest": "68f20760e8c957813ef303b456efd30a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 91084, "upload_time": "2016-05-03T21:35:25", "url": "https://files.pythonhosted.org/packages/64/39/30e3a1395597307b35b334e93345dcbb7ba8395e3a692187349eb3df3021/dwollaswagger-1.0.9-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9668b22d6ef39b946b7afe8af3ce115f", "sha256": "9f5806eef8afa0c6f7dbd0bf9231673ad283bf60d6295746681ee692de770146" }, "downloads": -1, "filename": "dwollaswagger-1.0.9.tar.gz", "has_sig": false, "md5_digest": "9668b22d6ef39b946b7afe8af3ce115f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20712, "upload_time": "2016-05-03T21:35:14", "url": "https://files.pythonhosted.org/packages/e7/00/19c7a8ba587a86f87ec845fc1611f071ab0ab59a06591d144fcb7c8e9d5c/dwollaswagger-1.0.9.tar.gz" } ] }