{ "info": { "author": "Mike Helmick", "author_email": "me@michaelhelmick.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Topic :: Internet", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Lassie\n======\n\n.. image:: https://img.shields.io/pypi/v/lassie.svg?style=flat-square\n :target: https://pypi.python.org/pypi/lassie\n\n.. image:: https://img.shields.io/travis/michaelhelmick/lassie.svg?style=flat-square\n :target: https://travis-ci.org/michaelhelmick/lassie\n\n.. image:: https://img.shields.io/coveralls/michaelhelmick/lassie/master.svg?style=flat-square\n :target: https://coveralls.io/r/michaelhelmick/lassie?branch=master\n\n.. image:: https://img.shields.io/badge/Say%20Thanks!-:)-1EAEDB.svg?style=flat-square\n :target: https://saythanks.io/to/michaelhelmick\n\nLassie is a Python library for retrieving basic content from websites.\n\n.. image:: https://i.imgur.com/QrvNfAX.gif\n\nUsage\n-----\n\n.. code-block:: python\n\n >>> import lassie\n >>> lassie.fetch('http://www.youtube.com/watch?v=dQw4w9WgXcQ')\n {\n 'description': u'Music video by Rick Astley performing Never Gonna Give You Up. YouTube view counts pre-VEVO: 2,573,462 (C) 1987 PWL',\n 'videos': [{\n 'src': u'http://www.youtube.com/v/dQw4w9WgXcQ?autohide=1&version=3',\n 'height': 480,\n 'type': u'application/x-shockwave-flash',\n 'width': 640\n }, {\n 'src': u'https://www.youtube.com/embed/dQw4w9WgXcQ',\n 'height': 480,\n 'width': 640\n }],\n 'title': u'Rick Astley - Never Gonna Give You Up',\n 'url': u'http://www.youtube.com/watch?v=dQw4w9WgXcQ',\n 'keywords': [u'Rick', u'Astley', u'Sony', u'BMG', u'Music', u'UK', u'Pop'],\n 'images': [{\n 'src': u'http://i1.ytimg.com/vi/dQw4w9WgXcQ/hqdefault.jpg?feature=og',\n 'type': u'og:image'\n }, {\n 'src': u'http://i1.ytimg.com/vi/dQw4w9WgXcQ/hqdefault.jpg',\n 'type': u'twitter:image'\n }, {\n 'src': u'http://s.ytimg.com/yts/img/favicon-vfldLzJxy.ico',\n 'type': u'favicon'\n }, {\n 'src': u'http://s.ytimg.com/yts/img/favicon_32-vflWoMFGx.png',\n 'type': u'favicon'\n }],\n 'locale': u'en_US'\n }\n\nInstall\n-------\n\nInstall Lassie via `pip `_\n\n.. code-block:: bash\n\n $ pip install lassie\n\nor, with `easy_install `_\n\n.. code-block:: bash\n\n $ easy_install lassie\n\nBut, hey... `that's up to you `_.\n\nDocumentation\n-------------\n\nDocumentation can be found here: https://lassie.readthedocs.org/\n\n\n\n.. :changelog:\n\nHistory\n-------\n\n0.11.7 (2018-08-03)\n++++++++++++++++++\n- Try and return the \"best\" url. (#75).\n- Fix issue where AMP image data was a list of strings. (#75).\n\n0.11.6 (2018-05-24)\n++++++++++++++++++\n- Fix issue where AMP images was a list of dictionaries and being identified as an object.\n\n0.11.5 (2017-12-27)\n++++++++++++++++++\n- Pin requests==2.18.4\n\n0.11.4 (2017-11-01)\n++++++++++++++++++\n- Always get oembed AND html data.\n\n0.11.3 (2017-11-01)\n++++++++++++++++++\n- Fix filters.oembed module once lassie is packaged.\n\n0.11.0 (2017-11-01)\n++++++++++++++++++\n- Add support for OEmbed providers (YouTube)\n\n0.10.1 (2017-06-02)\n++++++++++++++++++\n- Remove owl emoji from README.rst so installs on Windows don't fail.\n\n0.10.0 (2017-02-03)\n++++++++++++++++++\n- Fix issue where a website may have malformed HTML and no tag causing soup.html to be None (#60)\n- Updated beautifulsoup4 to 4.5.3\n- Update html5lib to 1.0b10\n\n0.9.0 (2017-01-29)\n++++++++++++++++++\n- Added a default fake user agent to use instead of using python-requests/version (some websites will mark certain user agents as bot attempts)\n- Updated requests to 2.13.0\n\n0.8.7 (2016-12-21)\n++++++++++++++++++\n- Fix Python 3 support\n- Handle empty AMP image lists\n\n0.8.6 (2016-11-17)\n++++++++++++++++++\n- Handle AMP image list of strings vs list of objects\n\n0.8.5 (2016-11-03)\n++++++++++++++++++\n- Handle AMP data that is contained in a list\n- Retrieve videos and thumbnails (as images) from AMP VideoObjects\n\n0.8.4 (2016-11-01)\n++++++++++++++++++\n- Fix issue where AMP images could be lists inside an object\n\n0.8.3 (2016-10-21)\n++++++++++++++++++\n- Fix issue where some keys returned (i.e. description) would not be retrieved if the key existed with an empty value already\n\n0.8.2 (2016-09-26)\n++++++++++++++++++\n- Fix issue where AMP images could be images and not objects\n\n0.8.1 (2016-09-26)\n++++++++++++++++++\n- Add support for AMP \"description\" attribute\n- Fix issue where an error would be thrown if width/height of an image weren't strings\n- Fix duplicate AMP title request, should have been url\n\n0.8.0 (2016-09-26)\n++++++++++++++++++\n- Add support for links that use AMP\n\n0.7.2 (2016-08-01)\n++++++++++++++++++\n- Add `status_code` to response dictionary (for \"file-like\" responses, as well)\n\n0.7.1 (2016-07-27)\n++++++++++++++++++\n- Add support for open graph `site_name`\n\n\n0.7.0 (2016-07-01)\n++++++++++++++++++\n- Add `status_code` to response dictionary\n\n\n0.6.2 (2015-11-11)\n++++++++++++++++++\n- Pinned `requests` library to version 2.8.1\n- Pinned `beautifulsoup4` library to version 4.4.1\n- Add Python 3.5 to Travis CI build matrix (officially support 3.5)\n\n\n0.6.1 (2015-10-30)\n++++++++++++++++++\n- Catch and raise `LassieError` on HEAD requests when `handle_file_content` is passed to the Lassie API\n- Pinned `requests` library to version 2.8.0\n\n\n0.6.0 (2015-08-19)\n++++++++++++++++++\n- Support for secure url image and videos from Open Graph\n- Simplified `merge_settings` and data updating internally\n\n\n0.5.3 (2015-07-02)\n++++++++++++++++++\n- Handle when a website doesn't set a value on the \"keywords\" meta tag\n\n\n0.5.2 (2015-04-16)\n++++++++++++++++++\n- Updated `requests` and `beautifulsoup4` library versions\n\n\n0.5.1 (2014-08-05)\n++++++++++++++++++\n- Fix issue where headers didn't always have 'Content-Type' key\n\n\n0.5.0 (2014-06-23)\n++++++++++++++++++\n- Added ability to `fetch` links that are image files (jpg, gif, png, bmp)\n- Renamed `_retreive_content` to `_retrieve_content` because I evidently don't know how to spell correctly\n\n\n0.4.0 (2013-09-30)\n++++++++++++++++++\n- Updated `requests` and `beautifulsoup4` library versions\n- Added support for manipulating the request, see Advanced Usage docs\n- Fixed issue where `lassie.fetch` would break if the page had no title\n- Lassie is now more lenient when it comes to width and height values of images (now accepts integers (100) or integer with px (100px)\n- Image URLs for all images are now absolute\n\n0.3.0 (2013-08-15)\n++++++++++++++++++\n\n- Added support for `locale` to be returned. If `lang` is specified in the `html` tag and it normalizes to an actual locale, it will be added to the returned data.\n- Fixed bug where height was not being returned for body images\n- Added test coverage, we're 100% covered! :D\n\n\n0.2.1 (2013-08-13)\n++++++++++++++++++\n\n- Remove spaces from the returned keywords list\n- Fixed issue where favicon was not being retrieved\n- Fixed priority for class level vs method level params\n\n\n0.2.0 (2013-08-06)\n++++++++++++++++++\n\n- Fix package error when importing\n\n\n0.1.0 (2013-08-05)\n++++++++++++++++++\n\n- Initial Release\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/michaelhelmick/lassie/tree/master", "keywords": "lassie open graph web content scrape scraper", "license": "The MIT License\n\nCopyright (c) 2017 Mike Helmick\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n", "maintainer": "", "maintainer_email": "", "name": "lassie", "package_url": "https://pypi.org/project/lassie/", "platform": "", "project_url": "https://pypi.org/project/lassie/", "project_urls": { "Homepage": "https://github.com/michaelhelmick/lassie/tree/master" }, "release_url": "https://pypi.org/project/lassie/0.11.7/", "requires_dist": null, "requires_python": "", "summary": "Lassie is a Python library for retrieving basic content from websites", "version": "0.11.7" }, "last_serial": 4133154, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "2ed8f95383b0822b6e92914df5c77063", "sha256": "0b29f14b61db8debe2309a2828fdb012bdb91857b9f1c4c44aad46cd7b99e2e8" }, "downloads": -1, "filename": "lassie-0.10.0.tar.gz", "has_sig": false, "md5_digest": "2ed8f95383b0822b6e92914df5c77063", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12532, "upload_time": "2017-02-03T15:21:01", "url": "https://files.pythonhosted.org/packages/26/3c/99bf627c64f17abdd703586099757ae81cd8d780710f5a83ed518ea75ea1/lassie-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "177293040e06292c1b27d75775db317b", "sha256": "bcd1cdaa8263d85f0ea357d956663447cc00b088612a07bcf8f44e390dd4385f" }, "downloads": -1, "filename": "lassie-0.10.1.tar.gz", "has_sig": false, "md5_digest": "177293040e06292c1b27d75775db317b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12627, "upload_time": "2017-06-02T18:15:09", "url": "https://files.pythonhosted.org/packages/8f/84/25f60375f547f6ba38fcb68bb57dfbd9d41e29bb1a8353a4e301f8275d0e/lassie-0.10.1.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "dd4baf0eec2fd0c61a89b93be7cb8fa9", "sha256": "c2743d14ea1a7546040ec9bc99077f3c8429107846ef26c1b120c0551d1f450c" }, "downloads": -1, "filename": "lassie-0.11.0.tar.gz", "has_sig": false, "md5_digest": "dd4baf0eec2fd0c61a89b93be7cb8fa9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11597, "upload_time": "2017-11-01T19:32:17", "url": "https://files.pythonhosted.org/packages/5c/60/b21d3e21954b570da26d9620903fbdbb488d2ccd83148d31328c5168c6b3/lassie-0.11.0.tar.gz" } ], "0.11.3": [ { "comment_text": "", "digests": { "md5": "ae6ed3838e89cff386fb564f53259b9d", "sha256": "fdf589040923e5e0068cd4ce5e79f6628bb36c48816b3fbef5039afbcdb9211e" }, "downloads": -1, "filename": "lassie-0.11.3.tar.gz", "has_sig": false, "md5_digest": "ae6ed3838e89cff386fb564f53259b9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12395, "upload_time": "2017-11-01T20:29:14", "url": "https://files.pythonhosted.org/packages/f7/09/a2e8cf5427c7d81db1b15ad9d06dfb8335f3ad6f2d86d2fc37f9a79a0a6c/lassie-0.11.3.tar.gz" } ], "0.11.4": [ { "comment_text": "", "digests": { "md5": "2cf294c9b58c9010a88bedfef4ee936e", "sha256": "86c2c0e237a9a058cae49e3fc83143ede95ba264891f9d042b76dcec8088bc6c" }, "downloads": -1, "filename": "lassie-0.11.4.tar.gz", "has_sig": false, "md5_digest": "2cf294c9b58c9010a88bedfef4ee936e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12390, "upload_time": "2017-11-02T16:29:05", "url": "https://files.pythonhosted.org/packages/97/5e/c17c630275b9e07ff0f4dabdc0a930e6ec8c791deb89c51a52a11e7df5d3/lassie-0.11.4.tar.gz" } ], "0.11.5": [ { "comment_text": "", "digests": { "md5": "8542d95a2bf64234f1fc778257002ec6", "sha256": "bf063ac275a9b5c262ba5cca706af8784998c4a78614cade7727e48722cc0f8f" }, "downloads": -1, "filename": "lassie-0.11.5.tar.gz", "has_sig": false, "md5_digest": "8542d95a2bf64234f1fc778257002ec6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12417, "upload_time": "2017-12-27T13:49:21", "url": "https://files.pythonhosted.org/packages/54/fc/ba1304d61f8e6bdfbeb20617bdaca6d63be261c65cc04ae26ccecbabf06f/lassie-0.11.5.tar.gz" } ], "0.11.6": [ { "comment_text": "", "digests": { "md5": "50b2b448f973b7b6f311da2443ce5a34", "sha256": "c7e7d371ef400bf4c111608b0cf109fe29c6640e61999d0d9b07091e3a74da9a" }, "downloads": -1, "filename": "lassie-0.11.6.tar.gz", "has_sig": false, "md5_digest": "50b2b448f973b7b6f311da2443ce5a34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12516, "upload_time": "2018-05-24T17:42:41", "url": "https://files.pythonhosted.org/packages/1f/27/0bee3a755569c94e0e3a98d00b4879044e0eb14e64616fe5fa80549f4017/lassie-0.11.6.tar.gz" } ], "0.11.7": [ { "comment_text": "", "digests": { "md5": "d4f87195e6127f2a97e27669f50fae9a", "sha256": "a9a350072f2b43d9e9690b8ef04f96acc0b43d6eacd9c8727f28e162aed3852b" }, "downloads": -1, "filename": "lassie-0.11.7.tar.gz", "has_sig": false, "md5_digest": "d4f87195e6127f2a97e27669f50fae9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12608, "upload_time": "2018-08-03T16:41:27", "url": "https://files.pythonhosted.org/packages/4e/27/4a07e21a970bbf48b7c2f62cd1e48459aa0921016c26792fd4ab57812dde/lassie-0.11.7.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "6a596e19817b6a33839fd535971fee67", "sha256": "54ca9a75b81d2eb2892f51d7911339608aa551f10e519d0dcfd8044f92ddde90" }, "downloads": -1, "filename": "lassie-0.3.0.tar.gz", "has_sig": false, "md5_digest": "6a596e19817b6a33839fd535971fee67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7820, "upload_time": "2013-08-15T18:06:20", "url": "https://files.pythonhosted.org/packages/28/d1/3cb5b5ee01737ac7e5b0f491506112eae68d7365b3368ae8f809f9ded884/lassie-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "f213c8574482f869f0c041a1e008d5c0", "sha256": "9620b83942e119dc7871dcee448883e311e3313e12f3a2e9d50f18cb393cd922" }, "downloads": -1, "filename": "lassie-0.4.0.tar.gz", "has_sig": false, "md5_digest": "f213c8574482f869f0c041a1e008d5c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8712, "upload_time": "2013-09-30T18:27:58", "url": "https://files.pythonhosted.org/packages/81/e9/6f3105113395252765eeb5eb7d7a9349b76ae87362082bcd2933dae893bb/lassie-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "b66f6320b0eccfbfb216e0b5209e30cb", "sha256": "a2136591039a6a97b88b203ee83c4a7722539ffc35e8a116db81c3b14fc13172" }, "downloads": -1, "filename": "lassie-0.5.0.tar.gz", "has_sig": false, "md5_digest": "b66f6320b0eccfbfb216e0b5209e30cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9378, "upload_time": "2014-06-23T20:21:43", "url": "https://files.pythonhosted.org/packages/6b/05/554509bbfdfe32a1217dc7ca21b4365df16961f47597aa60ea3d46b7a843/lassie-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "08a590d8f79c1f3380f6476c6afec634", "sha256": "f46128ec6496d0d8f73bf67a225ac7836108a31b44768e3c74592b788dd53794" }, "downloads": -1, "filename": "lassie-0.5.1.tar.gz", "has_sig": false, "md5_digest": "08a590d8f79c1f3380f6476c6afec634", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9481, "upload_time": "2014-08-05T10:06:04", "url": "https://files.pythonhosted.org/packages/f5/a8/2fa5459922b20e4db8ad00f5cf2b01d6ff8517ba96fabd45b39b64802ea7/lassie-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "88fa65ec370f5da56b35edc1a8ec3b54", "sha256": "2e1f98058800f3457a6bbd582457b05f0038ce519fcc3f2872f49ecb91cabbc1" }, "downloads": -1, "filename": "lassie-0.5.2.tar.gz", "has_sig": false, "md5_digest": "88fa65ec370f5da56b35edc1a8ec3b54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9440, "upload_time": "2015-04-16T13:09:29", "url": "https://files.pythonhosted.org/packages/c5/c6/78a0b3198314d7a5154568aa22952358abb2fc4c4c7f6cd795c90a29c00b/lassie-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "00b290d8477a4b53f6fe69cdaad10ab8", "sha256": "58ba1af0b86fcbb4081746198365cec2cb64abfa59038c6aac075a96f0130c31" }, "downloads": -1, "filename": "lassie-0.5.3.tar.gz", "has_sig": false, "md5_digest": "00b290d8477a4b53f6fe69cdaad10ab8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9595, "upload_time": "2015-07-02T16:12:05", "url": "https://files.pythonhosted.org/packages/3b/7a/056ca0a926b05dd61d4e6896d633b4c5bd40f72ac4c1e05050aa9171a4d0/lassie-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "f11fa732a46bc2375c51d60cf26c8066", "sha256": "d508badd7e50ef4491cd4fae2c404cff9e82f06168679eb8dceafc777f0a0633" }, "downloads": -1, "filename": "lassie-0.5.4.tar.gz", "has_sig": false, "md5_digest": "f11fa732a46bc2375c51d60cf26c8066", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9731, "upload_time": "2015-08-19T15:05:42", "url": "https://files.pythonhosted.org/packages/33/76/cc54f1108b4058e5eba11399061377aae6ace86196ee0237fd0685491fc1/lassie-0.5.4.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "3dd3565b844949b65175d6e042d4ba1b", "sha256": "b4118a08ffaf3681fd82b4078f86f1deb2274e23dfb6a52d240a48a72dbcda81" }, "downloads": -1, "filename": "lassie-0.6.0.tar.gz", "has_sig": false, "md5_digest": "3dd3565b844949b65175d6e042d4ba1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9830, "upload_time": "2015-09-02T12:40:43", "url": "https://files.pythonhosted.org/packages/59/e1/306881b96639e6b383c684fee1ec5de2a963ed7b8bb97fa5c4bb87c98360/lassie-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "bd8740185aee27dca861faede24f2b7c", "sha256": "f280cfc57d99b0fed5935d4b9c126b435b9e05076bb4b98ad5546f6868c096d9" }, "downloads": -1, "filename": "lassie-0.6.1.tar.gz", "has_sig": false, "md5_digest": "bd8740185aee27dca861faede24f2b7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9983, "upload_time": "2015-10-30T16:03:54", "url": "https://files.pythonhosted.org/packages/26/6a/787cf13a19cb7c6e51921ad168078f2dc45d492d5ce60b58ec3ef6a47846/lassie-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "3bf4f787c7d143254be147828be0e201", "sha256": "0460110c20cfe20c9de58d7d50116bb56de0003dea1669c7fbe04fafe1e70944" }, "downloads": -1, "filename": "lassie-0.6.2.tar.gz", "has_sig": false, "md5_digest": "3bf4f787c7d143254be147828be0e201", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10095, "upload_time": "2015-11-11T14:09:57", "url": "https://files.pythonhosted.org/packages/37/12/8f1c50b28896bcca9f0a1887157f9e55e81ceacf6bff1945369bc9b00db2/lassie-0.6.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "5028d080170ada183af59f558cffa0f5", "sha256": "eb21560748d7abf32375c479f26329df6012665ffe5ca42465434c0f2486d107" }, "downloads": -1, "filename": "lassie-0.7.0.tar.gz", "has_sig": false, "md5_digest": "5028d080170ada183af59f558cffa0f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10136, "upload_time": "2016-07-01T19:59:37", "url": "https://files.pythonhosted.org/packages/c4/6b/1e4064957a50b28fd3dc990a297692f04eed3b6bd57c8a16ad05707fcd57/lassie-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "8a306cdb1b3cce96317748df61be5632", "sha256": "215a14fde9bed6875b75925793b38a5aa6ae5251aa74e9d63f06de7a699219b4" }, "downloads": -1, "filename": "lassie-0.7.1.tar.gz", "has_sig": false, "md5_digest": "8a306cdb1b3cce96317748df61be5632", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10208, "upload_time": "2016-07-27T13:47:42", "url": "https://files.pythonhosted.org/packages/f5/83/bc45fe54bac7086e35530549d51effd0af769c80ac61e4830eed3282400b/lassie-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "76738b7f7bc510beb1f0faa2bd2ab554", "sha256": "dae61938b64714138a46d32ec98c3c1852bd771a2a6a56f53edd7204bb6e6644" }, "downloads": -1, "filename": "lassie-0.7.2.tar.gz", "has_sig": false, "md5_digest": "76738b7f7bc510beb1f0faa2bd2ab554", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10286, "upload_time": "2016-08-01T11:17:49", "url": "https://files.pythonhosted.org/packages/73/46/15490fc26c2d7f9e08aa178f97081ff058e1f1d79c88f6c6b34a3c982a77/lassie-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "8526c8218625341b8836e2fc0795e9b5", "sha256": "730627982b6cf6f4395e7edb8ad85c7e0b35383fe0588391b46bf30699b029ee" }, "downloads": -1, "filename": "lassie-0.8.0.tar.gz", "has_sig": false, "md5_digest": "8526c8218625341b8836e2fc0795e9b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10548, "upload_time": "2016-09-26T17:11:17", "url": "https://files.pythonhosted.org/packages/8d/81/9645de3a6a755d75125ccf889860024349b6bddd57e1c10319aca144233b/lassie-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "809368c121eb67b27ddc1925287a7341", "sha256": "f97fb25c2ec3984c95bac7300dc54ee1bf4f7ef3ced8f20ee34836d59e0fda89" }, "downloads": -1, "filename": "lassie-0.8.1.tar.gz", "has_sig": false, "md5_digest": "809368c121eb67b27ddc1925287a7341", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10708, "upload_time": "2016-09-26T20:25:42", "url": "https://files.pythonhosted.org/packages/f6/ab/07c9f5027e5542706fdce79ff334c9cbf71137ae1c6ed788b09d6c52d44e/lassie-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "f556ed5a37a8ea10d3aa0284fdec1e14", "sha256": "c462850ed25d3437eacafa3597475cda6268fecedf1d754a6fc45a0dacac5218" }, "downloads": -1, "filename": "lassie-0.8.2.tar.gz", "has_sig": false, "md5_digest": "f556ed5a37a8ea10d3aa0284fdec1e14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10775, "upload_time": "2016-10-06T14:08:29", "url": "https://files.pythonhosted.org/packages/e1/54/2438ad98138ff4d9bedd6022c422b2cf066f73e00ee58367631264021dee/lassie-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "91265ced34e8bec6c75a685fa9e6ae15", "sha256": "c0568e217fc2547e61a943666556e8d995e975a9a8fe90dfa5643866d520c763" }, "downloads": -1, "filename": "lassie-0.8.3.tar.gz", "has_sig": false, "md5_digest": "91265ced34e8bec6c75a685fa9e6ae15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10906, "upload_time": "2016-10-21T14:35:48", "url": "https://files.pythonhosted.org/packages/e5/56/2971c391aecb125dfd1c753680e7d59e01a986d9265eb55f4a700fc831a1/lassie-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "04794c7c667068c3c5291c3bdc55922c", "sha256": "ad5f396f681b3711e90aea59fe41667a8a4262fa2f4785562fc2d122fe63f295" }, "downloads": -1, "filename": "lassie-0.8.4.tar.gz", "has_sig": false, "md5_digest": "04794c7c667068c3c5291c3bdc55922c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10999, "upload_time": "2016-11-01T18:34:18", "url": "https://files.pythonhosted.org/packages/0d/2e/2076927ab8e0f05e948f39bec00ddbace533fa67b0ccfdbd7e0fca9dceaa/lassie-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "a34e26652b363ed9c5444c66c1fa49b6", "sha256": "20929fa2a9c5ae807645156c5bb76e8ec18f1da8c55f4612632c291643569a0f" }, "downloads": -1, "filename": "lassie-0.8.5.tar.gz", "has_sig": false, "md5_digest": "a34e26652b363ed9c5444c66c1fa49b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11486, "upload_time": "2016-11-03T17:20:54", "url": "https://files.pythonhosted.org/packages/8f/3d/ea5d5c7e8523405f1fd5a4d2b81fe848c1399a534e767360678099b2a1f6/lassie-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "ced63c94bb7409b436fe627bacfdd841", "sha256": "f4748a9116db5c507489cfa3bb5a043f7f8cdd665f1e96d978ec08a4ad4cc49a" }, "downloads": -1, "filename": "lassie-0.8.6.tar.gz", "has_sig": false, "md5_digest": "ced63c94bb7409b436fe627bacfdd841", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11568, "upload_time": "2016-11-17T16:50:35", "url": "https://files.pythonhosted.org/packages/78/d4/d240c4ff95b3ccb12c2906abc34ad70bf328ecf57c2e1a264ba4baff9b79/lassie-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "41dc1d1c30e267be52e988994f4532ad", "sha256": "896da78d57b1514529989c6ae651a0402c9705b85d3324147b8795a6877ba311" }, "downloads": -1, "filename": "lassie-0.8.7.tar.gz", "has_sig": false, "md5_digest": "41dc1d1c30e267be52e988994f4532ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11654, "upload_time": "2016-12-21T13:30:42", "url": "https://files.pythonhosted.org/packages/20/9a/ed2ed34f67d24fe27236a51699cd4d5c15b938d39f5ef1d848c5b0465e90/lassie-0.8.7.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "1738962373e3f5fbaec46a5a64b39c8e", "sha256": "fd44d3ed71745fa3d8b4fcdc6bdb056e50bb955f0e900cb2594f80056eece3c2" }, "downloads": -1, "filename": "lassie-0.9.0.tar.gz", "has_sig": false, "md5_digest": "1738962373e3f5fbaec46a5a64b39c8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12248, "upload_time": "2017-01-29T16:54:07", "url": "https://files.pythonhosted.org/packages/bb/0c/bed2d51a0a57f7533e3120b43c556a783d82415f0d0620420d1ed31cf90f/lassie-0.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d4f87195e6127f2a97e27669f50fae9a", "sha256": "a9a350072f2b43d9e9690b8ef04f96acc0b43d6eacd9c8727f28e162aed3852b" }, "downloads": -1, "filename": "lassie-0.11.7.tar.gz", "has_sig": false, "md5_digest": "d4f87195e6127f2a97e27669f50fae9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12608, "upload_time": "2018-08-03T16:41:27", "url": "https://files.pythonhosted.org/packages/4e/27/4a07e21a970bbf48b7c2f62cd1e48459aa0921016c26792fd4ab57812dde/lassie-0.11.7.tar.gz" } ] }