{ "info": { "author": "Lob", "author_email": "support@lob.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "# lob-python\n\n[![Build Status](https://travis-ci.org/lob/lob-python.svg?branch=master)](https://travis-ci.org/lob/lob-python)\n[![PyPI version](https://badge.fury.io/py/lob.svg)](http://badge.fury.io/py/lob)\n[![Coverage Status](https://coveralls.io/repos/lob/lob-python/badge.svg?branch=master)](https://coveralls.io/r/lob/lob-python?branch=master)\n\nThis is the python wrapper for the Lob.com API. See full Lob.com documentation [here](https://lob.com/docs/python). For best results, be sure that you're using [the latest version](https://lob.com/docs/python#version) of the Lob API and the latest version of the python wrapper.\n\nThis library supports active Python releases (i.e., versions which have not reached their end of life), as well as PyPy and PyPy 3.\nThe currently supported versions include:\n\n* Python 2.7\n* Python 3.5\n* Python 3.6\n* Python 3.7\n* PyPy\n* PyPy 3\n\n## Table of Contents\n\n- [Getting Started](#getting-started)\n - [Registration](#registration)\n - [Installation](#installation)\n - [Usage](#usage)\n- [Examples](#examples)\n- [API Documentation](#api-documentation)\n- [Testing](#testing)\n\n## Getting Started\n\nLob Python wrapper works in the object oriented style. That is, to make calls you have to call the method on a class and the return types are python objects. To get a `dict` on any object, you can call the `to_dict()` method of the object.\n\nHere's a general overview of the Lob services available, click through to read more.\n\n- [Postcards API](https://lob.com/services/postcards)\n- [Letters API](https://lob.com/services/letters)\n- [Checks API](https://lob.com/services/checks)\n- [Address Verification API](https://lob.com/services/verifications)\n\nPlease read through the official [API Documentation](#api-documentation) to get a complete sense of what to expect from each endpoint.\n\n### Registration\n\nFirst, you will need to first create an account at [Lob.com](https://dashboard.lob.com/#/register) and obtain your Test and Live API Keys.\n\nOnce you have created an account, you can access your API Keys from the [Settings Panel](https://dashboard.lob.com/#/settings).\n\n### Installation\n\nYou can use `pip` to install the package.\n\n```\npip install lob\n```\n\nTo initialize the wrapper, import `lob` and set the `api_key`\n\n```python\nimport lob\nlob.api_key = 'your-api-key'\n\n// set an api version (optional)\nlob.api_version = 'api-version'\n```\n\n### Usage\n\nWe've provided an example script you can run in examples/ that has examples of how to use the lob-python wrapper with some of our core endpoints.\n\n## Examples\n\nWe've provided various examples for you to try out [here](https://github.com/lob/lob-python/tree/master/examples).\n\nThere are simple scripts to demonstrate how to create all the core Lob objects (checks, letters, postcards. etc.) as well as more complex examples that utilize other libraries and external files.\n\n## API Documentation\n\n- [Introduction](https://lob.com/docs/python#introduction)\n- [Versioning](https://lob.com/docs/python#version)\n- [Errors](https://lob.com/docs/python#errors)\n- [Rate Limiting](https://lob.com/docs/python#rate-limits)\n- [Webhooks](https://lob.com/docs/python#webhooks)\n- [Cancellation Windows](https://lob.com/docs/python#cancellation)\n- [Scheduled Mailings](https://lob.com/docs/python#scheduled)\n- [Metadata](https://lob.com/docs/python#metadata)\n- [HTML Templates](https://lob.com/docs/python#templates)\n- [Asset URLs](https://lob.com/docs/python#urls)\n- **Addresses**\n - [Address Book](https://lob.com/docs/python#addresses)\n - [The Address Object](https://lob.com/docs/python#addresses_object)\n - [Create an Address](https://lob.com/docs/python#addresses_create)\n - [Retrieve an Address](https://lob.com/docs/python#addresses_retrieve)\n - [Delete an Address](https://lob.com/docs/python#addresses_delete)\n - [List all Addresses](https://lob.com/docs/python#addresses_list)\n- **US Verification API**\n - [US Verification API](https://lob.com/docs/python#us_verifications)\n - [The US Verification Object](https://lob.com/docs/python#us_verifications_object)\n - [Verify a US Address](https://lob.com/docs/python#us_verifications_create)\n - [The US ZIP Lookup Object](https://lob.com/docs/python#us_zip_lookups_object)\n - [Lookup a US ZIP Code](https://lob.com/docs/python#us_zip_lookups_create)\n - [US Autocompletion API](https://lob.com/docs/python#us_autocompletions)\n - [The US Autocompletion Object](https://lob.com/docs/python#us_autocompletions_object)\n - [Autocomplete a US Address](https://lob.com/docs/python#us_autocompletions_create)\n - [The US Autocompletion Test Environment](https://lob.com/docs/python#us-autocompletions-test-environment)\n- **Int'l Verification API**\n - [International Verifications](https://lob.com/docs/python#intl_verifications)\n - [Verify an International Address](https://lob.com/docs/python#intl_verifications_create)\n- **Postcards API**\n - [Postcards](https://lob.com/docs/python#postcards)\n - [The Postcard Object](https://lob.com/docs/python#postcards_object)\n - [Create a Postcard](https://lob.com/docs/python#postcards_create)\n - [Retrieve a Postcard](https://lob.com/docs/python#postcards_retrieve)\n - [Cancel a Postcard](https://lob.com/docs/python#postcards_delete)\n - [List all Postcards](https://lob.com/docs/python#postcards_list)\n- **Letters API**\n - [Letters](https://lob.com/docs/python#letters)\n - [The Letter Object](https://lob.com/docs/python#letters_object)\n - [Create a Letter](https://lob.com/docs/python#letters_create)\n - [Retrieve a Letter](https://lob.com/docs/python#letters_retrieve)\n - [Cancel a Letter](https://lob.com/docs/python#letters_delete)\n - [List all Letters](https://lob.com/docs/python#letters_list)\n- **Checks API**\n - [Checks](https://lob.com/docs/python#checks)\n - [The Check Object](https://lob.com/docs/python#checks_object)\n - [Create a Check](https://lob.com/docs/python#checks_create)\n - [Retrieve a Check](https://lob.com/docs/python#checks_retrieve)\n - [Cancel a Check](https://lob.com/docs/python#checks_delete)\n - [List all Checks](https://lob.com/docs/python#checks_list)\n - [Bank Accounts](https://lob.com/docs/python#bank-accounts)\n - [The Bank Account Object](https://lob.com/docs/python#bankaccounts_object)\n - [Create a Bank Account](https://lob.com/docs/python#bankaccounts_create)\n - [Retrieve a Bank Account](https://lob.com/docs/python#bankaccounts_retrieve)\n - [Delete a Bank Account](https://lob.com/docs/python#bankaccounts_delete)\n - [Verify a Bank Account](https://lob.com/docs/python#bankaccounts_verify)\n - [List all Bank Accounts](https://lob.com/docs/python#bankaccounts_list)\n- **Appendix**\n - [API Changelog](https://lob.com/docs/python#changelog)\n - [The Tracking Event Object](https://lob.com/docs/python#tracking_event_object)\n - [Events](https://lob.com/docs/python#events)\n - [HTML Examples](https://lob.com/docs/python#html-examples)\n - [Image Prepping](https://lob.com/docs/python#prepping)\n - [US Verification Details](https://lob.com/docs/python#us_verification_details)\n\n## Testing\n\nlob-python uses [Pipenv](https://docs.pipenv.org/) to manage development environments and dependencies.\n\nYou install all the development requirements by running\n\n```shell\n$ pipenv install --dev\n$ pipenv shell\n```\n\nYou can run all tests with the command `LOB_API_KEY=YOUR_TEST_API_KEY nosetests` in the main directory.\n\n```shell\n$ LOB_API_KEY=YOUR_TEST_API_KEY nosetests\n```\n\n## Making Releases\n\nlob-python includes [bumpversion](https://pypi.org/project/bumpversion/) as a development dependency. This\ntool should be used when changing the version number, as it will ensure that it's updated correctly and\nconsistently.\n\nRunning bumpversion will increment the specified version part (`major`, `minor`, `patch`), commit the change,\nand tag it.\n\n```shell\n$ bumpversion \n```\n\nAfter the version has been bumped, you can push the change and tag.\n\n```shell\n$ git push origin head\n$ git push origin --tags\n```\n\nFinally, create the distribution and push it to PyPI using [twine](https://pypi.org/project/twine/).\n\n```shell\n$ python setup.py sdist\n...\nWriting lob-4.0.0/setup.cfg\nCreating tar archive\nremoving 'lob-4.0.0' (and everything under it)\n$ twine upload dist/lob-4.0.0.tar.gz\n```\n\n---\n\nCopyright © 2013-2019 Lob.com\n\nReleased under the MIT License, which can be found in the repository in `LICENSE.txt`.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/lob/lob-python", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "lob", "package_url": "https://pypi.org/project/lob/", "platform": "", "project_url": "https://pypi.org/project/lob/", "project_urls": { "Homepage": "https://github.com/lob/lob-python" }, "release_url": "https://pypi.org/project/lob/4.0.1/", "requires_dist": [ "requests" ], "requires_python": "", "summary": "Lob Python Bindings", "version": "4.0.1" }, "last_serial": 5300006, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "39093972b67afbcc993cf9244d3492a5", "sha256": "b37f6864dae8e1b046c5c091f4cf436a31567505216477a91b3b006f2dd25301" }, "downloads": -1, "filename": "lob-1.0.tar.gz", "has_sig": false, "md5_digest": "39093972b67afbcc993cf9244d3492a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4226, "upload_time": "2014-04-23T16:53:48", "url": "https://files.pythonhosted.org/packages/d3/78/e33bfbf9deeb49ff28ed8d727ac69ea99889e42db7553462083e96d10097/lob-1.0.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "3cc5b013fc7a9c1098085342dbe28d63", "sha256": "b030bf98b088a45f102d2a15a52121024214e4911508db145d5c5bf13afd40ca" }, "downloads": -1, "filename": "lob-2.0.tar.gz", "has_sig": false, "md5_digest": "3cc5b013fc7a9c1098085342dbe28d63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2984, "upload_time": "2014-07-16T05:15:42", "url": "https://files.pythonhosted.org/packages/c7/1a/a0a10412e677997e939a64d1bb14a0085ffcb34e05034886fb851a0b6828/lob-2.0.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "9aa706bee5405a8d058c1419d65defc5", "sha256": "fea333a793762813b367953c7e98b0b8e3c7c78cd3cf8af1db720795568a4710" }, "downloads": -1, "filename": "lob-2.1.tar.gz", "has_sig": false, "md5_digest": "9aa706bee5405a8d058c1419d65defc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3124, "upload_time": "2014-08-04T18:45:08", "url": "https://files.pythonhosted.org/packages/49/28/77a7afb6b5403ba3b9a2cd737d48a8be6cd07da4c46ac1d6d4ad8861c688/lob-2.1.tar.gz" } ], "2.10": [ { "comment_text": "", "digests": { "md5": "4f5e0a415040132180bc8836bc89594d", "sha256": "95614e32c9b8d2e3e2b93f8bc94570a6fbabec640dde496774c8c86bae2f0f0b" }, "downloads": -1, "filename": "lob-2.10.tar.gz", "has_sig": false, "md5_digest": "4f5e0a415040132180bc8836bc89594d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3424, "upload_time": "2014-12-10T18:41:48", "url": "https://files.pythonhosted.org/packages/2b/6a/1077b55b581cbffe175753e9fc4bf81d82e3115920fffa0c2a1a9028cdc3/lob-2.10.tar.gz" } ], "2.11": [ { "comment_text": "", "digests": { "md5": "b2e56f7a5fb49b604296928e47a94fbf", "sha256": "cc16d0c23c10a79499f63da29ce5c56cb0b6f9e0ee6d2007c71d28adfef8e17a" }, "downloads": -1, "filename": "lob-2.11.tar.gz", "has_sig": false, "md5_digest": "b2e56f7a5fb49b604296928e47a94fbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3454, "upload_time": "2015-01-10T01:10:09", "url": "https://files.pythonhosted.org/packages/35/a8/9a4a7648d8138ae13c6f9e424745e05450c97bb1adce71a23416dc8de2bb/lob-2.11.tar.gz" } ], "2.12": [ { "comment_text": "", "digests": { "md5": "7a94d7e7348debada2f160c2a51f8103", "sha256": "499db861b06cc0a58a1fff72c39d7e995d020c195ac347009edd20da95f2fee1" }, "downloads": -1, "filename": "lob-2.12.tar.gz", "has_sig": false, "md5_digest": "7a94d7e7348debada2f160c2a51f8103", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3464, "upload_time": "2015-01-18T22:53:32", "url": "https://files.pythonhosted.org/packages/6e/98/cb51b02c616c79ff185c54dfb12f04d28b3efd61172567cccea7e7000b72/lob-2.12.tar.gz" } ], "2.13": [ { "comment_text": "", "digests": { "md5": "67cd29a746ae68b30b2a64eb670e20ba", "sha256": "5af7f1593bd257d29f6468915b8a97ca943fd82acd344198622a1f6eb7cd66cb" }, "downloads": -1, "filename": "lob-2.13.tar.gz", "has_sig": false, "md5_digest": "67cd29a746ae68b30b2a64eb670e20ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3462, "upload_time": "2015-01-23T18:17:17", "url": "https://files.pythonhosted.org/packages/38/3b/5b23e4401218eabfd5b1f556a7c2b662f87b19fba5d7cce3af54c38c963c/lob-2.13.tar.gz" } ], "2.14": [ { "comment_text": "", "digests": { "md5": "10e9a2c4d152b86cd4d9a636fea66589", "sha256": "ab537cd3d5a58f740eacdbca39ba1cdecc42e413bfd50806578765541f8c9578" }, "downloads": -1, "filename": "lob-2.14.tar.gz", "has_sig": false, "md5_digest": "10e9a2c4d152b86cd4d9a636fea66589", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3474, "upload_time": "2015-04-21T00:47:48", "url": "https://files.pythonhosted.org/packages/11/1d/392e1e6f059e07d0e7c0bd4ba50a954ad30ac9f390ab449a03cbe6ae3e50/lob-2.14.tar.gz" } ], "2.15": [ { "comment_text": "", "digests": { "md5": "d6dda65c73dbbe5cfb2b26660b65bd9e", "sha256": "2989c7e6ee3b11b11ed13d9c9aa3727c1d8775a3861125dcb8f04feeb5e022a2" }, "downloads": -1, "filename": "lob-2.15.tar.gz", "has_sig": false, "md5_digest": "d6dda65c73dbbe5cfb2b26660b65bd9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3507, "upload_time": "2015-04-27T20:14:00", "url": "https://files.pythonhosted.org/packages/63/53/612da78fb960c0f7b44c52bda8e25e2e0c73e067a817eb70db2332ebac71/lob-2.15.tar.gz" } ], "2.16": [ { "comment_text": "", "digests": { "md5": "0ded6faf81664b14b0adfcda86c2eb17", "sha256": "2d5fe6bfcafeedb5a1a2a074e9a2e055cb876ed89c48d473f63003f02c9f55a2" }, "downloads": -1, "filename": "lob-2.16.tar.gz", "has_sig": false, "md5_digest": "0ded6faf81664b14b0adfcda86c2eb17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3524, "upload_time": "2015-05-01T21:59:46", "url": "https://files.pythonhosted.org/packages/fc/44/c70bbd97bec35ca7f241373439611d7221265a034de304960ba43cf88848/lob-2.16.tar.gz" } ], "2.17": [ { "comment_text": "", "digests": { "md5": "dc6935f34498e2ff96c4471b8aee2396", "sha256": "54ccc69f86002933564db53fba2f16808451ae80d57fc96ca9289e4ac2c8f405" }, "downloads": -1, "filename": "lob-2.17.tar.gz", "has_sig": false, "md5_digest": "dc6935f34498e2ff96c4471b8aee2396", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3636, "upload_time": "2015-05-22T20:46:02", "url": "https://files.pythonhosted.org/packages/15/8d/c6e3c2a27bfdeb2f36f12c520cb0ac58b2dd324b838974c584560bc2ae3d/lob-2.17.tar.gz" } ], "2.18": [ { "comment_text": "", "digests": { "md5": "f85566f9276c313638e1ff916a5d4aca", "sha256": "3b8a86e647349144d828559c4ad67e2770ae53b9ace39bc4231821778d1c20cc" }, "downloads": -1, "filename": "lob-2.18.tar.gz", "has_sig": false, "md5_digest": "f85566f9276c313638e1ff916a5d4aca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3658, "upload_time": "2015-07-01T16:12:59", "url": "https://files.pythonhosted.org/packages/2e/ed/91698687d072fd6d234ccd87fae2ea811bbfa02e5f121eb93ff351ce4f8e/lob-2.18.tar.gz" } ], "2.19": [ { "comment_text": "", "digests": { "md5": "382d31bf74437f2cb96ef1028bdfae93", "sha256": "afb691fecdc484601a31a894b2a9dbf4aa998c99a6056cceca04650495cae09b" }, "downloads": -1, "filename": "lob-2.19.tar.gz", "has_sig": false, "md5_digest": "382d31bf74437f2cb96ef1028bdfae93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3683, "upload_time": "2015-09-11T17:30:05", "url": "https://files.pythonhosted.org/packages/70/79/97cec9e357034bf274ebdd52c95e5734fbb6c58e74a7b58cc8a3e06b18e4/lob-2.19.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "d262978880d6fa36ba7a4c4dc3a2314d", "sha256": "59e3cedad133f9b6ebd6a3484f437eb6bcaef06ba7ee653d7725aec4e67f009e" }, "downloads": -1, "filename": "lob-2.2.tar.gz", "has_sig": false, "md5_digest": "d262978880d6fa36ba7a4c4dc3a2314d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3126, "upload_time": "2014-08-15T22:38:40", "url": "https://files.pythonhosted.org/packages/45/95/e3b9451311e35382fa88b94aa19b383804a57934089db424951f5e7056b6/lob-2.2.tar.gz" } ], "2.20": [ { "comment_text": "", "digests": { "md5": "3352dbdd124349e6f223ba14e1c932cf", "sha256": "d2b1f16a973250291c4b62d131c2a6b811fd829900bfe4775e620e11b2c3abc6" }, "downloads": -1, "filename": "lob-2.20.tar.gz", "has_sig": false, "md5_digest": "3352dbdd124349e6f223ba14e1c932cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3725, "upload_time": "2015-11-09T23:41:01", "url": "https://files.pythonhosted.org/packages/bb/f4/9f912a1a541fdad5f5125007408bcec02843215f4356cee8e8ca76632c0b/lob-2.20.tar.gz" } ], "2.21": [ { "comment_text": "", "digests": { "md5": "ac118b90cd79e6c5b23198fa2eef0db7", "sha256": "a4e6993bbc5a9a79f156d3b81e2fe5cbfa0338df64a6073596dff3bd56952c4c" }, "downloads": -1, "filename": "lob-2.21.tar.gz", "has_sig": false, "md5_digest": "ac118b90cd79e6c5b23198fa2eef0db7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3683, "upload_time": "2015-11-23T18:35:16", "url": "https://files.pythonhosted.org/packages/6a/ee/f49bec587e79edba661f3f332666c55f0003cec2616a0b43efc875011e1f/lob-2.21.tar.gz" } ], "2.22": [ { "comment_text": "", "digests": { "md5": "94035da304233f29d77e1d1bf2dd84f6", "sha256": "d6b8e36f6dce2a004b3ea60c4d3521f9410a92069dafa285abd304c82ecbe1e3" }, "downloads": -1, "filename": "lob-2.22.tar.gz", "has_sig": false, "md5_digest": "94035da304233f29d77e1d1bf2dd84f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3693, "upload_time": "2015-12-04T20:06:01", "url": "https://files.pythonhosted.org/packages/86/3f/e7549194e034dcc54fa7228d65b9bbd71414299e08e2364ce8eb9f4c1376/lob-2.22.tar.gz" } ], "2.23": [ { "comment_text": "", "digests": { "md5": "62d8d59d8e6be1e75e02e9a43c09d247", "sha256": "e383c60bad020d0177d6bb685d1acc0d0cfadd07312333407bbd4c18e1ae98ac" }, "downloads": -1, "filename": "lob-2.23.tar.gz", "has_sig": false, "md5_digest": "62d8d59d8e6be1e75e02e9a43c09d247", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3688, "upload_time": "2016-02-02T23:06:01", "url": "https://files.pythonhosted.org/packages/20/32/93dd38d7bcc5f6cb5105824983b8969734ebd6a6a5d4a271dc38fca9d7e5/lob-2.23.tar.gz" } ], "2.24": [ { "comment_text": "", "digests": { "md5": "d5db50008a4355737acb048ae0ab3acc", "sha256": "18424bb513175a618b502b62e937669c424ae3f9e5b6539cc00d93bf07a1fe86" }, "downloads": -1, "filename": "lob-2.24.tar.gz", "has_sig": false, "md5_digest": "d5db50008a4355737acb048ae0ab3acc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3711, "upload_time": "2016-02-06T01:29:36", "url": "https://files.pythonhosted.org/packages/93/00/81622a96265f99bff4900baba9183264913d1d93c6008ec57dacaca2933d/lob-2.24.tar.gz" } ], "2.25": [ { "comment_text": "", "digests": { "md5": "92d8c08a549192b9a8fcfc6c2465f9b2", "sha256": "90579ad6aa8b78cbcc0e926456064daef248a6f3489de0387c586ce6d27d8e91" }, "downloads": -1, "filename": "lob-2.25.tar.gz", "has_sig": false, "md5_digest": "92d8c08a549192b9a8fcfc6c2465f9b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3704, "upload_time": "2016-08-17T00:05:58", "url": "https://files.pythonhosted.org/packages/96/56/28f86b4d5936faef03ba3021698abb688a2563aa015b79280aee1a7f249a/lob-2.25.tar.gz" } ], "2.26": [ { "comment_text": "", "digests": { "md5": "a2d19abce268de99f777ea8b59efd1be", "sha256": "92b6446010463e269162c1d5f46bdf939b108dee7ee937090e2555da1667d6ff" }, "downloads": -1, "filename": "lob-2.26.tar.gz", "has_sig": false, "md5_digest": "a2d19abce268de99f777ea8b59efd1be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3882, "upload_time": "2016-09-06T21:14:25", "url": "https://files.pythonhosted.org/packages/56/02/f3bac3e68ac39e406084a3e26ab321c248f57960e8c8545e7a90084a2309/lob-2.26.tar.gz" } ], "2.3": [ { "comment_text": "", "digests": { "md5": "334165881a08308cf12cb7c4b4f54ac1", "sha256": "bee8aacbc9c72ee9b4e2f846ebbf065d43eff6c02514f33742874ec1ee3c2b7f" }, "downloads": -1, "filename": "lob-2.3.tar.gz", "has_sig": false, "md5_digest": "334165881a08308cf12cb7c4b4f54ac1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3090, "upload_time": "2014-08-28T18:06:04", "url": "https://files.pythonhosted.org/packages/77/4b/9b88946d98040fc3aeb94112e706d9e7d100c7287af68a49b95dfb671e48/lob-2.3.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "7e2e59a6a9e3949aa34a0440a417cbf8", "sha256": "f6ec17e1f192a4c43027213e9eb7fe9c2fbaae5c4c584cc1f0e8436770044fde" }, "downloads": -1, "filename": "lob-2.3.1.tar.gz", "has_sig": false, "md5_digest": "7e2e59a6a9e3949aa34a0440a417cbf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3430, "upload_time": "2014-09-10T19:01:38", "url": "https://files.pythonhosted.org/packages/85/46/6c0496a4a5f31188552cf75296383ff905cd952c7f32eaa8a62987bb4bb3/lob-2.3.1.tar.gz" } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "6c331f25ae02e1643a6d70b91ca0d155", "sha256": "9c457bdce084ddf13b55b1a6dd08c2b81a7fb1ae829bda45dd1236ad022b39f9" }, "downloads": -1, "filename": "lob-2.3.2.tar.gz", "has_sig": false, "md5_digest": "6c331f25ae02e1643a6d70b91ca0d155", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3440, "upload_time": "2014-09-10T22:00:51", "url": "https://files.pythonhosted.org/packages/7b/65/face3403256b38b9106610ce90aa7573882c09b1dafc1ea6829b9462103a/lob-2.3.2.tar.gz" } ], "2.3.3": [ { "comment_text": "", "digests": { "md5": "7b10450649b76a2e7b7f782b5dbc5daa", "sha256": "974e9aa355ceaf9b4d1183c2f1694fe289ce1721fb89de09ab3170fca75c2e94" }, "downloads": -1, "filename": "lob-2.3.3.tar.gz", "has_sig": false, "md5_digest": "7b10450649b76a2e7b7f782b5dbc5daa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3350, "upload_time": "2014-09-11T03:16:50", "url": "https://files.pythonhosted.org/packages/82/47/616ce23fc4bee13b656212413d1ce1b79657472ac8cd549c83ed2083d15f/lob-2.3.3.tar.gz" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "8b6993d7cd8b523270a99838e61d889a", "sha256": "6d303a2181326a056825b8a9981f2cd54674f50ae327df3e491a9ebd88a24217" }, "downloads": -1, "filename": "lob-2.4.tar.gz", "has_sig": false, "md5_digest": "8b6993d7cd8b523270a99838e61d889a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3339, "upload_time": "2014-09-11T03:18:59", "url": "https://files.pythonhosted.org/packages/58/e8/ae93e2f17d47ce50278cb409d81fbb644cce35307bbbcfec744d12a488d3/lob-2.4.tar.gz" } ], "2.5": [ { "comment_text": "", "digests": { "md5": "81d8a3a1d30c570b7d4a3bc270b48ee8", "sha256": "0d071028fd67e96ffe7c5b5c1a83a1deb723d5d3df454b4ab1abb445dc256df9" }, "downloads": -1, "filename": "lob-2.5.tar.gz", "has_sig": false, "md5_digest": "81d8a3a1d30c570b7d4a3bc270b48ee8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3344, "upload_time": "2014-09-19T22:20:54", "url": "https://files.pythonhosted.org/packages/ad/34/51503cda08f172a23c7b1d0e61dd5a51ec88542802f10d200376eed3c04b/lob-2.5.tar.gz" } ], "2.6": [ { "comment_text": "", "digests": { "md5": "40ebb935dd67f76ff149bd19bd22203f", "sha256": "3bbfa4067b218f645a57f5c3958e6c4f9082e7e8bc88023febabb9c764d3f3b6" }, "downloads": -1, "filename": "lob-2.6.tar.gz", "has_sig": false, "md5_digest": "40ebb935dd67f76ff149bd19bd22203f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3406, "upload_time": "2014-09-26T21:34:58", "url": "https://files.pythonhosted.org/packages/e0/12/f5e62eed7ee971dc8e9d68009146981c02affd1a8227799c551dee30561c/lob-2.6.tar.gz" } ], "2.7": [ { "comment_text": "", "digests": { "md5": "e59fcdf7602511103d39b7ac0f71a252", "sha256": "1e24eac0abde91c83de5b5d0e9a9a4c31d7be62140027b642d77af3f1b853aa9" }, "downloads": -1, "filename": "lob-2.7.tar.gz", "has_sig": false, "md5_digest": "e59fcdf7602511103d39b7ac0f71a252", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3431, "upload_time": "2014-11-02T23:52:09", "url": "https://files.pythonhosted.org/packages/16/7c/66ae5ce5bbd27aa199179cee1eb7cb0e603f7bc55e52eb0d3c07d2c63b9c/lob-2.7.tar.gz" } ], "2.8": [ { "comment_text": "", "digests": { "md5": "0f8d18b28435e2589430083b7814a897", "sha256": "afbc3ebf370573d9f166e3be43f105a122b7003b759b05f86064aac630096178" }, "downloads": -1, "filename": "lob-2.8.tar.gz", "has_sig": false, "md5_digest": "0f8d18b28435e2589430083b7814a897", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3428, "upload_time": "2014-11-18T00:17:19", "url": "https://files.pythonhosted.org/packages/ff/9e/8ee32354bd721fb352d0e86863cf061d1d6d9ba16d85258ef707d85183ae/lob-2.8.tar.gz" } ], "2.9": [ { "comment_text": "", "digests": { "md5": "77c1f62125d0c2a41ae4312696005cd7", "sha256": "796551697c832ac5e10695914c26b791c2ab6c20c687d1210a89ab5afbec6683" }, "downloads": -1, "filename": "lob-2.9.tar.gz", "has_sig": false, "md5_digest": "77c1f62125d0c2a41ae4312696005cd7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3431, "upload_time": "2014-12-10T18:10:51", "url": "https://files.pythonhosted.org/packages/4d/3e/45d12172782ce18a07463458c850593436eab0603060cec6e856c8d05cd6/lob-2.9.tar.gz" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "3e5e2ff069da727db066d8d8f7af9278", "sha256": "6d004261d65b2670cd44b058bd15e87aa971a4134c7f40d665dfe0f95cee4124" }, "downloads": -1, "filename": "lob-3.0.tar.gz", "has_sig": false, "md5_digest": "3e5e2ff069da727db066d8d8f7af9278", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3741, "upload_time": "2017-05-17T21:12:07", "url": "https://files.pythonhosted.org/packages/3a/bf/adee1acc2bdaf6c7f48517d4de8a676968ddbec4f9026500905089f1ba86/lob-3.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "327e89a8d74efc6e5c614c5a1bb7686e", "sha256": "86125fa4f93edab1bb647e21cd0535dcc124509c6ea91da236a40f5db0b27796" }, "downloads": -1, "filename": "lob-3.0.1.tar.gz", "has_sig": false, "md5_digest": "327e89a8d74efc6e5c614c5a1bb7686e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3751, "upload_time": "2017-07-31T21:31:41", "url": "https://files.pythonhosted.org/packages/9a/36/0731247c464946dfece01311ea069eb45e9e5ddce2bd2b0bfcb46ccfa6a7/lob-3.0.1.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "5c78cf3db4be3eb20230d973d7a7b3d7", "sha256": "49fee31eb9364387a0e6598285a8c6996524ba0c6839f789b8326819a9a2e697" }, "downloads": -1, "filename": "lob-3.1.1.tar.gz", "has_sig": false, "md5_digest": "5c78cf3db4be3eb20230d973d7a7b3d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3758, "upload_time": "2017-08-04T22:37:56", "url": "https://files.pythonhosted.org/packages/a1/be/710e070004421d024cadd99f8c5aec9d98edc07639a9c78bf047dbbdf102/lob-3.1.1.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "ab231918e6e5c23bc204934e286d56f0", "sha256": "2e3f4144de8f28012d9c247ccfce22b04a2a5b138befa1ad01322692368877fb" }, "downloads": -1, "filename": "lob-3.1.2.tar.gz", "has_sig": false, "md5_digest": "ab231918e6e5c23bc204934e286d56f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3805, "upload_time": "2017-08-09T22:57:12", "url": "https://files.pythonhosted.org/packages/7f/77/16f1e78fafe4781f4750820e37d77db36511209e4e0a17f9874214544622/lob-3.1.2.tar.gz" } ], "3.1.3": [ { "comment_text": "", "digests": { "md5": "e5233531ff30cd8ffe7a6d988e7ce399", "sha256": "61bf659cbff00ce24737c4bd41002ebc9371cd001cac2c078ed0acf4aa53d80f" }, "downloads": -1, "filename": "lob-3.1.3.tar.gz", "has_sig": false, "md5_digest": "e5233531ff30cd8ffe7a6d988e7ce399", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5807, "upload_time": "2017-11-03T22:19:27", "url": "https://files.pythonhosted.org/packages/8f/2f/2bcf375a9273b50858c3af07491baedbfd62acd71fc4794d27cde2d519b2/lob-3.1.3.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "f1eeffe5e9b5ab4cc2090d05285530fc", "sha256": "ec1a51b8c5a39911c4f543ea3fa5457e735b92477bccfcdee277dd05c7708260" }, "downloads": -1, "filename": "lob-3.2.0.tar.gz", "has_sig": false, "md5_digest": "f1eeffe5e9b5ab4cc2090d05285530fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5793, "upload_time": "2018-03-13T19:04:11", "url": "https://files.pythonhosted.org/packages/95/0a/2321d620cb88040a6f198faae73fb09e0b8270cf5f3816480ace5da16b21/lob-3.2.0.tar.gz" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "68d30e85b04f54160c6a5a9d61851eea", "sha256": "b818f9a78ef32ec9167607feceb1c350a536369a67683da8b65ca7e5a994deda" }, "downloads": -1, "filename": "lob-3.3.0.tar.gz", "has_sig": false, "md5_digest": "68d30e85b04f54160c6a5a9d61851eea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5811, "upload_time": "2018-05-01T19:06:44", "url": "https://files.pythonhosted.org/packages/05/e9/598afa87afc9f6830199865f8327eca12bbfdcbecd544dbc4462645fd161/lob-3.3.0.tar.gz" } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "07d50366b03a3451ed1b96d2709dfd12", "sha256": "50fc6246bb2b4e38eeba4cf47a5cb107520b6b2e5dcee1548cb5a33a64d9af76" }, "downloads": -1, "filename": "lob-3.4.0.tar.gz", "has_sig": false, "md5_digest": "07d50366b03a3451ed1b96d2709dfd12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5892, "upload_time": "2018-05-21T20:14:47", "url": "https://files.pythonhosted.org/packages/e0/43/0aabbb9778ae4ce8074fdff789de162b434cde32e882b89dadabfdc817dc/lob-3.4.0.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "e9ef9c067ecb3271baa40c7426e7c4b1", "sha256": "92b8ddaeb6610e3b0d792ac46134531d180a94a361062a510fd9c0a1b858725f" }, "downloads": -1, "filename": "lob-4.0.0.tar.gz", "has_sig": false, "md5_digest": "e9ef9c067ecb3271baa40c7426e7c4b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3647, "upload_time": "2018-07-02T22:37:10", "url": "https://files.pythonhosted.org/packages/c1/ff/5c636f166fdb3fdc1512b29dede7abcc44bd62a0f5c81599ee55ade6b46b/lob-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "838dfd68dc080b166cf269631d6a2d24", "sha256": "cf59348f184c5103b6f4f016b0b60e159a33515f21d56e55a003bbf4882d8073" }, "downloads": -1, "filename": "lob-4.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "838dfd68dc080b166cf269631d6a2d24", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8528, "upload_time": "2019-05-21T21:56:39", "url": "https://files.pythonhosted.org/packages/9a/0f/77f63390238ae3fea2061639628f37024015b2a9a269ca07c8729b703a69/lob-4.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "35288c42448e6560601ce3d4be603842", "sha256": "d61bba152dbfcbc2a0b5dbc4c142827492dd2aa00cbd3b4ec3d7a595be238fe2" }, "downloads": -1, "filename": "lob-4.0.1.tar.gz", "has_sig": false, "md5_digest": "35288c42448e6560601ce3d4be603842", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7812, "upload_time": "2019-05-21T21:56:41", "url": "https://files.pythonhosted.org/packages/5e/bd/ee8e8ce57b17e15018c69c3b3063bb4eb51cd2765cb8ec59e14bab7cab9a/lob-4.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "838dfd68dc080b166cf269631d6a2d24", "sha256": "cf59348f184c5103b6f4f016b0b60e159a33515f21d56e55a003bbf4882d8073" }, "downloads": -1, "filename": "lob-4.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "838dfd68dc080b166cf269631d6a2d24", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8528, "upload_time": "2019-05-21T21:56:39", "url": "https://files.pythonhosted.org/packages/9a/0f/77f63390238ae3fea2061639628f37024015b2a9a269ca07c8729b703a69/lob-4.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "35288c42448e6560601ce3d4be603842", "sha256": "d61bba152dbfcbc2a0b5dbc4c142827492dd2aa00cbd3b4ec3d7a595be238fe2" }, "downloads": -1, "filename": "lob-4.0.1.tar.gz", "has_sig": false, "md5_digest": "35288c42448e6560601ce3d4be603842", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7812, "upload_time": "2019-05-21T21:56:41", "url": "https://files.pythonhosted.org/packages/5e/bd/ee8e8ce57b17e15018c69c3b3063bb4eb51cd2765cb8ec59e14bab7cab9a/lob-4.0.1.tar.gz" } ] }