{ "info": { "author": "Sean Gillies", "author_email": "sgillies@frii.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: GIS" ], "description": "geojson\n==============\n\n.. image:: https://img.shields.io/travis/jazzband/geojson.svg\n :target: https://travis-ci.org/jazzband/geojson\n.. image:: https://img.shields.io/codecov/c/github/jazzband/geojson.svg\n :target: https://codecov.io/github/jazzband/geojson?branch=master\n\nThis Python library contains:\n\n- Functions for encoding and decoding GeoJSON_ formatted data\n- Classes for all GeoJSON Objects\n- An implementation of the Python `__geo_interface__ Specification`_\n\n**Table of Contents**\n\n.. contents::\n :backlinks: none\n :local:\n\nInstallation\n------------\n\ngeojson is compatible with Python 2.7, 3.5, 3.6 and 3.7. The recommended way to install is via pip_:\n\n.. code::\n\n pip install geojson\n\n.. _PyPi as 'geojson': https://pypi.python.org/pypi/geojson/\n.. _pip: http://www.pip-installer.org\n\nGeoJSON Objects\n---------------\n\nThis library implements all the `GeoJSON Objects`_ described in `The GeoJSON Format Specification`_.\n\n.. _GeoJSON Objects: https://tools.ietf.org/html/rfc7946#section-3\n\nAll object keys can also be used as attributes.\n\nThe objects contained in GeometryCollection and FeatureCollection can be indexed directly.\n\nPoint\n~~~~~\n\n.. code:: python\n\n >>> from geojson import Point\n\n >>> Point((-115.81, 37.24)) # doctest: +ELLIPSIS\n {\"coordinates\": [-115.8..., 37.2...], \"type\": \"Point\"}\n\nVisualize the result of the example above `here `__. General information about Point can be found in `Section 3.1.2`_ and `Appendix A: Points`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.2: https://tools.ietf.org/html/rfc7946#section-3.1.2\n.. _Appendix A\\: Points: https://tools.ietf.org/html/rfc7946#appendix-A.1\n\nMultiPoint\n~~~~~~~~~~\n\n.. code:: python\n\n >>> from geojson import MultiPoint\n\n >>> MultiPoint([(-155.52, 19.61), (-156.22, 20.74), (-157.97, 21.46)]) # doctest: +ELLIPSIS\n {\"coordinates\": [[-155.5..., 19.6...], [-156.2..., 20.7...], [-157.9..., 21.4...]], \"type\": \"MultiPoint\"}\n\nVisualize the result of the example above `here `__. General information about MultiPoint can be found in `Section 3.1.3`_ and `Appendix A: MultiPoints`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.3: https://tools.ietf.org/html/rfc7946#section-3.1.3\n.. _Appendix A\\: MultiPoints: https://tools.ietf.org/html/rfc7946#appendix-A.4\n\n\nLineString\n~~~~~~~~~~\n\n.. code:: python\n\n >>> from geojson import LineString\n\n >>> LineString([(8.919, 44.4074), (8.923, 44.4075)]) # doctest: +ELLIPSIS\n {\"coordinates\": [[8.91..., 44.407...], [8.92..., 44.407...]], \"type\": \"LineString\"}\n\nVisualize the result of the example above `here `__. General information about LineString can be found in `Section 3.1.4`_ and `Appendix A: LineStrings`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.4: https://tools.ietf.org/html/rfc7946#section-3.1.4\n.. _Appendix A\\: LineStrings: https://tools.ietf.org/html/rfc7946#appendix-A.2\n\nMultiLineString\n~~~~~~~~~~~~~~~\n\n.. code:: python\n\n >>> from geojson import MultiLineString\n\n >>> MultiLineString([\n ... [(3.75, 9.25), (-130.95, 1.52)],\n ... [(23.15, -34.25), (-1.35, -4.65), (3.45, 77.95)]\n ... ]) # doctest: +ELLIPSIS\n {\"coordinates\": [[[3.7..., 9.2...], [-130.9..., 1.52...]], [[23.1..., -34.2...], [-1.3..., -4.6...], [3.4..., 77.9...]]], \"type\": \"MultiLineString\"}\n\nVisualize the result of the example above `here `__. General information about MultiLineString can be found in `Section 3.1.5`_ and `Appendix A: MultiLineStrings`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.5: https://tools.ietf.org/html/rfc7946#section-3.1.5\n.. _Appendix A\\: MultiLineStrings: https://tools.ietf.org/html/rfc7946#appendix-A.5\n\nPolygon\n~~~~~~~\n\n.. code:: python\n\n >>> from geojson import Polygon\n\n >>> # no hole within polygon\n >>> Polygon([[(2.38, 57.322), (23.194, -20.28), (-120.43, 19.15), (2.38, 57.322)]]) # doctest: +ELLIPSIS\n {\"coordinates\": [[[2.3..., 57.32...], [23.19..., -20.2...], [-120.4..., 19.1...]]], \"type\": \"Polygon\"}\n\n >>> # hole within polygon\n >>> Polygon([\n ... [(2.38, 57.322), (23.194, -20.28), (-120.43, 19.15), (2.38, 57.322)],\n ... [(-5.21, 23.51), (15.21, -10.81), (-20.51, 1.51), (-5.21, 23.51)]\n ... ]) # doctest: +ELLIPSIS\n {\"coordinates\": [[[2.3..., 57.32...], [23.19..., -20.2...], [-120.4..., 19.1...]], [[-5.2..., 23.5...], [15.2..., -10.8...], [-20.5..., 1.5...], [-5.2..., 23.5...]]], \"type\": \"Polygon\"}\n\nVisualize the results of the example above `here `__. General information about Polygon can be found in `Section 3.1.6`_ and `Appendix A: Polygons`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.6: https://tools.ietf.org/html/rfc7946#section-3.1.6\n.. _Appendix A\\: Polygons: https://tools.ietf.org/html/rfc7946#appendix-A.3\n\nMultiPolygon\n~~~~~~~~~~~~\n\n.. code:: python\n\n >>> from geojson import MultiPolygon\n\n >>> MultiPolygon([\n ... ([(3.78, 9.28), (-130.91, 1.52), (35.12, 72.234), (3.78, 9.28)],),\n ... ([(23.18, -34.29), (-1.31, -4.61), (3.41, 77.91), (23.18, -34.29)],)\n ... ]) # doctest: +ELLIPSIS\n {\"coordinates\": [[[[3.7..., 9.2...], [-130.9..., 1.5...], [35.1..., 72.23...]]], [[[23.1..., -34.2...], [-1.3..., -4.6...], [3.4..., 77.9...]]]], \"type\": \"MultiPolygon\"}\n\nVisualize the result of the example above `here `__. General information about MultiPolygon can be found in `Section 3.1.7`_ and `Appendix A: MultiPolygons`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.7: https://tools.ietf.org/html/rfc7946#section-3.1.7\n.. _Appendix A\\: MultiPolygons: https://tools.ietf.org/html/rfc7946#appendix-A.6\n\nGeometryCollection\n~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n >>> from geojson import GeometryCollection, Point, LineString\n\n >>> my_point = Point((23.532, -63.12))\n\n >>> my_line = LineString([(-152.62, 51.21), (5.21, 10.69)])\n\n >>> geo_collection = GeometryCollection([my_point, my_line])\n\n >>> geo_collection # doctest: +ELLIPSIS\n {\"geometries\": [{\"coordinates\": [23.53..., -63.1...], \"type\": \"Point\"}, {\"coordinates\": [[-152.6..., 51.2...], [5.2..., 10.6...]], \"type\": \"LineString\"}], \"type\": \"GeometryCollection\"}\n\n >>> geo_collection[1]\n {\"coordinates\": [[-152.62, 51.21], [5.21, 10.69]], \"type\": \"LineString\"}\n\n >>> geo_collection[0] == geo_collection.geometries[0]\n True\n\nVisualize the result of the example above `here `__. General information about GeometryCollection can be found in `Section 3.1.8`_ and `Appendix A: GeometryCollections`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.8: https://tools.ietf.org/html/rfc7946#section-3.1.8\n.. _Appendix A\\: GeometryCollections: https://tools.ietf.org/html/rfc7946#appendix-A.7\n\nFeature\n~~~~~~~\n\n.. code:: python\n\n >>> from geojson import Feature, Point\n\n >>> my_point = Point((-3.68, 40.41))\n\n >>> Feature(geometry=my_point) # doctest: +ELLIPSIS\n {\"geometry\": {\"coordinates\": [-3.68..., 40.4...], \"type\": \"Point\"}, \"properties\": {}, \"type\": \"Feature\"}\n\n >>> Feature(geometry=my_point, properties={\"country\": \"Spain\"}) # doctest: +ELLIPSIS\n {\"geometry\": {\"coordinates\": [-3.68..., 40.4...], \"type\": \"Point\"}, \"properties\": {\"country\": \"Spain\"}, \"type\": \"Feature\"}\n\n >>> Feature(geometry=my_point, id=27) # doctest: +ELLIPSIS\n {\"geometry\": {\"coordinates\": [-3.68..., 40.4...], \"type\": \"Point\"}, \"id\": 27, \"properties\": {}, \"type\": \"Feature\"}\n\nVisualize the results of the examples above `here `__. General information about Feature can be found in `Section 3.2`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.2: https://tools.ietf.org/html/rfc7946#section-3.2\n\nFeatureCollection\n~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n >>> from geojson import Feature, Point, FeatureCollection\n\n >>> my_feature = Feature(geometry=Point((1.6432, -19.123)))\n\n >>> my_other_feature = Feature(geometry=Point((-80.234, -22.532)))\n\n >>> feature_collection = FeatureCollection([my_feature, my_other_feature])\n\n >>> feature_collection # doctest: +ELLIPSIS\n {\"features\": [{\"geometry\": {\"coordinates\": [1.643..., -19.12...], \"type\": \"Point\"}, \"properties\": {}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [-80.23..., -22.53...], \"type\": \"Point\"}, \"properties\": {}, \"type\": \"Feature\"}], \"type\": \"FeatureCollection\"}\n\n >>> feature_collection.errors()\n []\n\n >>> (feature_collection[0] == feature_collection['features'][0], feature_collection[1] == my_other_feature)\n (True, True)\n\nVisualize the result of the example above `here `__. General information about FeatureCollection can be found in `Section 3.3`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.3: https://tools.ietf.org/html/rfc7946#section-3.3\n\nGeoJSON encoding/decoding\n-------------------------\n\nAll of the GeoJSON Objects implemented in this library can be encoded and decoded into raw GeoJSON with the ``geojson.dump``, ``geojson.dumps``, ``geojson.load``, and ``geojson.loads`` functions. Note that each of these functions is a wrapper around the core `json` function with the same name, and will pass through any additional arguments. This allows you to control the JSON formatting or parsing behavior with the underlying core `json` functions.\n\n.. code:: python\n\n >>> import geojson\n\n >>> my_point = geojson.Point((43.24, -1.532))\n\n >>> my_point # doctest: +ELLIPSIS\n {\"coordinates\": [43.2..., -1.53...], \"type\": \"Point\"}\n\n >>> dump = geojson.dumps(my_point, sort_keys=True)\n\n >>> dump # doctest: +ELLIPSIS\n '{\"coordinates\": [43.2..., -1.53...], \"type\": \"Point\"}'\n\n >>> geojson.loads(dump) # doctest: +ELLIPSIS\n {\"coordinates\": [43.2..., -1.53...], \"type\": \"Point\"}\n\nCustom classes\n~~~~~~~~~~~~~~\n\nThis encoding/decoding functionality shown in the previous can be extended to custom classes using the interface described by the `__geo_interface__ Specification`_.\n\n.. code:: python\n\n >>> import geojson\n\n >>> class MyPoint():\n ... def __init__(self, x, y):\n ... self.x = x\n ... self.y = y\n ...\n ... @property\n ... def __geo_interface__(self):\n ... return {'type': 'Point', 'coordinates': (self.x, self.y)}\n\n >>> point_instance = MyPoint(52.235, -19.234)\n\n >>> geojson.dumps(point_instance, sort_keys=True) # doctest: +ELLIPSIS\n '{\"coordinates\": [52.23..., -19.23...], \"type\": \"Point\"}'\n\nDefault and custom precision\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nGeoJSON Object-based classes in this package have an additional `precision` attribute which rounds off\ncoordinates to 6 decimal places (roughly 0.1 meters) by default and can be customized per object instance.\n\n.. code:: python\n\n >>> from geojson import Point\n\n >>> Point((-115.123412341234, 37.123412341234)) # rounded to 6 decimal places by default\n {\"coordinates\": [-115.123412, 37.123412], \"type\": \"Point\"}\n\n >>> Point((-115.12341234, 37.12341234), precision=8) # rounded to 8 decimal places\n {\"coordinates\": [-115.12341234, 37.12341234], \"type\": \"Point\"}\n\nHelpful utilities\n-----------------\n\ncoords\n~~~~~~\n\n:code:`geojson.utils.coords` yields all coordinate tuples from a geometry or feature object.\n\n.. code:: python\n\n >>> import geojson\n\n >>> my_line = LineString([(-152.62, 51.21), (5.21, 10.69)])\n\n >>> my_feature = geojson.Feature(geometry=my_line)\n\n >>> list(geojson.utils.coords(my_feature)) # doctest: +ELLIPSIS\n [(-152.62..., 51.21...), (5.21..., 10.69...)]\n\nmap_coords\n~~~~~~~~~~\n\n:code:`geojson.utils.map_coords` maps a function over all coordinate values and returns a geometry of the same type. Useful for scaling a geometry.\n\n.. code:: python\n\n >>> import geojson\n\n >>> new_point = geojson.utils.map_coords(lambda x: x/2, geojson.Point((-115.81, 37.24)))\n\n >>> geojson.dumps(new_point, sort_keys=True) # doctest: +ELLIPSIS\n '{\"coordinates\": [-57.905..., 18.62...], \"type\": \"Point\"}'\n\nmap_tuples\n~~~~~~~~~~\n\n:code:`geojson.utils.map_tuples` maps a function over all coordinates and returns a geometry of the same type. Useful for changing coordinate order or applying coordinate transforms.\n\n.. code:: python\n\n >>> import geojson\n\n >>> new_point = geojson.utils.map_tuples(lambda c: (c[1], c[0]), geojson.Point((-115.81, 37.24)))\n\n >>> geojson.dumps(new_point, sort_keys=True) # doctest: +ELLIPSIS\n '{\"coordinates\": [37.24..., -115.81], \"type\": \"Point\"}'\n\nmap_geometries\n~~~~~~~~~~~~~~\n\n:code:`geojson.utils.map_geometries` maps a function over each geometry in the input.\n\n.. code:: python\n\n >>> import geojson\n\n >>> new_point = geojson.utils.map_geometries(lambda g: geojson.MultiPoint([g[\"coordinates\"]]), geojson.GeometryCollection([geojson.Point((-115.81, 37.24))]))\n\n >>> geojson.dumps(new_point, sort_keys=True)\n '{\"geometries\": [{\"coordinates\": [[-115.81, 37.24]], \"type\": \"MultiPoint\"}], \"type\": \"GeometryCollection\"}'\n\nvalidation\n~~~~~~~~~~\n\n:code:`is_valid` property provides simple validation of GeoJSON objects.\n\n.. code:: python\n\n >>> import geojson\n\n >>> obj = geojson.Point((-3.68,40.41,25.14,10.34))\n >>> obj.is_valid\n False\n\n:code:`errors` method provides collection of errors when validation GeoJSON objects.\n\n.. code:: python\n\n >>> import geojson\n\n >>> obj = geojson.Point((-3.68,40.41,25.14,10.34))\n >>> obj.errors()\n 'a position must have exactly 2 or 3 values'\n\ngenerate_random\n~~~~~~~~~~~~~~~\n\n:code:`geojson.utils.generate_random` yields a geometry type with random data\n\n.. code:: python\n\n >>> import geojson\n\n >>> geojson.utils.generate_random(\"LineString\") # doctest: +ELLIPSIS\n {\"coordinates\": [...], \"type\": \"LineString\"}\n\n >>> geojson.utils.generate_random(\"Polygon\") # doctest: +ELLIPSIS\n {\"coordinates\": [...], \"type\": \"Polygon\"}\n\n\nDevelopment\n-----------\n\nTo build this project, run :code:`python setup.py build`.\nTo run the unit tests, run :code:`python setup.py test`.\nTo run the style checks, run :code:`flake8` (install `flake8` if needed).\n\nCredits\n-------\n\n* Sean Gillies \n* Matthew Russell \n* Corey Farwell \n* Blake Grotewold \n* Zsolt Ero \n* Sergey Romanov \n* Ray Riga \n\n\n.. _GeoJSON: http://geojson.org/\n.. _The GeoJSON Format Specification: https://tools.ietf.org/html/rfc7946\n.. _\\_\\_geo\\_interface\\_\\_ Specification: https://gist.github.com/sgillies/2217756\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jazzband/geojson", "keywords": "gis geography json", "license": "BSD", "maintainer": "Ray Riga", "maintainer_email": "ray@strongoutput.com", "name": "geojson", "package_url": "https://pypi.org/project/geojson/", "platform": "", "project_url": "https://pypi.org/project/geojson/", "project_urls": { "Homepage": "https://github.com/jazzband/geojson" }, "release_url": "https://pypi.org/project/geojson/2.5.0/", "requires_dist": null, "requires_python": "", "summary": "Python bindings and utilities for GeoJSON", "version": "2.5.0" }, "last_serial": 5657685, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "2d36a78208ac6e85e3b6abace6fcceb0", "sha256": "a4712a360b668f8e6f8d6beac022063f809dbc3d16788489ab415ab457d77fb3" }, "downloads": -1, "filename": "geojson-1.0.tar.gz", "has_sig": false, "md5_digest": "2d36a78208ac6e85e3b6abace6fcceb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11692, "upload_time": "2008-08-02T03:39:36", "url": "https://files.pythonhosted.org/packages/7b/25/db1e5dc12ebfd5283f6f7669553c0156f2e81c17bebd6326fac10e4a1f81/geojson-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "e71eadfa718684480b99f6be5269558a", "sha256": "32ea7e82b811a6ca29a283ac4d15a8ecec75ba5105245c67e9c03b23eb50b806" }, "downloads": -1, "filename": "geojson-1.0.1.tar.gz", "has_sig": false, "md5_digest": "e71eadfa718684480b99f6be5269558a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12345, "upload_time": "2008-12-21T20:45:30", "url": "https://files.pythonhosted.org/packages/d7/ed/9d2261655010f6b97a7747b9f7c657740a99ba38afc6fa96303ae0b3c3c7/geojson-1.0.1.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "a106ccb2dd2b63dd790d023f1dfc41a9", "sha256": "d360424b0b51e9a9957ff13d65824427349a5aa62a9da3d805c7736914b818c5" }, "downloads": -1, "filename": "geojson-1.0.4.tar.gz", "has_sig": false, "md5_digest": "a106ccb2dd2b63dd790d023f1dfc41a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13230, "upload_time": "2013-11-17T06:57:31", "url": "https://files.pythonhosted.org/packages/e0/11/cd626f469aa6b4c7680721b77c9da9418f3c06d61cac1b1f3eee64384145/geojson-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "0bc5a26da42f081d30c3bf6ac5a08eab", "sha256": "1b30ff4f79ff0d3b327c9bdcf20acfd8b611f4620676f9f0e391b26654e92bc6" }, "downloads": -1, "filename": "geojson-1.0.5.tar.gz", "has_sig": false, "md5_digest": "0bc5a26da42f081d30c3bf6ac5a08eab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13250, "upload_time": "2013-11-17T07:27:12", "url": "https://files.pythonhosted.org/packages/12/d2/934ab86578be6f4e3d1de7fe14297e09d67c9e207ff84d563746664eeaf1/geojson-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "49bd5fcff7d43d4c295a86c886a17b8f", "sha256": "d91cd23401b922ba597afe1f3effabfdab6af3550708b4e0cd16ab26094861b0" }, "downloads": -1, "filename": "geojson-1.0.6.tar.gz", "has_sig": false, "md5_digest": "49bd5fcff7d43d4c295a86c886a17b8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13798, "upload_time": "2014-01-19T06:00:03", "url": "https://files.pythonhosted.org/packages/7a/32/cb5597c390ea595a1cb2d9f9134d26085c6a23d1846dd0b65be3b2d9bb30/geojson-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "eb1228f422cf8b3ae8f57c33e6be5c59", "sha256": "8bdd39b85d5d69e6bff9f40640488e1e27e74f5591a55d543f6aaaa6e8cb9146" }, "downloads": -1, "filename": "geojson-1.0.7.tar.gz", "has_sig": false, "md5_digest": "eb1228f422cf8b3ae8f57c33e6be5c59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10958, "upload_time": "2014-04-20T04:57:38", "url": "https://files.pythonhosted.org/packages/be/31/d01db871df40350b54b73fc095831c44a0c31e2feb6865bb2b33689c9e50/geojson-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "a4cafd7180ea99aa0dd8503aaefcd915", "sha256": "3b11681a8fa1b6a9812ab03ebcc0f8708b73a6482e44f9f62166cbfd8956ea75" }, "downloads": -1, "filename": "geojson-1.0.8.tar.gz", "has_sig": false, "md5_digest": "a4cafd7180ea99aa0dd8503aaefcd915", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15121, "upload_time": "2014-09-30T04:43:05", "url": "https://files.pythonhosted.org/packages/73/f8/e8de6cfd1929721d1594bc5b70297b95dad0a0be26444b0e9650f4b408c0/geojson-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "94880d993dba8b184de122c5a84fa329", "sha256": "9575d41b05536f37ca65daddcaec503c9a5ec4fe6bee1157d67eacc08525133c" }, "downloads": -1, "filename": "geojson-1.0.9.tar.gz", "has_sig": false, "md5_digest": "94880d993dba8b184de122c5a84fa329", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12823, "upload_time": "2014-10-05T22:24:23", "url": "https://files.pythonhosted.org/packages/f3/26/eaddfb26d4795b884758710a56df08f21a1cc8a93cd3455f8b739712d56a/geojson-1.0.9.tar.gz" } ], "1.0a3": [ { "comment_text": "", "digests": { "md5": "b06e196e3ede42d238c7605d14419221", "sha256": "f556240fd915373ef3c1a97b63ee6efc795a8645559f3f50b3a69d673e5be47f" }, "downloads": -1, "filename": "geojson-1.0a3.tar.gz", "has_sig": false, "md5_digest": "b06e196e3ede42d238c7605d14419221", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2734, "upload_time": "2008-07-10T14:57:16", "url": "https://files.pythonhosted.org/packages/23/15/2a4673c7edd963c6c7268a4c4d0785fe704a7d345eacc3939b0cbcb6d14a/geojson-1.0a3.tar.gz" } ], "1.0b1": [ { "comment_text": "", "digests": { "md5": "10863efb628d2ea76c8d674951ce2063", "sha256": "61549b5dc447dcecb6f9f20593a13e87f993d3382409a2275108b32b65462aef" }, "downloads": -1, "filename": "geojson-1.0b1.tar.gz", "has_sig": false, "md5_digest": "10863efb628d2ea76c8d674951ce2063", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11586, "upload_time": "2008-07-02T16:31:08", "url": "https://files.pythonhosted.org/packages/e1/8e/be411f30058b0f33e2a587f135d6ca5247f2b8c5aef8658535a6e2bfe848/geojson-1.0b1.tar.gz" } ], "1.0rc1": [ { "comment_text": "", "digests": { "md5": "585e6b403f98e645638bf73274d36374", "sha256": "7c6aaf21526f83a2205e5050e06ab525d44dfcb53468952f0dc9422147b9bc5e" }, "downloads": -1, "filename": "geojson-1.0rc1.tar.gz", "has_sig": false, "md5_digest": "585e6b403f98e645638bf73274d36374", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11621, "upload_time": "2008-07-11T21:59:24", "url": "https://files.pythonhosted.org/packages/3d/21/ff7a72023f04c0232808cf1f7cde3eeb0e4807cb7f9e014524823149e567/geojson-1.0rc1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "81512af0f378a33b879c78bbde566952", "sha256": "6f526f61f1306a588f902a1ae0f3017ac03da2bd060829a374a3b8cb15c3bc41" }, "downloads": -1, "filename": "geojson-1.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "81512af0f378a33b879c78bbde566952", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 14669, "upload_time": "2015-06-08T13:42:10", "url": "https://files.pythonhosted.org/packages/7c/cb/4e0ab85f9568d5ef075dffddd7974391b4c40e67bde255b94cbf7fde19a2/geojson-1.1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0464ae55a25ce79a8204f71e08c1e789", "sha256": "2f0fafa4ec425b5a38f5ff2500515228ab459fc906fed9a57669a9c50d85033a" }, "downloads": -1, "filename": "geojson-1.1.0.tar.gz", "has_sig": false, "md5_digest": "0464ae55a25ce79a8204f71e08c1e789", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14050, "upload_time": "2015-06-08T13:42:07", "url": "https://files.pythonhosted.org/packages/76/7e/e1fdc13fd8181ad0987434dadab2299d191ac61ee38abb7f0b4a2a31e3b6/geojson-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "e3716c1e6850c027a8bc26a91825a975", "sha256": "35a1d8f16a3db9da2e1c17cf69ab04624509320a651a4efac18567f0716a11bf" }, "downloads": -1, "filename": "geojson-1.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "e3716c1e6850c027a8bc26a91825a975", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16108, "upload_time": "2015-06-20T06:03:55", "url": "https://files.pythonhosted.org/packages/9e/a2/5d36011d94a6d1880f20f7f6ceaa61de8a879bedf4bb3abf29f4f3660ca6/geojson-1.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "401349a500f25acfd8489431d2f32282", "sha256": "5bd2bc0aab8a7139472ed14ed247f683f4967e13d0ec79fdaa1990259a20c680" }, "downloads": -1, "filename": "geojson-1.2.0.tar.gz", "has_sig": false, "md5_digest": "401349a500f25acfd8489431d2f32282", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15761, "upload_time": "2015-06-20T06:03:51", "url": "https://files.pythonhosted.org/packages/0f/71/51846fc82841908864df1aa69b445af0b2f5981ebefe81117d76680c5b94/geojson-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "44bb58735e8a320915f1bbd3c7a3ca95", "sha256": "53b037b4beb7eb88c163f283586181726d27984056dc2b111f2738e1ba39d7a1" }, "downloads": -1, "filename": "geojson-1.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "44bb58735e8a320915f1bbd3c7a3ca95", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16199, "upload_time": "2015-06-26T03:25:16", "url": "https://files.pythonhosted.org/packages/44/14/b2dbecceda3cae6b2121ba76b70ea9206a48e3b495c3a951a4160dee76a9/geojson-1.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25998f6a3f7ee6eb5d2c66877e6c5c68", "sha256": "2f186114f280046c859bdf3e50626cd5a39cf156336e5a4501e9df20f8907957" }, "downloads": -1, "filename": "geojson-1.2.1.tar.gz", "has_sig": false, "md5_digest": "25998f6a3f7ee6eb5d2c66877e6c5c68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15858, "upload_time": "2015-06-26T03:25:11", "url": "https://files.pythonhosted.org/packages/73/38/76913701a215269675e83154711617f6519e3ed08f89239ea6609b46b452/geojson-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "a578cfa5841de2b227d9b2231b6949e1", "sha256": "daf76588481b005c179534a4ae27cca26ec84221a34a246bda393fe48cfaa84d" }, "downloads": -1, "filename": "geojson-1.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a578cfa5841de2b227d9b2231b6949e1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16203, "upload_time": "2015-07-13T13:58:29", "url": "https://files.pythonhosted.org/packages/05/9c/2472053e606dfa66f96dc4e4b48434e53dfe5573f7a32025afd71089ee34/geojson-1.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8c039d712042c84352c7690aeff66d81", "sha256": "7c1e856493758b36ac1bf0d5d000eae0876bfaf39c3d5d7735308f037b59fd99" }, "downloads": -1, "filename": "geojson-1.2.2.tar.gz", "has_sig": false, "md5_digest": "8c039d712042c84352c7690aeff66d81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16049, "upload_time": "2015-07-13T13:54:34", "url": "https://files.pythonhosted.org/packages/c7/92/7627886a0d408b741476f04d0b3e1093d8b230b14dc653b0cda61ebc8edd/geojson-1.2.2.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "89378e3cf24d80a85775980f9b4a183d", "sha256": "e0b2abb02d80bce1465241894cb85a7525c55be084239ba7bca9f9674ba19a91" }, "downloads": -1, "filename": "geojson-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "89378e3cf24d80a85775980f9b4a183d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17081, "upload_time": "2015-08-11T13:38:16", "url": "https://files.pythonhosted.org/packages/a0/27/18057cc8fd6b2646e69d51b8d3e80bad6fa2e15aa0ec2b0f3e592ee714d8/geojson-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "535cbfd4d2c98b40cebf91337711d2f0", "sha256": "3b9c0b28f2517be84d0bc763d5e7060d3a3cc6cc3ffd284155bfb1e3a506700c" }, "downloads": -1, "filename": "geojson-1.3.0.tar.gz", "has_sig": false, "md5_digest": "535cbfd4d2c98b40cebf91337711d2f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16889, "upload_time": "2015-08-11T13:38:13", "url": "https://files.pythonhosted.org/packages/1f/4e/300ae3ed603d9f08d78a3f540f044695882a306b9d0173584f8b3352591d/geojson-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "f1013431119dcf6381828cefbb0a6798", "sha256": "00c61464c5d4d27d01f3b7c2fc7e8ac186f9c142bc779c89213c33f5f241d8c7" }, "downloads": -1, "filename": "geojson-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f1013431119dcf6381828cefbb0a6798", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17105, "upload_time": "2015-10-12T16:53:31", "url": "https://files.pythonhosted.org/packages/00/4b/d40895911af17cf3131e2bbae0a11290ce6bae6f0b09fd702f5e4c54f75c/geojson-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2131dfaf4546db43f64d9c98d443b48c", "sha256": "72541ca29b4b6bf93deb61b4719499c3c346f1a82c1c3edb31c6ae2fde1dec8e" }, "downloads": -1, "filename": "geojson-1.3.1.tar.gz", "has_sig": false, "md5_digest": "2131dfaf4546db43f64d9c98d443b48c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16832, "upload_time": "2015-10-12T16:53:27", "url": "https://files.pythonhosted.org/packages/9e/4c/4b238191dde266e2a4f7910785aa69a638e4c7343e3d016f5b919bf8d23f/geojson-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "b662c01c0e2cadbbc2348babc4dd9759", "sha256": "8b04452e1e7d2c867a8f6f539e657fb133e3b51fc11dc704da57a35d7d1e5aeb" }, "downloads": -1, "filename": "geojson-1.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b662c01c0e2cadbbc2348babc4dd9759", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17394, "upload_time": "2016-01-28T20:32:36", "url": "https://files.pythonhosted.org/packages/b6/62/847b7cfb1dddf037b6164c21776cb87b4f64cd6d11e3a0e9703d4fe611f6/geojson-1.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27b75a4edbf9059e9aeb819eaad38593", "sha256": "15fa426f1e616ce0b45bbda17d16345db5235ec898fc202fd00727e497c38288" }, "downloads": -1, "filename": "geojson-1.3.2.tar.gz", "has_sig": false, "md5_digest": "27b75a4edbf9059e9aeb819eaad38593", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17232, "upload_time": "2016-01-28T20:32:30", "url": "https://files.pythonhosted.org/packages/8d/cd/0803277e8c17c9f89506ad91d7d540835b178c2ecc283cdb7e4a8a71d60f/geojson-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "609130d0950c77dcc328d9e0e0b8ecb8", "sha256": "53e61df45b130b94ffa849db4c780b9971e742649def2f28afa2b820b83913cf" }, "downloads": -1, "filename": "geojson-1.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "609130d0950c77dcc328d9e0e0b8ecb8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17514, "upload_time": "2016-07-21T14:00:21", "url": "https://files.pythonhosted.org/packages/bd/07/09ace997f65626e8a1d352bf4445e3e6996b4d72daad98a6faef293aebd2/geojson-1.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2da9a02548ff783bb1f4c3624e31cf78", "sha256": "97294ef979fc41320073047e3fddeb6bc18a90043e3cd0e2ada007c45b2ba1a0" }, "downloads": -1, "filename": "geojson-1.3.3.tar.gz", "has_sig": false, "md5_digest": "2da9a02548ff783bb1f4c3624e31cf78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17482, "upload_time": "2016-07-21T14:00:17", "url": "https://files.pythonhosted.org/packages/56/2d/44abe5d3fda94b524e93a8e0f8c83d1e890a9e97e3791f40483a28ccb971/geojson-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "6ef8e4158c749cf70815331e3bc21a55", "sha256": "4e479152223799e07126eb81eb495842395e2ea5859a8511553ed3104e84b087" }, "downloads": -1, "filename": "geojson-1.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6ef8e4158c749cf70815331e3bc21a55", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17476, "upload_time": "2017-02-11T17:18:25", "url": "https://files.pythonhosted.org/packages/2c/43/4077328fbff35d22a4b567312f4165df7d992b8de19b0e5b8241d191fe5a/geojson-1.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d004f6bc93306ab507d4a65add8ae9a6", "sha256": "b9dfe2dded0c7f7702730cc9de65ca33c577bd08c8b24b824bc6d19b32612917" }, "downloads": -1, "filename": "geojson-1.3.4.tar.gz", "has_sig": false, "md5_digest": "d004f6bc93306ab507d4a65add8ae9a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17412, "upload_time": "2017-02-11T17:18:26", "url": "https://files.pythonhosted.org/packages/93/74/4f7fa364c746b0f22de13631c932f873d6dce5d3e72a15637c6e9218485e/geojson-1.3.4.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "73986bbc8c725d21234b2881f12d7e22", "sha256": "b0748d3ca9c95866cbaf063147a168508e0945eae33b41b978fe72cb8937322b" }, "downloads": -1, "filename": "geojson-1.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "73986bbc8c725d21234b2881f12d7e22", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17492, "upload_time": "2017-04-25T01:19:06", "url": "https://files.pythonhosted.org/packages/e9/2f/8a9ec8c097655d518d18ab144d583a32a6dabcff6e42f71c52f55201e1f7/geojson-1.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5d201c8d9e44ae9fbf717ab35221af08", "sha256": "09be78fcc24bea204973f827e619becd6d46cf97498ccb86426524768ae60dc5" }, "downloads": -1, "filename": "geojson-1.3.5.tar.gz", "has_sig": false, "md5_digest": "5d201c8d9e44ae9fbf717ab35221af08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17523, "upload_time": "2017-04-25T01:19:19", "url": "https://files.pythonhosted.org/packages/0f/b8/80bb44a6dde4e9c8655610bec91ab24ad5d489047aae4c01cbc2cf46071f/geojson-1.3.5.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "09d55fe4947f6fc978f76eed2b2db5ce", "sha256": "127c39b1516940e00256c0106c4df1c3af985da70d598b3b0f362bd4091c07f2" }, "downloads": -1, "filename": "geojson-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "09d55fe4947f6fc978f76eed2b2db5ce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18084, "upload_time": "2017-08-12T23:36:17", "url": "https://files.pythonhosted.org/packages/a3/c0/aeb7c9afad2f0395ddb32de62becb89be9124351426ab1a2bf37bf480f7c/geojson-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6319546788896b94b042cae0203e127", "sha256": "6db845b73d6e0df70489128cad98026d9e115eb5ee0beca9725011f8da434211" }, "downloads": -1, "filename": "geojson-2.0.0.tar.gz", "has_sig": false, "md5_digest": "a6319546788896b94b042cae0203e127", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17135, "upload_time": "2017-08-19T21:47:42", "url": "https://files.pythonhosted.org/packages/be/bc/0cb488a4196da642f3713d61964c70813aac0268aacd8ac3beb439de3787/geojson-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "9ff8167256a07a56b20bb826cfa1626e", "sha256": "3b16cf75bd934bbecc2eb1e130f731ee8b9bf4e650d20f2633e43692dacd6258" }, "downloads": -1, "filename": "geojson-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9ff8167256a07a56b20bb826cfa1626e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18123, "upload_time": "2017-08-30T01:10:44", "url": "https://files.pythonhosted.org/packages/2e/76/0728354a6e4e4776dbdcaa72092f723d663ac0499b6a8329e87c02c1a7b8/geojson-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61465c202633f0943616b2ac007bd651", "sha256": "a4b6d1ac8bb9f0e58f7985b2d382c8c83db393a496263ff0d0226bf50ef8f760" }, "downloads": -1, "filename": "geojson-2.1.0.tar.gz", "has_sig": false, "md5_digest": "61465c202633f0943616b2ac007bd651", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17357, "upload_time": "2017-08-30T01:10:55", "url": "https://files.pythonhosted.org/packages/64/8a/93503ea28d19104d40e68c7c0e3957045672d31eda9f47757fa74aae8c8b/geojson-2.1.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "528f94f5b5ee23c62a1daf2a14ddd51c", "sha256": "532e43a1b0bf441233ad246106a081ce6e93785f4120514cc42f47b29a2cc9aa" }, "downloads": -1, "filename": "geojson-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "528f94f5b5ee23c62a1daf2a14ddd51c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18328, "upload_time": "2017-09-17T16:05:05", "url": "https://files.pythonhosted.org/packages/69/f5/6f89c1dc861184c1434a9480b5cde94d60d14699e4db43513a846445900b/geojson-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d20afa0b911e7a7e90befec856cadf16", "sha256": "f2d3efd6aaeb3b9e05ee19dffe00977ccc796e5884fa6b7d47c3d6e339304e25" }, "downloads": -1, "filename": "geojson-2.2.0.tar.gz", "has_sig": false, "md5_digest": "d20afa0b911e7a7e90befec856cadf16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18199, "upload_time": "2017-09-17T16:04:51", "url": "https://files.pythonhosted.org/packages/ef/79/2355d5461334414c6e97b739998573e897c911c863601acb5cfc78d9f050/geojson-2.2.0.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "90185b03af8285484f93f193233da29e", "sha256": "8831556d1ac18805c4955aa881e022e6ddcef44020b315200680eec6dd209e40" }, "downloads": -1, "filename": "geojson-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "90185b03af8285484f93f193233da29e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18755, "upload_time": "2017-09-19T00:14:05", "url": "https://files.pythonhosted.org/packages/1c/59/5d8f40aa03591d68fa6bf99268810c66a0fbc82b9598e40822f3fd9149d2/geojson-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "832898dc14097cd01c735fac253bf1f0", "sha256": "c8873d12421665f6731b8e4c3b2484a4516c0d9b286c26cb7cffa781d062301a" }, "downloads": -1, "filename": "geojson-2.3.0.tar.gz", "has_sig": false, "md5_digest": "832898dc14097cd01c735fac253bf1f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18501, "upload_time": "2017-09-19T00:14:19", "url": "https://files.pythonhosted.org/packages/ee/5b/8785c562d2bc910a5effada38d86925afa3d1126ddb3d0770c8a84be8baa/geojson-2.3.0.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "9af78c7bf8e3b6493b09803735d9fe29", "sha256": "f2baaa99dad7bb4c8276d5b5ff26d9085866f3b271a3847371b030fb20623765" }, "downloads": -1, "filename": "geojson-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9af78c7bf8e3b6493b09803735d9fe29", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15040, "upload_time": "2018-05-22T01:24:25", "url": "https://files.pythonhosted.org/packages/8d/39/231105abbfd2332f108cdbfe736e56324949fa9e80e536ae60a082cf96a9/geojson-2.4.0-py2.py3-none-any.whl" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "6b255bf16f8bafb5571c60d0ce2f35fb", "sha256": "b2bfb5c8e6b4b0c55dd139996317145aa8526146b3f8570586f9613c527a648a" }, "downloads": -1, "filename": "geojson-2.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b255bf16f8bafb5571c60d0ce2f35fb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15066, "upload_time": "2018-10-18T12:19:56", "url": "https://files.pythonhosted.org/packages/f1/34/bc3a65faabce27a7faa755ab08d811207a4fc438f77ef09c229fc022d778/geojson-2.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11040e463a043e86eb3c33a7e9b9e975", "sha256": "b175e00a76d923d6e7409de0784c147adcdd6e04b311b1d405895a4db3612c9d" }, "downloads": -1, "filename": "geojson-2.4.1.tar.gz", "has_sig": false, "md5_digest": "11040e463a043e86eb3c33a7e9b9e975", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22730, "upload_time": "2018-10-18T12:19:59", "url": "https://files.pythonhosted.org/packages/f8/92/3afac9986bb640dcc8736a69841435af32c8e8ae3d069da560927a4e5eb3/geojson-2.4.1.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "183b6f5ccb61818543f29c62a47eff16", "sha256": "ccbd13368dd728f4e4f13ffe6aaf725b6e802c692ba0dde628be475040c534ba" }, "downloads": -1, "filename": "geojson-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "183b6f5ccb61818543f29c62a47eff16", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14839, "upload_time": "2019-08-09T20:32:15", "url": "https://files.pythonhosted.org/packages/e4/8d/9e28e9af95739e6d2d2f8d4bef0b3432da40b7c3588fbad4298c1be09e48/geojson-2.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14753ed28678828b1de73f68b04e2324", "sha256": "6e4bb7ace4226a45d9c8c8b1348b3fc43540658359f93c3f7e03efa9f15f658a" }, "downloads": -1, "filename": "geojson-2.5.0.tar.gz", "has_sig": false, "md5_digest": "14753ed28678828b1de73f68b04e2324", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23086, "upload_time": "2019-08-09T20:32:37", "url": "https://files.pythonhosted.org/packages/b6/8d/c42d3fe6f9b5e5bd6a55d9f03813d674d65d853cb12e6bc56f154a2ceca0/geojson-2.5.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "183b6f5ccb61818543f29c62a47eff16", "sha256": "ccbd13368dd728f4e4f13ffe6aaf725b6e802c692ba0dde628be475040c534ba" }, "downloads": -1, "filename": "geojson-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "183b6f5ccb61818543f29c62a47eff16", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14839, "upload_time": "2019-08-09T20:32:15", "url": "https://files.pythonhosted.org/packages/e4/8d/9e28e9af95739e6d2d2f8d4bef0b3432da40b7c3588fbad4298c1be09e48/geojson-2.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14753ed28678828b1de73f68b04e2324", "sha256": "6e4bb7ace4226a45d9c8c8b1348b3fc43540658359f93c3f7e03efa9f15f658a" }, "downloads": -1, "filename": "geojson-2.5.0.tar.gz", "has_sig": false, "md5_digest": "14753ed28678828b1de73f68b04e2324", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23086, "upload_time": "2019-08-09T20:32:37", "url": "https://files.pythonhosted.org/packages/b6/8d/c42d3fe6f9b5e5bd6a55d9f03813d674d65d853cb12e6bc56f154a2ceca0/geojson-2.5.0.tar.gz" } ] }