{ "info": { "author": "Tom Kralidis", "author_email": "tomkralidis@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering :: GIS" ], "description": "OWSLib\n======\n\n.. image:: https://travis-ci.org/geopython/OWSLib.svg?branch=master\n :target: https://travis-ci.org/geopython/OWSLib\n :alt: Travis Build\n\n.. image:: https://api.codacy.com/project/badge/Grade/09f15588c99943e3976cdf20b7b32c8d\n :target: https://www.codacy.com/project/cehbrecht/OWSLib/dashboard?utm_source=github.com&utm_medium=referral&utm_content=geopython/OWSLib&utm_campaign=Badge_Grade_Dashboard\n :alt: Codacy Check\n\n.. image:: https://img.shields.io/github/license/geopython/OWSLib.svg\n :target: https://github.com/geopython/OWSLib/blob/master/LICENSE\n :alt: GitHub license\n\n.. image:: https://badges.gitter.im/geopython/OWSLib.svg\n :target: https://gitter.im/geopython/OWSLib?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n :alt: Join the chat at https://gitter.im/geopython/OWSLib\n\nOWSLib is a Python package for client programming with Open Geospatial\nConsortium (OGC) web service (hence OWS) interface standards, and their\nrelated content models.\n\nFull documentation is available at http://geopython.github.io/OWSLib\n\nOWSLib provides a common API for accessing service metadata and wrappers for\nnumerous OGC Web Service interfaces.\n\nDependencies\n------------\n\nOWSLib requires elementtree (standard in 2.5 as xml.etree) or lxml.\n\nInstallation\n------------\n\nSee http://geopython.github.io/OWSLib/#installation\n\nUsage\n-----\n\nFind out what a WMS has to offer. Service metadata::\n\n >>> from owslib.wms import WebMapService\n >>> wms = WebMapService('http://wms.jpl.nasa.gov/wms.cgi', version='1.1.1')\n >>> wms.identification.type\n 'OGC:WMS'\n >>> wms.identification.version\n '1.1.1'\n >>> wms.identification.title\n 'JPL Global Imagery Service'\n >>> wms.identification.abstract\n 'WMS Server maintained by JPL, worldwide satellite imagery.'\n\nAvailable layers::\n\n >>> list(wms.contents)\n ['us_landsat_wgs84', 'modis', 'global_mosaic_base', 'huemapped_srtm',\n 'srtm_mag', 'daily_terra', 'us_ned', 'us_elevation', 'global_mosaic',\n 'daily_terra_ndvi', 'daily_aqua_ndvi', 'daily_aqua_721', 'daily_planet',\n 'BMNG', 'srtmplus', 'us_colordem', None, 'daily_aqua', 'worldwind_dem',\n 'daily_terra_721']\n\nDetails of a layer::\n\n >>> wms['global_mosaic'].title\n 'WMS Global Mosaic, pan sharpened'\n >>> wms['global_mosaic'].boundingBoxWGS84\n (-180.0, -60.0, 180.0, 84.0)\n >>> wms['global_mosaic'].crsOptions\n ['EPSG:4326', 'AUTO:42003']\n >>> wms['global_mosaic'].styles\n {'pseudo_bright': {'title': 'Pseudo-color image (Uses IR and Visual bands,\n 542 mapping), gamma 1.5'}, 'pseudo': {'title': '(default) Pseudo-color\n image, pan sharpened (Uses IR and Visual bands, 542 mapping), gamma 1.5'},\n 'visual': {'title': 'Real-color image, pan sharpened (Uses the visual\n bands, 321 mapping), gamma 1.5'}, 'pseudo_low': {'title': 'Pseudo-color\n image, pan sharpened (Uses IR and Visual bands, 542 mapping)'},\n 'visual_low': {'title': 'Real-color image, pan sharpened (Uses the visual\n bands, 321 mapping)'}, 'visual_bright': {'title': 'Real-color image (Uses\n the visual bands, 321 mapping), gamma 1.5'}}\n\nAvailable methods, their URLs, and available formats::\n\n >>> [op.name for op in wms.operations]\n ['GetTileService', 'GetCapabilities', 'GetMap']\n >>> wms.getOperationByName('GetMap').methods\n {'Get': {'url': 'http://wms.jpl.nasa.gov/wms.cgi?'}}\n >>> wms.getOperationByName('GetMap').formatOptions\n ['image/jpeg', 'image/png', 'image/geotiff', 'image/tiff']\n\nThat's everything needed to make a request for imagery::\n\n >>> img = wms.getmap( layers=['global_mosaic'],\n ... styles=['visual_bright'],\n ... srs='EPSG:4326',\n ... bbox=(-112, 36, -106, 41),\n ... size=(300, 250),\n ... format='image/jpeg',\n ... transparent=True\n ... )\n >>> out = open('jpl_mosaic_visb.jpg', 'wb')\n >>> out.write(img.read())\n >>> out.close()\n\nA very similar API exists for WebFeatureService. See\ntests/wfs_MapServerWFSCapabilities.txt for details.\n\nThere is also support for Web Coverage Service (WCS), Catalogue\nService for the Web (CSW), Web Processing Service (WPS), and Web\nMap Tile Service (WMTS). Some of those are beta quality.\n\n\nLogging\n-------\nOWSLib logs messages to the 'owslib' named python logger. You may\nconfigure your application to use the log messages like so:\n\n >>> import logging\n >>> owslib_log = logging.getLogger('owslib')\n >>> # Add formatting and handlers as needed\n >>> owslib_log.setLevel(logging.DEBUG)\n\nReleasing\n---------\n\n.. code-block:: bash\n\n # update version\n vi VERSION.txt\n vi owslib/__init__.py\n git commit -m 'update release version' VERSION.txt owslib/__init__.py\n # push changes\n git push origin master\n git tag -a x.y.z -m 'tagging OWSLib release x.y.z'\n # push tag\n git push --tags\n # update live docs\n cd docs\n make html\n ./publish.sh\n # update on PyPI (must be a maintainer)\n python setup.py sdist upload\n\nSupport\n-------\n\nhttp://lists.osgeo.org/mailman/listinfo/owslib-users\nhttp://lists.osgeo.org/mailman/listinfo/owslib-devel\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://geopython.github.io/OWSLib", "keywords": "gis ogc iso 19115 fgdc dif ows wfs wms sos csw wps wcs capabilities metadata wmts", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "OWSLib", "package_url": "https://pypi.org/project/OWSLib/", "platform": "", "project_url": "https://pypi.org/project/OWSLib/", "project_urls": { "Homepage": "http://geopython.github.io/OWSLib" }, "release_url": "https://pypi.org/project/OWSLib/0.18.0/", "requires_dist": null, "requires_python": "", "summary": "OGC Web Service utility library", "version": "0.18.0" }, "last_serial": 5443151, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "f969ac1e3e4760e4bf9868804f9285a3", "sha256": "70426e5951ed1ed5994e461c49e342917f9fea0b2d898f0a76bf77902a1a817f" }, "downloads": -1, "filename": "OWSLib-0.1.0-py2.4.egg", "has_sig": false, "md5_digest": "f969ac1e3e4760e4bf9868804f9285a3", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 29711, "upload_time": "2006-10-19T17:39:50", "url": "https://files.pythonhosted.org/packages/de/ab/a3b034787ae8a51080460c9d16370ac3f0fc0ea9bf8a90502c7644add26c/OWSLib-0.1.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "190ced6cf44463a0b54a93d2ee329335", "sha256": "05b22195c052fd0355f8702679ad052b3c9b167c58e0f2ec4419a542aacdb80f" }, "downloads": -1, "filename": "OWSLib-0.1.0.tar.gz", "has_sig": false, "md5_digest": "190ced6cf44463a0b54a93d2ee329335", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41237, "upload_time": "2006-10-19T17:39:49", "url": "https://files.pythonhosted.org/packages/e7/c7/76cb8c82778145f409b20872a870228180a1d8b5da2ecab637919de558de/OWSLib-0.1.0.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "8cd7db349108f63cd2b7a7af716ab370", "sha256": "d8ddcc6f249c23e8de6118e6efeefdd499d0b8a4ccca428b274e39f6f8cb2803" }, "downloads": -1, "filename": "OWSLib-0.10.0.tar.gz", "has_sig": false, "md5_digest": "8cd7db349108f63cd2b7a7af716ab370", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111233, "upload_time": "2015-11-11T17:14:42", "url": "https://files.pythonhosted.org/packages/73/95/d7142c62ff356258ea2fdb96fae4542b788b7f7eaf07e3fe7501f4eb57fb/OWSLib-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "a6fe5d3d52c8855596a332bec6e15856", "sha256": "5466dea3ac2c99b9e7391f42bbcb1a5ea54cad3fc634ad364e9e5c2ea0b203ef" }, "downloads": -1, "filename": "OWSLib-0.10.1.tar.gz", "has_sig": false, "md5_digest": "a6fe5d3d52c8855596a332bec6e15856", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111292, "upload_time": "2015-11-20T15:32:42", "url": "https://files.pythonhosted.org/packages/ff/91/d64586c02a02297114d8fc301e2a8b0a18cc38fc6f13901dadcaef2effe3/OWSLib-0.10.1.tar.gz" } ], "0.10.2": [], "0.10.3": [ { "comment_text": "", "digests": { "md5": "07ebf7dbaebf4d935c7636bb96732103", "sha256": "3ef00eccbf8e7539594684c61e44aa0c77cb127b6ba08fc453870006a44b35bf" }, "downloads": -1, "filename": "OWSLib-0.10.3.tar.gz", "has_sig": false, "md5_digest": "07ebf7dbaebf4d935c7636bb96732103", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111325, "upload_time": "2015-11-23T02:09:22", "url": "https://files.pythonhosted.org/packages/35/b9/1d37ac11c28115f1af9c9be4a2e12afc0a169b5d46ea8d0981d4301d241f/OWSLib-0.10.3.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "72437afa6e0eda059194ac2eae0b113b", "sha256": "5d97f84e0083186f025ebf9a3b9f45118a3521f6e62b3d350d58044a8722cac7" }, "downloads": -1, "filename": "OWSLib-0.11.0.tar.gz", "has_sig": false, "md5_digest": "72437afa6e0eda059194ac2eae0b113b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113485, "upload_time": "2016-04-01T18:12:04", "url": "https://files.pythonhosted.org/packages/89/1f/0a0dabee52a47f9332ccc4c1af78fb123b2525eca169e1a331a44b7582ac/OWSLib-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "72f7b0116019feb6c5b457fe7e7d1f33", "sha256": "d6fa066d17329abf94a3fb3270fb389077a1027b8d4fdc2b4bd9d16109b7edc0" }, "downloads": -1, "filename": "OWSLib-0.11.1.tar.gz", "has_sig": false, "md5_digest": "72f7b0116019feb6c5b457fe7e7d1f33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113533, "upload_time": "2016-05-12T14:07:53", "url": "https://files.pythonhosted.org/packages/8c/6e/c63b24df87e43d24c492c2e47bc9bca298c9d410b6e02f0e31899c0585fa/OWSLib-0.11.1.tar.gz" } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "c563681ccb0dc9ef59be7edc93ef42c5", "sha256": "7bddfed51f178b17954d4e4cba9c30eb0e79ba0a2540df14ec43c516c6064d8a" }, "downloads": -1, "filename": "OWSLib-0.11.2.tar.gz", "has_sig": false, "md5_digest": "c563681ccb0dc9ef59be7edc93ef42c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113632, "upload_time": "2016-05-16T00:48:49", "url": "https://files.pythonhosted.org/packages/aa/e1/576bfdbfd9493749a0c6e62d15d3beef92ac06ed61434c294fe4fbf0c82e/OWSLib-0.11.2.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "ec5bd04aedc92055b3a9e0bd8d636ee6", "sha256": "b14276105eafe895e9d3e9da1b2d23376d71e031516a72cfd4dd0dbfc0ec4575" }, "downloads": -1, "filename": "OWSLib-0.12.0.tar.gz", "has_sig": false, "md5_digest": "ec5bd04aedc92055b3a9e0bd8d636ee6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116390, "upload_time": "2016-09-12T11:17:45", "url": "https://files.pythonhosted.org/packages/e8/df/1ddcfd99600b0b30692d7016d6686f44b3925193599da660d1bc4867206b/OWSLib-0.12.0.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "7d1d857984eed2ead10e62b070825b77", "sha256": "2fe2d1ca85f7d6e115181a030c5b5ca6f5b00860798c6e052d93d55e23362708" }, "downloads": -1, "filename": "OWSLib-0.13.0.tar.gz", "has_sig": false, "md5_digest": "7d1d857984eed2ead10e62b070825b77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119779, "upload_time": "2016-09-24T11:30:01", "url": "https://files.pythonhosted.org/packages/22/4e/7a841549b28c6ab7ba295023c6688dc9668d3683027440e1d1f826739b56/OWSLib-0.13.0.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "8d77524d64a4abad22862f31ef6e247d", "sha256": "3b77ae9bb752d96c9eda9509099f92ca0c28dd03ba624ad71e6cdad471380368" }, "downloads": -1, "filename": "OWSLib-0.14.0.tar.gz", "has_sig": false, "md5_digest": "8d77524d64a4abad22862f31ef6e247d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120113, "upload_time": "2017-01-12T16:49:42", "url": "https://files.pythonhosted.org/packages/e8/06/f3eb7d8eabf9a27238e185d19523c899af25f7d792054333381652d02df8/OWSLib-0.14.0.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "b5a8a5660bd589d2f5bb48567e11f5b0", "sha256": "4d0bc3fe7763ae05ab15a83cf22715f4922a23296eb0813f2e54a01401745000" }, "downloads": -1, "filename": "OWSLib-0.15.0.tar.gz", "has_sig": false, "md5_digest": "b5a8a5660bd589d2f5bb48567e11f5b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127810, "upload_time": "2017-09-13T18:17:03", "url": "https://files.pythonhosted.org/packages/18/c7/62ee2df5f51a6ff692538ac5d0f0aed22f3bc8fa67e2125aae831bb6fa3e/OWSLib-0.15.0.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "7ff9c9edde95eadeb27ea8d8fbd1a2cf", "sha256": "ec95a5e93c145a5d84b0074b9ea27570943486552a669151140debf08a100554" }, "downloads": -1, "filename": "OWSLib-0.16.0.tar.gz", "has_sig": false, "md5_digest": "7ff9c9edde95eadeb27ea8d8fbd1a2cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128736, "upload_time": "2017-12-22T02:51:02", "url": "https://files.pythonhosted.org/packages/ac/71/ff2fbfa64fca17069ce30fac324533aa686c5cb64e6b5f522faed558848f/OWSLib-0.16.0.tar.gz" } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "ca6f849f62c4f671180941871a4c0d58", "sha256": "ac43839c238ae427d6112709c489decb12218f02d5032ca729e5de7557b5a2df" }, "downloads": -1, "filename": "OWSLib-0.17.0.tar.gz", "has_sig": false, "md5_digest": "ca6f849f62c4f671180941871a4c0d58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149952, "upload_time": "2018-09-19T16:29:52", "url": "https://files.pythonhosted.org/packages/cc/9c/fd05b20753b0c8a94c225e77c21dfa04a32c9fdbf54001b313bbd0092820/OWSLib-0.17.0.tar.gz" } ], "0.17.1": [ { "comment_text": "", "digests": { "md5": "be7dd2ddbb685c8a4c50591f8ff63700", "sha256": "b2e7fd694d3cffcee79317bad492d60c0aa887aea6916517c051c3247b33b5a5" }, "downloads": -1, "filename": "OWSLib-0.17.1.tar.gz", "has_sig": false, "md5_digest": "be7dd2ddbb685c8a4c50591f8ff63700", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152635, "upload_time": "2019-01-12T20:07:28", "url": "https://files.pythonhosted.org/packages/07/15/9609cbb31c9f7ce729d444c04319c1e68a1ae3fd377a93c7615392c0b1e0/OWSLib-0.17.1.tar.gz" } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "85a993280bc098802e504ec0f1dc4537", "sha256": "f5645c2f28a058a794309e0349038139f2f0e2065aa40b017d6cad5baf171705" }, "downloads": -1, "filename": "OWSLib-0.18.0.tar.gz", "has_sig": false, "md5_digest": "85a993280bc098802e504ec0f1dc4537", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154954, "upload_time": "2019-06-25T00:03:05", "url": "https://files.pythonhosted.org/packages/3f/ee/78ddeb01aa6af43c6943f7e706167b229362646d6fc6fec3479fa07bab8c/OWSLib-0.18.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "9a1f21ad7fb399d1d8e6406b0926d871", "sha256": "cd78a415d8ffc5db1fdf783dac06c516173b2929a6e4ac23c771ecea07d45f3e" }, "downloads": -1, "filename": "OWSLib-0.2.0-py2.4.egg", "has_sig": false, "md5_digest": "9a1f21ad7fb399d1d8e6406b0926d871", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 29899, "upload_time": "2007-02-02T05:35:07", "url": "https://files.pythonhosted.org/packages/ba/67/71791a2a180b3abce1cf31005a00cf64606752e20aaa5067691546fe9f1e/OWSLib-0.2.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "99b5697592ee2ade9b6284cdb8bf1b83", "sha256": "d031722d9720ed7812d255360674f1046fc4cabf3202e680db9d20962c058771" }, "downloads": -1, "filename": "OWSLib-0.2.0.tar.gz", "has_sig": false, "md5_digest": "99b5697592ee2ade9b6284cdb8bf1b83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34946, "upload_time": "2007-02-02T05:33:35", "url": "https://files.pythonhosted.org/packages/77/09/8074e3747f0ec98fdcee8fff0c790c0c5d70105423f4155b29b6f0dfa033/OWSLib-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "e7b59c55f82b4178837253614616228b", "sha256": "9e8d27f3122dad342ba5be71cc89b306e2dffcf82b69c73f9735041484be384b" }, "downloads": -1, "filename": "OWSLib-0.2.1-py2.4.egg", "has_sig": false, "md5_digest": "e7b59c55f82b4178837253614616228b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 30439, "upload_time": "2007-08-06T16:30:24", "url": "https://files.pythonhosted.org/packages/9e/b4/6b85dcafcb04c025e2e84059b50db3a76c3f9c8e9011abee3e599ca6df24/OWSLib-0.2.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "6bb7b058302e14315aa87fb4382cb258", "sha256": "a09adae8e4d42628a8ddc2591d023a0d82a6516065e1656b01c1600d4acf2c8e" }, "downloads": -1, "filename": "OWSLib-0.2.1.tar.gz", "has_sig": false, "md5_digest": "6bb7b058302e14315aa87fb4382cb258", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34653, "upload_time": "2007-08-06T16:30:24", "url": "https://files.pythonhosted.org/packages/bd/82/9a7367186a299d9d6750466deb1428117954e6af749dde0de5d2fc1ebe81/OWSLib-0.2.1.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "8b14c6b82a4d3e55d5ee18fa1227eb9e", "sha256": "0612957f151367ef9e1f3f4fdb7f432da8712813e5c50bd302d041840e129c40" }, "downloads": -1, "filename": "OWSLib-0.3.tar.gz", "has_sig": false, "md5_digest": "8b14c6b82a4d3e55d5ee18fa1227eb9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46400, "upload_time": "2008-05-09T14:56:16", "url": "https://files.pythonhosted.org/packages/ed/cf/4ec5488113a108811ee419b8878646c81055077cad1a7910cf3d1495d199/OWSLib-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "b822f0581ee4de193df4b253aacb4189", "sha256": "0d1b328b0efa650a2aeae06e587d111dde60b4975a476b619d0043b7602d84f1" }, "downloads": -1, "filename": "OWSLib-0.3.1.tar.gz", "has_sig": false, "md5_digest": "b822f0581ee4de193df4b253aacb4189", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50921, "upload_time": "2009-03-10T17:08:00", "url": "https://files.pythonhosted.org/packages/b8/0d/1a00998572f0fc8f0907314e513deb4f3cfeae8c0edb957064d284570808/OWSLib-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "1fa964a6c9bdd36cf51388b3ee01695e", "sha256": "c76bf8491b66c9f85eb283b7cf8e4fd705c49ad6fc088b098839814a99ed2ef8" }, "downloads": -1, "filename": "OWSLib-0.4.0.tar.gz", "has_sig": false, "md5_digest": "1fa964a6c9bdd36cf51388b3ee01695e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113468, "upload_time": "2011-10-02T16:03:21", "url": "https://files.pythonhosted.org/packages/8b/05/23d2835a5fd8be4f48b831c515ba5fed9b5a9f9d8b2b882ac7abdcd2dee4/OWSLib-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "92ca93a7ae00e2001b474b7adddfb998", "sha256": "82651d1add49d245b615a7a8b17e8273d5a3feac78aac21f32527b0ffa0cb7c9" }, "downloads": -1, "filename": "OWSLib-0.5.0.tar.gz", "has_sig": false, "md5_digest": "92ca93a7ae00e2001b474b7adddfb998", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77125, "upload_time": "2012-06-15T14:31:06", "url": "https://files.pythonhosted.org/packages/8c/9c/7bfaab5311f7a196d394da3a48dcb42df77748344da72ff63a4fc6fa71d6/OWSLib-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "d4cbfc43de32ffcf39cb358b280b0153", "sha256": "659931ba6d0f5250d08a0d73c9f2b7601cdf185924fe7a7059ff8a6042b66269" }, "downloads": -1, "filename": "OWSLib-0.5.1.tar.gz", "has_sig": false, "md5_digest": "d4cbfc43de32ffcf39cb358b280b0153", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78626, "upload_time": "2012-08-06T16:15:53", "url": "https://files.pythonhosted.org/packages/e8/ef/0f757cf6ce26ae2bbb07e5e8d798097048d8428ad9fbe501c4075c61f904/OWSLib-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "d937b269028a0f2bdd550fa4aa642b4c", "sha256": "e1e5e54fe559ca20c67c86850e6b1179d3e5ba0829a62d1ecc163f49fea7f8e2" }, "downloads": -1, "filename": "OWSLib-0.6.0.tar.gz", "has_sig": false, "md5_digest": "d937b269028a0f2bdd550fa4aa642b4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82430, "upload_time": "2012-12-22T19:38:32", "url": "https://files.pythonhosted.org/packages/b6/40/88e7d059a3013aa174a24f81a3477a05f0ff2639d7be930bba4ae79fb223/OWSLib-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "614362f8a0df297108806a76b3c42f84", "sha256": "e3d198c229c8d064ac8792d7284be3b87644bc452f9678632ba79deaffbe4b3d" }, "downloads": -1, "filename": "OWSLib-0.6.1.tar.gz", "has_sig": false, "md5_digest": "614362f8a0df297108806a76b3c42f84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82439, "upload_time": "2013-01-11T19:36:46", "url": "https://files.pythonhosted.org/packages/c1/94/efc3a0cdf33a93575e4bb7ce4433382b8d3be611fd6de4da06a2390b28fb/OWSLib-0.6.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "446e82f562e45fc4401ac64769d69981", "sha256": "d2a031e2ea2d9f52bf6af43d73172e17981d298b6122bc45bb6349e4aaf5fa24" }, "downloads": -1, "filename": "OWSLib-0.7.0.tar.gz", "has_sig": false, "md5_digest": "446e82f562e45fc4401ac64769d69981", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91315, "upload_time": "2013-02-18T15:37:07", "url": "https://files.pythonhosted.org/packages/45/4d/54e80a31080605975fa3c55771502a9e6a31b4b04be8c379a20055316feb/OWSLib-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "60fa2b8dfb6fef701f449e3195f24620", "sha256": "fad3d63367e7decf9cc5ff1f1d7e3ee524e0483f3134e288e4adb0dbffcc4ad5" }, "downloads": -1, "filename": "OWSLib-0.7.1.tar.gz", "has_sig": false, "md5_digest": "60fa2b8dfb6fef701f449e3195f24620", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91399, "upload_time": "2013-02-18T18:24:04", "url": "https://files.pythonhosted.org/packages/64/52/7ddadce5e527a1415d748dd0a23e1495cada798307bcfc3c1e6b56d64a16/OWSLib-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "1fba722950dd85571fd3d5de50bc4c36", "sha256": "004fbb0c2d2e1182d3900c305e05fbdba98b191b5f9f33cbc98a6a313feb2798" }, "downloads": -1, "filename": "OWSLib-0.7.2.tar.gz", "has_sig": false, "md5_digest": "1fba722950dd85571fd3d5de50bc4c36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91487, "upload_time": "2013-04-10T16:52:09", "url": "https://files.pythonhosted.org/packages/96/28/36a73dd2820414feddc0e98abc0f52a414232db53fa8204582e8f9682aeb/OWSLib-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "2c25d236920093b3639a3369f8476075", "sha256": "767d18996901a486b78998280b39bdaafbed801899593386fef37fd06fd81fa4" }, "downloads": -1, "filename": "OWSLib-0.8.0.tar.gz", "has_sig": false, "md5_digest": "2c25d236920093b3639a3369f8476075", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 94116, "upload_time": "2013-09-11T12:10:45", "url": "https://files.pythonhosted.org/packages/c1/8b/a9d37098a5e9d221ac622a6d0d09cad90ef40b7e76f28bc4eee7eeb99a82/OWSLib-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "f096947efd6ce61400d064c81495a0e3", "sha256": "93f18511f06680970714645153662e49fd99783b6178d2388961b69eac66fcc4" }, "downloads": -1, "filename": "OWSLib-0.8.1.tar.gz", "has_sig": false, "md5_digest": "f096947efd6ce61400d064c81495a0e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 94110, "upload_time": "2013-09-11T13:03:50", "url": "https://files.pythonhosted.org/packages/ee/7d/bf68dbb827dc664897b3e20a23de17a21ec1e0e913d963cc43f166b62e70/OWSLib-0.8.1.tar.gz" } ], "0.8.10": [ { "comment_text": "", "digests": { "md5": "bf942298cef015bec19e9ea9e7380248", "sha256": "4ea6d697716fb067f3f41a4e6aa60598f1baf0fcdd817ddd3beb52d4db81af96" }, "downloads": -1, "filename": "OWSLib-0.8.10.tar.gz", "has_sig": false, "md5_digest": "bf942298cef015bec19e9ea9e7380248", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103025, "upload_time": "2014-10-13T14:15:57", "url": "https://files.pythonhosted.org/packages/19/56/b16ff102e149fc249767094ecb5e04b18f1cb4739ac3a780c1af76672538/OWSLib-0.8.10.tar.gz" } ], "0.8.11": [ { "comment_text": "", "digests": { "md5": "3398b4dcff565a942d0612f76612d5c4", "sha256": "20d2c9a637c91745711d68d8145410d98a04d41b87e8ef857572f9221f54eeea" }, "downloads": -1, "filename": "OWSLib-0.8.11.tar.gz", "has_sig": false, "md5_digest": "3398b4dcff565a942d0612f76612d5c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104194, "upload_time": "2014-12-17T14:27:46", "url": "https://files.pythonhosted.org/packages/bd/f4/71ff20a35a004f6effca0d4acadf73ea72be4c153abe545b70854bded4b0/OWSLib-0.8.11.tar.gz" } ], "0.8.12": [ { "comment_text": "", "digests": { "md5": "0d5d63dd741ff8c3ff83a5f36249736e", "sha256": "88b369a37c13ce5d0bcaa63bd2ffd8d225d8622d1ff9a2cc1e882d16ca3cfd38" }, "downloads": -1, "filename": "OWSLib-0.8.12.tar.gz", "has_sig": false, "md5_digest": "0d5d63dd741ff8c3ff83a5f36249736e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104222, "upload_time": "2014-12-19T21:14:47", "url": "https://files.pythonhosted.org/packages/e6/77/db6d547835aa6921ed7195f51566a4a4c78a5d3c6ce30b10905399453758/OWSLib-0.8.12.tar.gz" } ], "0.8.13": [ { "comment_text": "", "digests": { "md5": "88bea2bebbd948c48098b004bb551aec", "sha256": "420c0100bd90dec0d0489ad4d1818214a2b6d4b9bca778c6acadd66f9046c1b7" }, "downloads": -1, "filename": "OWSLib-0.8.13.tar.gz", "has_sig": false, "md5_digest": "88bea2bebbd948c48098b004bb551aec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104320, "upload_time": "2015-02-12T15:54:29", "url": "https://files.pythonhosted.org/packages/ed/38/31c81be04a5ec05f2811ac768d92617a171f6c9caddc4c945a003aef2992/OWSLib-0.8.13.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "70443cad341eb642d4602e6539683596", "sha256": "4ffd274a28f492433a145454ca7c84f7e43e402069d73e4b9842a17994cd48ad" }, "downloads": -1, "filename": "OWSLib-0.8.2.tar.gz", "has_sig": false, "md5_digest": "70443cad341eb642d4602e6539683596", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96615, "upload_time": "2013-09-15T17:12:29", "url": "https://files.pythonhosted.org/packages/0b/8b/71cd3cc0ec5770f46bb5a3f8fe19853122cbd73316720069786639b2381f/OWSLib-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "7e0924b8030d8039f41ae30982268296", "sha256": "c4de0085d1884ff7b7cf732fd8c8ac54caa4b90907e146418c187b744c4cd62f" }, "downloads": -1, "filename": "OWSLib-0.8.3.tar.gz", "has_sig": false, "md5_digest": "7e0924b8030d8039f41ae30982268296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97253, "upload_time": "2014-01-10T13:54:22", "url": "https://files.pythonhosted.org/packages/dc/13/a5487b8f4d0a1240eeb40e93e1e9d59271a7a9aecf0d50ff73fe9e2fda4e/OWSLib-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "cf1a822b0ddb77dda7d730f123852837", "sha256": "4f02b5624433b2e6d4418c684992556db22c369400895f9cb54cc7c8fe1fe2e3" }, "downloads": -1, "filename": "OWSLib-0.8.4.tar.gz", "has_sig": false, "md5_digest": "cf1a822b0ddb77dda7d730f123852837", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97076, "upload_time": "2014-01-31T12:18:45", "url": "https://files.pythonhosted.org/packages/cb/87/76a11ec07a12091ec1e324cf882191184497cbdf128e0bc46ff0810afb25/OWSLib-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "d48b1ce48c459fac892d1e982bd05615", "sha256": "d3a42df16f6f6671335623268cc7b1e3ad3f703fb097a43521356fee4a20c146" }, "downloads": -1, "filename": "OWSLib-0.8.5.tar.gz", "has_sig": false, "md5_digest": "d48b1ce48c459fac892d1e982bd05615", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97106, "upload_time": "2014-02-03T17:54:20", "url": "https://files.pythonhosted.org/packages/27/cc/15dc0cea1ac8f9c5f7d294ce8711ce098d213566d247feb5b5eb8fbe2c85/OWSLib-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "79abcc30f595e4172812d9150df0d22e", "sha256": "8646672fe2ec91cad8e0f80199d001d485c0ae7c32c5cbd5cba6c019a6d84ac6" }, "downloads": -1, "filename": "OWSLib-0.8.6.tar.gz", "has_sig": false, "md5_digest": "79abcc30f595e4172812d9150df0d22e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97199, "upload_time": "2014-02-03T21:09:53", "url": "https://files.pythonhosted.org/packages/0a/05/0c9a6d394c83aea94f205e12c7f01469ea4b8238e656958f25274a75001e/OWSLib-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "a86f087e07529b58b918a05af883ef60", "sha256": "a1d4e4d5985c15146befde5bb521ccd458f6d7caa58a099cf58669cc2c15c8dd" }, "downloads": -1, "filename": "OWSLib-0.8.7.tar.gz", "has_sig": false, "md5_digest": "a86f087e07529b58b918a05af883ef60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98340, "upload_time": "2014-05-02T18:11:31", "url": "https://files.pythonhosted.org/packages/31/78/4ef2730abe1eb4a1998c4ef10852a7a4c035af98f6794806602fc21eb5b4/OWSLib-0.8.7.tar.gz" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "09c74461605f18d0381080ab0ecb20cd", "sha256": "f42b2e436a02b080b3c2e30e781f862890d5a10d01b3417bed072f8445fa0a69" }, "downloads": -1, "filename": "OWSLib-0.8.8.tar.gz", "has_sig": false, "md5_digest": "09c74461605f18d0381080ab0ecb20cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102138, "upload_time": "2014-07-05T18:20:17", "url": "https://files.pythonhosted.org/packages/50/3a/011cd269ea024d32071dc0d58ee7a46aa625573ec48760b6843ebc540174/OWSLib-0.8.8.tar.gz" } ], "0.8.9": [ { "comment_text": "", "digests": { "md5": "5f79d0d4ab6f53748b6cc3eff7e0a3c3", "sha256": "5c9091a5325e5932077c06a7bded9a0befeffa4aeaa08c074eabad160660e82c" }, "downloads": -1, "filename": "OWSLib-0.8.9.tar.gz", "has_sig": false, "md5_digest": "5f79d0d4ab6f53748b6cc3eff7e0a3c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103523, "upload_time": "2014-09-24T12:20:35", "url": "https://files.pythonhosted.org/packages/0f/6b/9cc349c10a6532dfd7ddb514f96d6f4450c1f8d84c448dcf01cb866d2a14/OWSLib-0.8.9.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "e511e8bdddce0e59abefc892f090e033", "sha256": "9ade8d45567c37083f35ae6496e8ff0727ad35fe54a3e638bcea9bfe14a768dc" }, "downloads": -1, "filename": "OWSLib-0.9.0.tar.gz", "has_sig": false, "md5_digest": "e511e8bdddce0e59abefc892f090e033", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104836, "upload_time": "2015-06-12T21:03:00", "url": "https://files.pythonhosted.org/packages/2e/b8/d22f9deebeefe592534ec0b29ab0da6f796f87bcb55af22edccdd82633f5/OWSLib-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "9ca33a5815d07ae8c97dfa3747118d2c", "sha256": "9b594e2b748dd91ee66662ef937375685ad433b90e92eb9d217c2c8c5b58e04e" }, "downloads": -1, "filename": "OWSLib-0.9.1.tar.gz", "has_sig": false, "md5_digest": "9ca33a5815d07ae8c97dfa3747118d2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106032, "upload_time": "2015-09-03T23:44:43", "url": "https://files.pythonhosted.org/packages/87/24/0f43c5bd36988b627451048151a4b2ac8be3822ff6ebd95261c953304df1/OWSLib-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "01e1e142dc26bbeab61eae1d26a44c46", "sha256": "d5af04194467f035c7ea2121ed2ddbc576ee460ecc2778296de5ced9c060430a" }, "downloads": -1, "filename": "OWSLib-0.9.2.tar.gz", "has_sig": false, "md5_digest": "01e1e142dc26bbeab61eae1d26a44c46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106900, "upload_time": "2015-09-24T00:15:07", "url": "https://files.pythonhosted.org/packages/08/8f/b6ec926dc0ebba79df1a251751209433e66a3b221abada58d0b9d56fc296/OWSLib-0.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "85a993280bc098802e504ec0f1dc4537", "sha256": "f5645c2f28a058a794309e0349038139f2f0e2065aa40b017d6cad5baf171705" }, "downloads": -1, "filename": "OWSLib-0.18.0.tar.gz", "has_sig": false, "md5_digest": "85a993280bc098802e504ec0f1dc4537", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154954, "upload_time": "2019-06-25T00:03:05", "url": "https://files.pythonhosted.org/packages/3f/ee/78ddeb01aa6af43c6943f7e706167b229362646d6fc6fec3479fa07bab8c/OWSLib-0.18.0.tar.gz" } ] }