{ "info": { "author": "Sean Gillies", "author_email": "sean.gillies@gmail.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 :: 2", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering :: GIS" ], "description": "=====\nFiona\n=====\n\nFiona is GDAL_'s neat and nimble vector API for Python programmers.\n\n.. image:: https://github.com/Toblerity/Fiona/workflows/Linux%20CI/badge.svg?branch=maint-1.8\n :target: https://github.com/Toblerity/Fiona/actions?query=branch%3Amaint-1.8\n\n.. image:: https://ci.appveyor.com/api/projects/status/github/Toblerity/Fiona?svg=true\n :target: https://ci.appveyor.com/project/sgillies/fiona/branch/master\n\n.. image:: https://coveralls.io/repos/Toblerity/Fiona/badge.svg\n :target: https://coveralls.io/r/Toblerity/Fiona\n\nFiona is designed to be simple and dependable. It focuses on reading and\nwriting data in standard Python IO style and relies upon familiar Python types\nand protocols such as files, dictionaries, mappings, and iterators instead of\nclasses specific to OGR. Fiona can read and write real-world data using\nmulti-layered GIS formats and zipped virtual file systems and integrates\nreadily with other Python GIS packages such as pyproj_, Rtree_, and Shapely_.\nFiona is supported only on CPython versions 2.7 and 3.4+.\n\nFor more details, see:\n\n* Fiona `home page `__\n* Fiona `docs and manual `__\n* Fiona `examples `__\n\nUsage\n=====\n\nCollections\n-----------\n\nRecords are read from and written to ``file``-like `Collection` objects\nreturned from the ``fiona.open()`` function. Records are mappings modeled on\nthe GeoJSON format. They don't have any spatial methods of their own, so if you\nwant to do anything fancy with them you will probably need Shapely or something\nlike it. Here is an example of using Fiona to read some records from one data\nfile, change their geometry attributes, and write them to a new data file.\n\n.. code-block:: python\n\n import fiona\n\n # Open a file for reading. We'll call this the \"source.\"\n\n with fiona.open('tests/data/coutwildrnp.shp') as src:\n\n # The file we'll write to, the \"destination\", must be initialized\n # with a coordinate system, a format driver name, and\n # a record schema. We can get initial values from the open\n # collection's ``meta`` property and then modify them as\n # desired.\n\n meta = src.meta\n meta['schema']['geometry'] = 'Point'\n\n # Open an output file, using the same format driver and\n # coordinate reference system as the source. The ``meta``\n # mapping fills in the keyword parameters of fiona.open().\n\n with fiona.open('test_write.shp', 'w', **meta) as dst:\n\n # Process only the records intersecting a box.\n for f in src.filter(bbox=(-107.0, 37.0, -105.0, 39.0)):\n\n # Get a point on the boundary of the record's\n # geometry.\n\n f['geometry'] = {\n 'type': 'Point',\n 'coordinates': f['geometry']['coordinates'][0][0]}\n\n # Write the record out.\n\n dst.write(f)\n\n # The destination's contents are flushed to disk and the file is\n # closed when its ``with`` block ends. This effectively\n # executes ``dst.flush(); dst.close()``.\n\nReading Multilayer data\n-----------------------\n\nCollections can also be made from single layers within multilayer files or\ndirectories of data. The target layer is specified by name or by its integer\nindex within the file or directory. The ``fiona.listlayers()`` function\nprovides an index ordered list of layer names.\n\n.. code-block:: python\n\n for layername in fiona.listlayers('tests/data'):\n with fiona.open('tests/data', layer=layername) as src:\n print(layername, len(src))\n\n # Output:\n # (u'coutwildrnp', 67)\n\nLayer can also be specified by index. In this case, ``layer=0`` and\n``layer='test_uk'`` specify the same layer in the data file or directory.\n\n.. code-block:: python\n\n for i, layername in enumerate(fiona.listlayers('tests/data')):\n with fiona.open('tests/data', layer=i) as src:\n print(i, layername, len(src))\n\n # Output:\n # (0, u'coutwildrnp', 67)\n\nWriting Multilayer data\n-----------------------\n\nMultilayer data can be written as well. Layers must be specified by name when\nwriting.\n\n.. code-block:: python\n\n with open('tests/data/cowildrnp.shp') as src:\n meta = src.meta\n f = next(src)\n\n with fiona.open('/tmp/foo', 'w', layer='bar', **meta) as dst:\n dst.write(f)\n\n print(fiona.listlayers('/tmp/foo'))\n\n with fiona.open('/tmp/foo', layer='bar') as src:\n print(len(src))\n f = next(src)\n print(f['geometry']['type'])\n print(f['properties'])\n\n # Output:\n # [u'bar']\n # 1\n # Polygon\n # OrderedDict([(u'PERIMETER', 1.22107), (u'FEATURE2', None), (u'NAME', u'Mount Naomi Wilderness'), (u'FEATURE1', u'Wilderness'), (u'URL', u'http://www.wilderness.net/index.cfm?fuse=NWPS&sec=wildView&wname=Mount%20Naomi'), (u'AGBUR', u'FS'), (u'AREA', 0.0179264), (u'STATE_FIPS', u'49'), (u'WILDRNP020', 332), (u'STATE', u'UT')])\n\nA view of the /tmp/foo directory will confirm the creation of the new files.\n\n.. code-block:: console\n\n $ ls /tmp/foo\n bar.cpg bar.dbf bar.prj bar.shp bar.shx\n\nCollections from archives and virtual file systems\n--------------------------------------------------\n\nZip and Tar archives can be treated as virtual filesystems and Collections can\nbe made from paths and layers within them. In other words, Fiona lets you read\nand write zipped Shapefiles.\n\n.. code-block:: python\n\n for i, layername in enumerate(fiona.listlayers('zip://tests/data/coutwildrnp.zip')):\n with fiona.open('zip://tests/data/coutwildrnp.zip', layer=i) as src:\n print(i, layername, len(src))\n\n # Output:\n # (0, u'coutwildrnp', 67)\n\nFiona can also read from more exotic file systems. For instance, a\nzipped shape file in S3 can be accessed like so:\n\n.. code-block:: python\n\n with fiona.open('zip+s3://mapbox/rasterio/coutwildrnp.zip') as src:\n print(len(src))\n\n # Output:\n # 67\n\n\nFiona CLI\n=========\n\nFiona's command line interface, named \"fio\", is documented at `docs/cli.rst\n`__. Its ``fio\ninfo`` pretty prints information about a data file.\n\n.. code-block:: console\n\n $ fio info --indent 2 tests/data/coutwildrnp.shp\n {\n \"count\": 67,\n \"crs\": \"EPSG:4326\",\n \"driver\": \"ESRI Shapefile\",\n \"bounds\": [\n -113.56424713134766,\n 37.0689811706543,\n -104.97087097167969,\n 41.99627685546875\n ],\n \"schema\": {\n \"geometry\": \"Polygon\",\n \"properties\": {\n \"PERIMETER\": \"float:24.15\",\n \"FEATURE2\": \"str:80\",\n \"NAME\": \"str:80\",\n \"FEATURE1\": \"str:80\",\n \"URL\": \"str:101\",\n \"AGBUR\": \"str:80\",\n \"AREA\": \"float:24.15\",\n \"STATE_FIPS\": \"str:80\",\n \"WILDRNP020\": \"int:10\",\n \"STATE\": \"str:80\"\n }\n }\n }\n\nInstallation\n============\n\nFiona requires Python 2.7 or 3.4+ and GDAL/OGR 1.8+. To build from\na source distribution you will need a C compiler and GDAL and Python\ndevelopment headers and libraries (libgdal1-dev for Debian/Ubuntu, gdal-dev for\nCentOS/Fedora).\n\nTo build from a repository copy, you will also need Cython to build C sources\nfrom the project's .pyx files. See the project's requirements-dev.txt file for\nguidance.\n\nThe `Kyngchaos GDAL frameworks\n`__ will satisfy\nthe GDAL/OGR dependency for OS X, as will Homebrew's GDAL Formula (``brew install\ngdal``).\n\nPython Requirements\n-------------------\n\nFiona depends on the modules ``enum34``, ``six``, ``cligj``, ``munch``, ``argparse``, and\n``ordereddict`` (the two latter modules are standard in Python 2.7+). Pip will\nfetch these requirements for you, but users installing Fiona from a Windows\ninstaller must get them separately.\n\nUnix-like systems\n-----------------\n\nAssuming you're using a virtualenv (if not, skip to the 4th command) and\nGDAL/OGR libraries, headers, and `gdal-config`_ program are installed to well\nknown locations on your system via your system's package manager (``brew\ninstall gdal`` using Homebrew on OS X), installation is this simple.\n\n.. code-block:: console\n\n $ mkdir fiona_env\n $ virtualenv fiona_env\n $ source fiona_env/bin/activate\n (fiona_env)$ pip install fiona\n\nIf gdal-config is not available or if GDAL/OGR headers and libs aren't\ninstalled to a well known location, you must set include dirs, library dirs,\nand libraries options via the setup.cfg file or setup command line as shown\nbelow (using ``git``). You must also specify the version of the GDAL API on the\ncommand line using the ``--gdalversion`` argument (see example below) or with\nthe ``GDAL_VERSION`` environment variable (e.g. ``export GDAL_VERSION=2.1``).\n\n.. code-block:: console\n\n (fiona_env)$ git clone git://github.com/Toblerity/Fiona.git\n (fiona_env)$ cd Fiona\n (fiona_env)$ python setup.py build_ext -I/path/to/gdal/include -L/path/to/gdal/lib -lgdal install --gdalversion 2.1\n\nOr specify that build options and GDAL API version should be provided by a\nparticular gdal-config program.\n\n.. code-block:: console\n\n (fiona_env)$ GDAL_CONFIG=/path/to/gdal-config pip install fiona\n\nWindows\n-------\n\nBinary installers are available at\nhttps://www.lfd.uci.edu/~gohlke/pythonlibs/#fiona and coming eventually to PyPI.\n\nYou can download a binary distribution of GDAL from `here\n`_. You will also need to download\nthe compiled libraries and headers (include files).\n\nWhen building from source on Windows, it is important to know that setup.py\ncannot rely on gdal-config, which is only present on UNIX systems, to discover\nthe locations of header files and libraries that Fiona needs to compile its\nC extensions. On Windows, these paths need to be provided by the user.\nYou will need to find the include files and the library files for gdal and\nuse setup.py as follows. You must also specify the version of the GDAL API on the\ncommand line using the ``--gdalversion`` argument (see example below) or with\nthe ``GDAL_VERSION`` environment variable (e.g. ``set GDAL_VERSION=2.1``).\n\n.. code-block:: console\n\n $ python setup.py build_ext -I -lgdal_i -L install --gdalversion 2.1\n\nNote: The following environment variables needs to be set so that Fiona works correctly:\n\n* The directory containing the GDAL DLL (``gdal304.dll`` or similar) needs to be in your\n Windows ``PATH`` (e.g. ``C:\\gdal\\bin``).\n* The gdal-data directory needs to be in your Windows ``PATH`` or the environment variable\n ``GDAL_DATA`` must be set (e.g. ``C:\\gdal\\bin\\gdal-data``).\n* The environment variable ``PROJ_LIB`` must be set to the proj library directory (e.g.\n ``C:\\gdal\\bin\\proj6\\share``)\n\nThe `Appveyor CI build `_\nuses the GISInternals GDAL binaries to build Fiona. This produces a binary wheel\nfor successful builds, which includes GDAL and other dependencies, for users\nwanting to try an unstable development version.\nThe `Appveyor configuration file `_ may be a useful example for\nusers building from source on Windows.\n\nDevelopment and testing\n=======================\n\nBuilding from the source requires Cython. Tests require `pytest `_. If the GDAL/OGR\nlibraries, headers, and `gdal-config`_ program are installed to well known\nlocations on your system (via your system's package manager), you can do this::\n\n (fiona_env)$ git clone git://github.com/Toblerity/Fiona.git\n (fiona_env)$ cd Fiona\n (fiona_env)$ pip install cython\n (fiona_env)$ pip install -e .[test]\n (fiona_env)$ py.test\n\nOr you can use the ``pep-518-install`` script::\n\n (fiona_env)$ git clone git://github.com/Toblerity/Fiona.git\n (fiona_env)$ cd Fiona\n (fiona_env)$ ./pep-518-install\n\nIf you have a non-standard environment, you'll need to specify the include and\nlib dirs and GDAL library on the command line::\n\n (fiona_env)$ python setup.py build_ext -I/path/to/gdal/include -L/path/to/gdal/lib -lgdal --gdalversion 2 develop\n (fiona_env)$ py.test\n\n.. _GDAL: http://www.gdal.org\n.. _pyproj: http://pypi.python.org/pypi/pyproj/\n.. _Rtree: http://pypi.python.org/pypi/Rtree/\n.. _Shapely: http://pypi.python.org/pypi/Shapely/\n.. _gdal-config: http://www.gdal.org/gdal-config.html\n\nChanges\n=======\n\nAll issue numbers are relative to https://github.com/Toblerity/Fiona/issues.\n\n1.8.21 (2022-02-07)\n-------------------\n\nChanges:\n\n- Driver mode support tests have been made more general and less susceptible to\n driver quirks involving feature fields and coordinate values (#1060).\n- OSError is raised on attempts to open a dataset in a Python file object in\n \"a\" mode (see #1027).\n- Upgrade attrs, cython, etc to open up Python 3.10 support (#1049).\n\nBug fixes:\n\n- Allow FieldSkipLogFilter to handle exception messages as well as strings\n (reported in #1035).\n- Clean up VSI files left by MemoryFileBase, resolving #1041.\n- Hard-coded \"utf-8\" collection encoding added in #423 has been removed\n (#1057).\n\n1.8.20 (2021-05-31)\n-------------------\n\nPackaging:\n\n- Wheels include GDAL 3.3.0 and GEOS 3.9.1.\n\nBug fixes:\n\n- Allow use with click 8 and higher (#1015).\n\n1.8.19 (2021-04-07)\n-------------------\n\nPackaging:\n\n- Wheels include GDAL 3.2.1 and PROJ 7.2.1.\n\nBug fixes:\n\n- In fiona/env.py the GDAL data path is now configured using set_gdal_config\n instead by setting the GDAL_DATA environment variable (#1007).\n- Spurious iterator reset warnings have been eliminatged (#987).\n\n1.8.18 (2020-11-17)\n-------------------\n\n- The precision option of transform has been fixed for the case of\n GeometryCollections (#971, #972).\n- Added missing --co (creation) option to fio-load (#390).\n- If the certifi package can be imported, its certificate store location will\n be passed to GDAL during import of fiona._env unless CURL_CA_BUNDLE is\n already set.\n- Warn when feature fields named \"\" are found (#955).\n\n1.8.17 (2020-09-09)\n-------------------\n\n- To fix issue #952 the fio-cat command no longer cuts feature geometries at\n the anti-meridian by default. A --cut-at-antimeridian option has been added\n to allow cutting of geometries in a geographic destination coordinate\n reference system.\n\n1.8.16 (2020-09-04)\n-------------------\n\n- More OGR errors and warnings arising in calls to GDAL C API functions are\n surfaced (#946).\n- A circular import introduced in some cases in 1.8.15 has been fixed (#945).\n\n1.8.15 (2020-09-03)\n-------------------\n\n- Change shim functions to not return tuples (#942) as a solution for the\n packaging problem reported in #941.\n- Raise a Python exception when VSIFOpenL fails (#937).\n\n1.8.14 (2020-08-31)\n-------------------\n\n- When creating a new Collection in a MemoryFile with a default (random) name\n Fiona will attempt to use a format driver-supported file extension (#934).\n When initializing a MemoryFile with bytes of data formatted for a vector\n driver that requires a certain file name or extension, the user should\n continue to pass an appropriate filename and/or extension.\n- Read support for FlatGeobuf has been enabled in the drvsupport module.\n- The MemoryFile implementation has been improved so that it can support multi-part\n S3 downloads (#906). This is largely a port of code from rasterio.\n- Axis ordering for results of fiona.transform was wrong when CRS were passed\n in the \"EPSG:dddd\" form (#919). This has been fixed by (#926).\n- Allow implicit access to the only dataset in a ZipMemoryFile. The path\n argument of ZipMemoryFile.open() is now optional (#928).\n- Improve support for datetime types: support milliseconds (#744), timezones (#914)\n and improve warnings if type is not supported by driver (#572).\n- Fix \"Failed to commit transaction\" TransactionError for FileGDB driver.\n- Load GDAL DLL dependencies on Python 3.8+ / Windows with add_dll_directory() (#851).\n- Do not require optional properties (#848).\n- Ensure that slice does not overflow available data (#884).\n- Resolve issue when \"ERROR 4: Unable to open EPSG support file gcs.csv.\" is raised on\n importing fiona (#897).\n- Resolve issue resulting in possible mixed up fields names (affecting only DXF, GPX,\n GPSTrackMacker and DGN driver) (#916).\n- Ensure crs_wkt is passed when writing to MemoryFile (#907).\n\n\n1.8.13.post1 (2020-02-21)\n-------------------------\n\n- This release is being made to improve binary wheel compatibility with shapely\n 1.7.0. There have been no changes to the fiona package code since 1.8.13.\n\n1.8.13 (2019-12-05)\n-------------------\n\n- The Python version specs for argparse and ordereddict in 1.8.12 were wrong\n and have been corrected (#843).\n\n1.8.12 (2019-12-04)\n-------------------\n\n- Specify Python versions for argparse, enum34, and ordereddict requirements\n (#842).\n\n1.8.11 (2019-11-07)\n-------------------\n\n- Fix an access violation on Windows (#826).\n\n1.8.10 (2019-11-07)\n-------------------\n\nDeprecations:\n\n- Use of vfs keyword argument with open or listlayers has been previously noted\n as deprecated, but now triggers a deprecation warning.\n\nBug fixes:\n\n- fiona.open() can now create new datasets using CRS URNs (#823).\n- listlayers() now accepts file and Path objects, like open() (#825).\n- Use new set_proj_search_path() function to set the PROJ data search path. For\n GDAL versions before 3.0 this sets the PROJ_LIB environment variable. For\n GDAL version 3.0 this calls OSRSetPROJSearchPaths(), which overrides\n PROJ_LIB.\n- Remove old and unused _drivers extension module.\n- Check for header.dxf file instead of pcs.csv when looking for installed GDAL\n data. The latter is gone with GDAL 3.0 but the former remains (#818).\n\n1.8.9.post2 (2019-10-22)\n------------------------\n\n- The 1.8.9.post1 release introduced a bug affecting builds of the package from\n a source distribution using GDAL 2.x. This bug has been fixed in commit\n 960568d.\n\n1.8.9.post1 (2019-10-22)\n------------------------\n\n- A change has been made to the package setup script so that the shim module\n for GDAL 3 is used when building the package from a source distribution.\n There are no other changes to the package.\n\n1.8.9 (2019-10-21)\n------------------\n\n- A shim module and support for GDAL 3.0 has been added. The package can now be\n built and used with GDAL 3.0 and PROJ 6.1 or 6.2. Note that the 1.8.9 wheels\n we will upload to PyPI will contain GDAL 2.4.2 and PROJ 4.9.3 as in the 1.8.8\n wheels.\n\n1.8.8 (2019-09-25)\n------------------\n\n- The schema of geopackage files with a geometry type code of 3000 could not be\n reported using Fiona 1.8.7. This bug is fixed.\n\n1.8.7 (2019-09-24)\n------------------\n\nBug fixes:\n\n- Regression in handling of polygons with M values noted under version 1.8.5\n below was in fact not fixed then (see new report #789), but is fixed in\n version 1.8.7.\n- Windows filenames containing \"!\" are now parsed correctly, fixing issue #742.\n\nUpcoming changes:\n\n- In version 1.9.0, the objects yielded when a Collection is iterated will be\n mutable mappings but will no longer be instances of Python's dict. Version\n 1.9 is intended to be backwards compatible with 1.8 except where user code\n tests `isinstance(feature, dict)`. In version 2.0 the new Feature, Geometry,\n and Properties classes will become immutable mappings. See\n https://github.com/Toblerity/fiona-rfc/blob/master/rfc/0001-fiona-2-0-changes.md\n for more discussion of the upcoming changes for version 2.0.\n\n1.8.6 (2019-03-18)\n------------------\n\n- The advertisement for JSON driver enablement in 1.8.5 was false (#176), but\n in this release they are ready for use.\n\n1.8.5 (2019-03-15)\n------------------\n\n- GDAL seems to work best if GDAL_DATA is set as early as possible. Ideally it\n is set when building the library or in the environment before importing\n Fiona, but for wheels we patch GDAL_DATA into os.environ when fiona.env\n is imported. This resolves #731.\n- A combination of bugs which allowed .cpg files to be overlooked has been\n fixed (#726).\n- On entering a collection context (Collection.__enter__) a new anonymous GDAL\n environment is created if needed and entered. This makes `with\n fiona.open(...) as collection:` roughly equivalent to `with fiona.open(...)\n as collection, Env():`. This helps prevent bugs when Collections are created\n and then used later or in different scopes.\n- Missing GDAL support for TopoJSON, GeoJSONSeq, and ESRIJSON has been enabled\n (#721).\n- A regression in handling of polygons with M values (#724) has been fixed.\n- Per-feature debug logging calls in OGRFeatureBuilder methods have been\n eliminated to improve feature writing performance (#718).\n- Native support for datasets in Google Cloud Storage identified by \"gs\"\n resource names has been added (#709).\n- Support has been added for triangle, polyhedral surface, and TIN geometry\n types (#679).\n- Notes about using the MemoryFile and ZipMemoryFile classes has been added to\n the manual (#674).\n\n1.8.4 (2018-12-10)\n------------------\n\n- 3D geometries can now be transformed with a specified precision (#523).\n- A bug producing a spurious DriverSupportError for Shapefiles with a \"time\"\n field (#692) has been fixed.\n- Patching of the GDAL_DATA environment variable was accidentally left in place\n in 1.8.3 and now has been removed.\n\n1.8.3 (2018-11-30)\n------------------\n\n- The RASTERIO_ENV config environment marker this project picked up from\n Rasterio has been renamed to FIONA_ENV (#665).\n- Options --gdal-data and --proj-data have been added to the fio-env command so\n that users of Rasterio wheels can get paths to set GDAL_DATA and PROJ_LIB\n environment variables.\n- The unsuccessful attempt to make GDAL and PROJ support file discovery and\n configuration automatic within collection's crs and crs_wkt properties has\n been reverted. Users must execute such code inside a `with Env()` block or\n set the GDAL_DATA and PROJ_LIB environment variables needed by GDAL.\n\n1.8.2 (2018-11-19)\n------------------\n\nBug fixes:\n\n- Raise FionaValueError when an iterator's __next__ is called and the session\n is found to be missing or inactive instead of passing a null pointer to\n OGR_L_GetNextFeature (#687).\n\n1.8.1 (2018-11-15)\n------------------\n\nBug fixes:\n\n- Add checks around OSRGetAuthorityName and OSRGetAuthorityCode calls that will\n log problems with looking up these items.\n- Opened data sources are now released before we raise exceptions in\n WritingSession.start (#676). This fixes an issue with locked files on\n Windows.\n- We now ensure that an Env instance exists when getting the crs or crs_wkt\n properties of a Collection (#673, #690). Otherwise, required GDAL and PROJ\n data files included in Fiona wheels can not be found.\n- GDAL and PROJ data search has been refactored to improve testability (#678).\n- In the project's Cython code, void* pointers have been replaced with proper\n GDAL types (#672).\n- Pervasive warning level log messages about ENCODING creation options (#668)\n have been eliminated.\n\n1.8.0 (2018-10-31)\n------------------\n\nThis is the final 1.8.0 release. Thanks, everyone!\n\nBug fixes:\n\n- We cpdef Session.stop so that it has a C version that can be called safely\n from __dealloc__, fixing a PyPy issue (#659, #553).\n\n1.8rc1 (2018-10-26)\n-------------------\n\nThere are no changes in 1.8rc1 other than more test standardization and the\nintroduction of a temporary test_collection_legacy.py module to support the\nbuild of fully tested Python 2.7 macosx wheels on Travis-CI.\n\n1.8b2 (2018-10-23)\n------------------\n\nBug fixes:\n\n- The ensure_env_with_credentials decorator will no longer clobber credentials\n of the outer environment. This fixes a bug reported to the Rasterio project\n and which also existed in Fiona.\n- An unused import of the packaging module and the dependency have been \n removed (#653).\n- The Env class logged to the 'rasterio' hierarchy instead of 'fiona'. This\n mistake has been corrected (#646).\n- The Mapping abstract base class is imported from collections.abc when\n possible (#647).\n\nRefactoring:\n\n- Standardization of the tests on pytest functions and fixtures continues and\n is nearing completion (#648, #649, #650, #651, #652).\n\n1.8b1 (2018-10-15)\n------------------\n\nDeprecations:\n\n- Collection slicing has been deprecated and will be prohibited in a future\n version.\n\nBug fixes:\n\n- Rasterio CRS objects passed to transform module methods will be converted\n to dicts as needed (#590).\n- Implicitly convert curve geometries to their linear approximations rather\n than failing (#617).\n- Migrated unittest test cases in test_collection.py and test_layer.py to the\n use of the standard data_dir and path_coutwildrnp_shp fixtures (#616).\n- Root logger configuration has been removed from all test scripts (#615).\n- An AWS session is created for the CLI context Env only if explicitly\n requested, matching the behavior of Rasterio's CLI (#635).\n- Dependency on attrs is made explicit.\n- Other dependencies are pinned to known good versions in requirements files.\n- Unused arguments have been removed from the Env constructor (#637).\n\nRefactoring:\n\n- A with_context_env decorator has been added and used to set up the GDAL\n environment for CLI commands. The command functions themselves are now\n simplified.\n\n1.8a3 (2018-10-01)\n------------------\n\nDeprecations:\n\n- The ``fiona.drivers()`` context manager is officially deprecated. All\n users should switch to ``fiona.Env()``, which registers format drivers and\n manages GDAL configuration in a reversible manner.\n\nBug fixes:\n\n- The Collection class now filters log messages about skipped fields to\n a maximum of one warning message per field (#627).\n- The boto3 module is only imported when needed (#507, #629).\n- Compatibility with Click 7.0 is achieved (#633).\n- Use of %r instead of %s in a debug() call prevents UnicodeDecodeErrors\n (#620).\n\n1.8a2 (2018-07-24)\n------------------\n\nNew features:\n\n- 64-bit integers are the now the default for int type fields (#562, #564).\n- 'http', 's3', 'zip+http', and 'zip+s3' URI schemes for datasets are now\n supported (#425, #426).\n- We've added a ``MemoryFile`` class which supports formatted in-memory\n feature collections (#501).\n- Added support for GDAL 2.x boolean field sub-type (#531).\n- A new ``fio rm`` command makes it possible to cleanly remove multi-file\n datasets (#538).\n- The geometry type in a feature collection is more flexible. We can now\n specify not only a single geometry type, but a sequence of permissible types,\n or \"Any\" to permit any geometry type (#539).\n- Support for GDAL 2.2+ null fields has been added (#554).\n- The new ``gdal_open_vector()`` function of our internal API provides much\n improved error handling (#557).\n\nBug fixes:\n\n- The bug involving OrderedDict import on Python 2.7 has been fixed (#533).\n- An ``AttributeError`` raised when the ``--bbox`` option of fio-cat is used\n with more than one input file has been fixed (#543, #544).\n- Obsolete and derelict fiona.tool module has been removed.\n- Revert the change in 0a2bc7c that discards Z in geometry types when a\n collection's schema is reported (#541).\n- Require six version 1.7 or higher (#550).\n- A regression related to \"zip+s3\" URIs has been fixed.\n- Debian's GDAL data locations are now searched by default (#583).\n\n1.8a1 (2017-11-06)\n------------------\n\nNew features:\n\n- Each call of ``writerecords()`` involves one or more transactions of up to\n 20,000 features each. This improves performance when writing GeoPackage files\n as the previous transaction size was only 200 features (#476, #491).\n\nPackaging:\n\n- Fiona's Cython source files have been refactored so that there are no longer\n separate extension modules for GDAL 1.x and GDAL 2.x. Instead there is a base\n extension module based on GDAL 2.x and shim modules for installations that\n use GDAL 1.x.\n\n1.7.11.post1 (2018-01-08)\n-------------------------\n\n- This post-release adds missing expat (and thereby GPX format) support to\n the included GDAL library (still version 2.2.2).\n\n1.7.11 (2017-12-14)\n-------------------\n\n- The ``encoding`` keyword argument for ``fiona.open()``, which is intended\n to allow a caller to override a data source's own and possibly erroneous\n encoding, has not been working (#510, #512). The problem is that we weren't\n always setting GDAL open or config options before opening the data sources.\n This bug is resolved by a number of commits in the maint-1.7 branch and\n the fix is demonstrated in tests/test_encoding.py.\n- An ``--encoding`` option has been added to fio-load to enable creation of\n encoded shapefiles with an accompanying .cpg file (#499, #517).\n\n1.7.10.post1 (2017-10-30)\n-------------------------\n\n- A post-release has been made to fix a problem with macosx wheels uploaded\n to PyPI.\n\n1.7.10 (2017-10-26)\n-------------------\n\nBug fixes:\n\n- An extraneous printed line from the ``rio cat --layers`` validator has been\n removed (#478).\n\nPackaging:\n\n- Official OS X and Manylinux1 wheels (on PyPI) for this release will be\n compatible with Shapely 1.6.2 and Rasterio 1.0a10 wheels.\n\n1.7.9.post1 (2017-08-21)\n------------------------\n\nThis release introduces no changes in the Fiona package. It upgrades GDAL\nfrom 2.2.0 to 2.2.1 in wheels that we publish to the Python Package Index.\n\n1.7.9 (2017-08-17)\n------------------\n\nBug fixes:\n\n- Acquire the GIL for GDAL error callback functions to prevent crashes when\n GDAL errors occur when the GIL has been released by user code.\n- Sync and flush layers when closing even when the number of features is not\n precisely known (#467).\n\n1.7.8 (2017-06-20)\n------------------\n\nBug fixes:\n\n- Provide all arguments needed by CPLError based exceptions (#456).\n\n1.7.7 (2017-06-05)\n------------------\n\nBug fixes:\n\n- Switch logger `warn()` (deprecated) calls to `warning()`.\n- Replace all relative imports and cimports in Cython modules with absolute\n imports (#450).\n- Avoid setting `PROJ_LIB` to a non-existent directory (#439).\n\n1.7.6 (2017-04-26)\n------------------\n\nBug fixes:\n\n- Fall back to `share/proj` for PROJ_LIB (#440).\n- Replace every call to `OSRDestroySpatialReference()` with `OSRRelease()`,\n fixing the GPKG driver crasher reported in #441 (#443).\n- Add a `DriverIOError` derived from `IOError` to use for driver-specific\n errors such as the GeoJSON driver's refusal to overwrite existing files.\n Also we now ensure that when this error is raised by `fiona.open()` any\n created read or write session is deleted, this eliminates spurious \n exceptions on teardown of broken `Collection` objects (#437, #444).\n\n1.7.5 (2017-03-20)\n------------------\n\nBug fixes:\n\n- Opening a data file in read (the default) mode with `fiona.open()` using the\n the `driver` or `drivers` keyword arguments (to specify certain format \n drivers) would sometimes cause a crash on Windows due to improperly\n terminated lists of strings (#428). The fix: Fiona's buggy `string_list()`\n has been replaced by GDAL's `CSLAddString()`.\n\n1.7.4 (2017-02-20)\n------------------\n\nBug fixes:\n\n- OGR's EsriJSON detection fails when certain keys aren't found in the first\n 6000 bytes of data passed to `BytesCollection` (#422). A .json file extension\n is now explicitly given to the in-memory file behind `BytesCollection` when\n the `driver='GeoJSON'` keyword argument is given (#423). \n\n1.7.3 (2017-02-14)\n------------------\n\nRoses are red.\nTan is a pug.\nSoftware regression's\nthe most embarrassing bug.\n\nBug fixes:\n\n- Use __stdcall for GDAL error handling callback on Windows as in Rasterio.\n- Turn on latent support for zip:// URLs in rio-cat and rio-info (#421).\n- The 1.7.2 release broke support for zip files with absolute paths (#418).\n This regression has been fixed with tests to confirm.\n\n1.7.2 (2017-01-27)\n------------------\n\nFuture Deprecation:\n\n- `Collection.__next__()` is buggy in that it can lead to duplication of \n features when used in combination with `Collection.filter()` or\n `Collection.__iter__()`. It will be removed in Fiona 2.0. Please check for\n usage of this deprecated feature by running your tests or programs with\n `PYTHONWARNINGS=\"always:::fiona\"` or `-W\"always:::fiona\"` and switch from\n `next(collection)` to `next(iter(collection))` (#301).\n\nBug fix:\n\n- Zipped streams of bytes can be accessed by `BytesCollection` (#318).\n\n1.7.1.post1 (2016-12-23)\n------------------------\n- New binary wheels using version 1.2.0 of sgillies/frs-wheel-builds. See\n https://github.com/sgillies/frs-wheel-builds/blob/master/CHANGES.txt.\n\n1.7.1 (2016-11-16)\n------------------\n\nBug Fixes:\n\n- Prevent Fiona from stumbling over 'Z', 'M', and 'ZM' geometry types\n introduced in GDAL 2.1 (#384). Fiona 1.7.1 doesn't add explicit support for\n these types, they are coerced to geometry types 1-7 ('Point', 'LineString',\n etc.)\n- Raise an `UnsupportedGeometryTypeError` when a bogus or unsupported \n geometry type is encountered in a new collection's schema or elsewhere\n (#340).\n- Enable `--precision 0` for fio-cat (#370).\n- Prevent datetime exceptions from unnecessarily stopping collection iteration\n by yielding `None` (#385)\n- Replace log.warn calls with log.warning calls (#379).\n- Print an error message if neither gdal-config or `--gdalversion` indicate\n a GDAL C API version when running `setup.py` (#364).\n- Let dict-like subclasses through CRS type checks (#367).\n\n1.7.0post2 (2016-06-15)\n-----------------------\n\nPackaging: define extension modules for 'clean' and 'config' targets (#363).\n\n1.7.0post1 (2016-06-15)\n-----------------------\n\nPackaging: No files are copied for the 'clean' setup target (#361, #362).\n\n1.7.0 (2016-06-14)\n------------------\n\nThe C extension modules in this library can now be built and used with either\na 1.x or 2.x release of the GDAL library. Big thanks to Ren\u00e9 Buffat for\nleading this effort.\n\nRefactoring:\n\n- The `ogrext1.pyx` and `ogrext2.pyx` files now use separate\n C APIs defined in `ogrext1.pxd` and `ogrex2.pxd`. The other extension\n modules have been refactored so that they do not depend on either of these\n modules and use subsets of the GDAL/OGR API compatible with both GDAL 1.x and\n 2.x (#359).\n\nPackaging:\n\n- Source distributions now contain two different sources for the\n `ogrext` extension module. The `ogrext1.c` file will be used with GDAL 1.x\n and the `ogrext2.c` file will be used with GDAL 2.x.\n\n1.7b2 (2016-06-13)\n------------------\n\n- New feature: enhancement of the `--layer` option for fio-cat and fio-dump\n to allow separate layers of one or more multi-layer input files to be\n selected (#349).\n\n1.7b1 (2016-06-10)\n------------------\n\n- New feature: support for GDAL version 2+ (#259).\n- New feature: a new fio-calc CLI command (#273).\n- New feature: `--layer` options for fio-info (#316) and fio-load (#299).\n- New feature: a `--no-parse` option for fio-collect that lets a careful user\n avoid extra JSON serialization and deserialization (#306).\n- Bug fix: `+wktext` is now preserved when serializing CRS from WKT to PROJ.4\n dicts (#352).\n- Bug fix: a small memory leak when opening a collection has been fixed (#337).\n- Bug fix: internal unicode errors now result in a log message and a \n `UnicodeError` exception, not a `TypeError` (#356).\n\n1.6.4 (2016-05-06)\n------------------\n- Raise ImportError if the active GDAL library version is >= 2.0 instead of\n failing unpredictably (#338, #341). Support for GDAL>=2.0 is coming in\n Fiona 1.7.\n\n1.6.3.post1 (2016-03-27)\n------------------------\n- No changes to the library in this post-release version, but there is a\n significant change to the distributions on PyPI: to help make Fiona more\n compatible with Shapely on OS X, the GDAL shared library included in the\n macosx (only) binary wheels now statically links the GEOS library. See\n https://github.com/sgillies/frs-wheel-builds/issues/5.\n\n1.6.3 (2015-12-22)\n------------------\n- Daytime has been decreasing in the Northern Hemisphere, but is now\n increasing again as it should.\n- Non-UTF strings were being passed into OGR functions in some situations\n and on Windows this would sometimes crash a Python process (#303). Fiona\n now raises errors derived from UnicodeError when field names or field\n values can't be encoded.\n\n1.6.2 (2015-09-22)\n------------------\n- Providing only PROJ4 representations in the dataset meta property resulted in\n loss of CRS information when using the `fiona.open(..., **src.meta) as dst`\n pattern (#265). This bug has been addressed by adding a crs_wkt item to the`\n meta property and extending the `fiona.open()` and the collection constructor\n to look for and prioritize this keyword argument.\n\n1.6.1 (2015-08-12)\n------------------\n- Bug fix: Fiona now deserializes JSON-encoded string properties provided by\n the OGR GeoJSON driver (#244, #245, #246).\n- Bug fix: proj4 data was not copied properly into binary distributions due to\n a typo (#254).\n\nSpecial thanks to WFMU DJ Liz Berg for the awesome playlist that's fueling my\nrelease sprint. Check it out at http://wfmu.org/playlists/shows/62083. You\ncan't unhear Love Coffin.\n\n1.6.0 (2015-07-21)\n------------------\n- Upgrade Cython requirement to 0.22 (#214).\n- New BytesCollection class (#215).\n- Add GDAL's OpenFileGDB driver to registered drivers (#221).\n- Implement CLI commands as plugins (#228).\n- Raise click.abort instead of calling sys.exit, preventing suprising exits\n (#236).\n\n1.5.1 (2015-03-19)\n------------------\n- Restore test data to sdists by fixing MANIFEST.in (#216).\n\n1.5.0 (2015-02-02)\n------------------\n- Finalize GeoJSON feature sequence options (#174).\n- Fix for reading of datasets that don't support feature counting (#190).\n- New test dataset (#188).\n- Fix for encoding error (#191).\n- Remove confusing warning (#195).\n- Add data files for binary wheels (#196).\n- Add control over drivers enabled when reading datasets (#203).\n- Use cligj for CLI options involving GeoJSON (#204).\n- Fix fio-info --bounds help (#206).\n\n1.4.8 (2014-11-02)\n------------------\n- Add missing crs_wkt property as in Rasterio (#182).\n\n1.4.7 (2014-10-28)\n------------------\n- Fix setting of CRS from EPSG codes (#149).\n\n1.4.6 (2014-10-21)\n------------------\n- Handle 3D coordinates in bounds() #178.\n\n1.4.5 (2014-10-18)\n------------------\n- Add --bbox option to fio-cat (#163).\n- Skip geopackage tests if run from an sdist (#167).\n- Add fio-bounds and fio-distrib.\n- Restore fio-dump to working order.\n\n1.4.4 (2014-10-13)\n------------------\n- Fix accidental requirement on GDAL 1.11 introduced in 1.4.3 (#164).\n\n1.4.3 (2014-10-10)\n------------------\n- Add support for geopackage format (#160).\n- Add -f and --format aliases for --driver in CLI (#162).\n- Add --version option and env command to CLI.\n\n1.4.2 (2014-10-03)\n------------------\n- --dst-crs and --src-crs options for fio cat and collect (#159).\n\n1.4.1 (2014-09-30)\n------------------\n- Fix encoding bug in collection's __getitem__ (#153).\n\n1.4.0 (2014-09-22)\n------------------\n- Add fio cat and fio collect commands (#150).\n- Return of Python 2.6 compatibility (#148).\n- Improved CRS support (#149).\n\n1.3.0 (2014-09-17)\n------------------\n- Add single metadata item accessors to fio inf (#142).\n- Move fio to setuptools entry point (#142).\n- Add fio dump and load commands (#143).\n- Remove fio translate command.\n\n1.2.0 (2014-09-02)\n------------------\n- Always show property width and precision in schema (#123).\n- Write datetime properties of features (#125).\n- Reset spatial filtering in filter() (#129).\n- Accept datetime.date objects as feature properties (#130).\n- Add slicing to collection iterators (#132).\n- Add geometry object masks to collection iterators (#136).\n- Change source layout to match Shapely and Rasterio (#138).\n\n1.1.6 (2014-07-23)\n------------------\n- Implement Collection __getitem__() (#112).\n- Leave GDAL finalization to the DLL's destructor (#113).\n- Add Collection keys(), values(), items(), __contains__() (#114).\n- CRS bug fix (#116).\n- Add fio CLI program.\n \n1.1.5 (2014-05-21)\n------------------\n- Addition of cpl_errs context manager (#108).\n- Check for NULLs with '==' test instead of 'is' (#109).\n- Open auxiliary files with encoding='utf-8' in setup for Python 3 (#110).\n\n1.1.4 (2014-04-03)\n------------------\n- Convert 'long' in schemas to 'int' (#101).\n- Carefully map Python schema to the possibly munged internal schema (#105).\n- Allow writing of features with geometry: None (#71).\n\n1.1.3 (2014-03-23)\n------------------\n- Always register all GDAL and OGR drivers when entering the DriverManager\n context (#80, #92).\n- Skip unsupported field types with a warning (#91).\n- Allow OGR config options to be passed to fiona.drivers() (#90, #93).\n- Add a bounds() function (#100).\n- Turn on GPX driver.\n\n1.1.2 (2014-02-14)\n------------------\n- Remove collection slice left in dumpgj (#88).\n\n1.1.1 (2014-02-02)\n------------------\n- Add an interactive file inspector like the one in rasterio.\n- CRS to_string bug fix (#83).\n\n1.1 (2014-01-22)\n----------------\n- Use a context manager to manage drivers (#78), a backwards compatible but\n big change. Fiona is now compatible with rasterio and plays better with the\n osgeo package.\n\n1.0.3 (2014-01-21)\n------------------\n- Fix serialization of +init projections (#69).\n\n1.0.2 (2013-09-09)\n------------------\n- Smarter, better test setup (#65, #66, #67).\n- Add type='Feature' to records read from a Collection (#68).\n- Skip geometry validation when using GeoJSON driver (#61).\n- Dumpgj file description reports record properties as a list (as in\n dict.items()) instead of a dict.\n\n1.0.1 (2013-08-16)\n------------------\n- Allow ordering of written fields and preservation of field order when\n reading (#57).\n\n1.0 (2013-07-30)\n-----------------\n- Add prop_type() function.\n- Allow UTF-8 encoded paths for Python 2 (#51). For Python 3, paths must\n always be str, never bytes.\n- Remove encoding from collection.meta, it's a file creation option only.\n- Support for linking GDAL frameworks (#54).\n\n0.16.1 (2013-07-02)\n-------------------\n- Add listlayers, open, prop_width to __init__py:__all__.\n- Reset reading of OGR layer whenever we ask for a collection iterator (#49).\n\n0.16 (2013-06-24)\n-----------------\n- Add support for writing layers to multi-layer files.\n- Add tests to reach 100% Python code coverage.\n\n0.15 (2013-06-06)\n-----------------\n- Get and set numeric field widths (#42).\n- Add support for multi-layer data sources (#17).\n- Add support for zip and tar virtual filesystems (#45).\n- Add listlayers() function.\n- Add GeoJSON to list of supported formats (#47).\n- Allow selection of layers by index or name.\n\n0.14 (2013-05-04)\n-----------------\n- Add option to add JSON-LD in the dumpgj program.\n- Compare values to six.string_types in Collection constructor.\n- Add encoding to Collection.meta.\n- Document dumpgj in README.\n\n0.13 (2013-04-30)\n-----------------\n- Python 2/3 compatibility in a single package. Pythons 2.6, 2.7, 3.3 now supported.\n\n0.12.1 (2013-04-16)\n-------------------\n- Fix messed up linking of README in sdist (#39).\n\n0.12 (2013-04-15)\n-----------------\n- Fix broken installation of extension modules (#35).\n- Log CPL errors at their matching Python log levels.\n- Use upper case for encoding names within OGR, lower case in Python.\n\n0.11 (2013-04-14)\n-----------------\n- Cythonize .pyx files (#34).\n- Work with or around OGR's internal recoding of record data (#35).\n- Fix bug in serialization of int/float PROJ.4 params.\n\n0.10 (2013-03-23)\n-----------------\n- Add function to get the width of str type properties.\n- Handle validation and schema representation of 3D geometry types (#29).\n- Return {'geometry': None} in the case of a NULL geometry (#31).\n\n0.9.1 (2013-03-07)\n------------------\n- Silence the logger in ogrext.so (can be overridden).\n- Allow user specification of record field encoding (like 'Windows-1252' for\n Natural Earth shapefiles) to help when OGR can't detect it.\n\n0.9 (2013-03-06)\n----------------\n- Accessing file metadata (crs, schema, bounds) on never inspected closed files\n returns None without exceptions.\n- Add a dict of supported_drivers and their supported modes.\n- Raise ValueError for unsupported drivers and modes.\n- Remove asserts from ogrext.pyx.\n- Add validate_record method to collections.\n- Add helpful coordinate system functions to fiona.crs.\n- Promote use of fiona.open over fiona.collection.\n- Handle Shapefile's mix of LineString/Polygon and multis (#18).\n- Allow users to specify width of shapefile text fields (#20).\n\n0.8 (2012-02-21)\n----------------\n- Replaced .opened attribute with .closed (product of collection() is always\n opened). Also a __del__() which will close a Collection, but still not to be\n depended upon.\n- Added writerecords method.\n- Added a record buffer and better counting of records in a collection.\n- Manage one iterator per collection/session.\n- Added a read-only bounds property.\n\n0.7 (2012-01-29)\n----------------\n- Initial timezone-naive support for date, time, and datetime fields. Don't use\n these field types if you can avoid them. RFC 3339 datetimes in a string field\n are much better.\n\n0.6.2 (2012-01-10)\n------------------\n- Diagnose and set the driver property of collection in read mode.\n- Fail if collection paths are not to files. Multi-collection workspaces are\n a (maybe) TODO.\n\n0.6.1 (2012-01-06)\n------------------\n- Handle the case of undefined crs for disk collections.\n\n0.6 (2012-01-05)\n----------------\n- Support for collection coordinate reference systems based on Proj4.\n- Redirect OGR warnings and errors to the Fiona log.\n- Assert that pointers returned from the ograpi functions are not NULL before\n using.\n\n0.5 (2011-12-19)\n----------------\n- Support for reading and writing collections of any geometry type.\n- Feature and Geometry classes replaced by mappings (dicts).\n- Removal of Workspace class.\n\n0.2 (2011-09-16)\n----------------\n- Rename WorldMill to Fiona.\n\n0.1.1 (2008-12-04)\n------------------\n- Support for features with no geometry.\n\n\nCredits\n=======\n\nFiona is written by:\n\n- Sean Gillies \n- Ren\u00e9 Buffat \n- Joshua Arnott \n- Kevin Wurster \n- Micah Cochran \n- Matthew Perry \n- Elliott Sales de Andrade \n- Kelsey Jordahl \n- Patrick Young \n- Simon Norris \n- Hannes Gr\u00e4uler \n- Johan Van de Wauw \n- Jacob Wasserman \n- Michael Weisman \n- Ryan Grout \n- Bas Couwenberg \n- Brendan Ward \n- Hannes \n- Michele Citterio \n- Miro Hron\u010dok \n- Sid Kapur \n- Tim Tr\u00f6ndle \n- fredj \n- qinfeng \n- Ariel Nunez \n- Ariki \n- Brandon Liu \n- Chris Mutel \n- Denis Rykov \n- Efr\u00e9n \n- Egor Fedorov \n- Even Rouault \n- Filipe Fernandes \n- G\u00e9raud \n- Hannes Gr\u00e4uler \n- Jesse Crocker \n- Juan Luis Cano Rodr\u00edguez \n- Ludovic Delaun\u00e9 \n- Martijn Visser \n- Matthew Perry \n- Michael Weisman \n- Oliver Tonnhofer \n- Stefano Costa \n- Stephane Poss \n- dimlev \n- wilsaj \n\nThe GeoPandas project (Joris Van den Bossche et al.) has been a major driver\nfor new features in 1.8.0.\n\nFiona would not be possible without the great work of Frank Warmerdam and other\nGDAL/OGR developers.\n\nSome portions of this work were supported by a grant (for Pleiades_) from the\nU.S. National Endowment for the Humanities (http://www.neh.gov).\n\n.. _Pleiades: http://pleiades.stoa.org\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/Toblerity/Fiona", "keywords": "gis vector feature data", "license": "BSD", "maintainer": "Sean Gillies", "maintainer_email": "sean.gillies@gmail.com", "name": "Fiona", "package_url": "https://pypi.org/project/Fiona/", "platform": "", "project_url": "https://pypi.org/project/Fiona/", "project_urls": { "Homepage": "http://github.com/Toblerity/Fiona" }, "release_url": "https://pypi.org/project/Fiona/1.8.21/", "requires_dist": [ "attrs (>=17)", "certifi", "click (>=4.0)", "cligj (>=0.5)", "click-plugins (>=1.0)", "six (>=1.7)", "munch", "setuptools", "argparse ; python_version < \"2.7\"", "ordereddict ; python_version < \"2.7\"", "boto3 (>=1.2.4) ; extra == 'all'", "pytest-cov ; extra == 'all'", "shapely ; extra == 'all'", "pytest (>=3) ; extra == 'all'", "mock ; (python_version < \"3.4\") and extra == 'all'", "shapely ; extra == 'calc'", "boto3 (>=1.2.4) ; extra == 's3'", "pytest (>=3) ; extra == 'test'", "pytest-cov ; extra == 'test'", "boto3 (>=1.2.4) ; extra == 'test'", "mock ; (python_version < \"3.4\") and extra == 'test'" ], "requires_python": "", "summary": "Fiona reads and writes spatial data files", "version": "1.8.21", "yanked": false, "yanked_reason": null }, "last_serial": 12863225, "releases": { "0.10": [ { "comment_text": "", "digests": { "md5": "e0db2bb89a31a8c6f6bdad960cf01d2d", "sha256": "31196e9281dd77bfcb85ed9684637bf39ac0b5cf74658e5e2b3cb151cc55c2d4" }, "downloads": -1, "filename": "Fiona-0.10.tar.gz", "has_sig": false, "md5_digest": "e0db2bb89a31a8c6f6bdad960cf01d2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174486, "upload_time": "2013-03-23T20:15:14", "upload_time_iso_8601": "2013-03-23T20:15:14.774731Z", "url": "https://files.pythonhosted.org/packages/37/79/2d589517ed62fdd3da506ea7a4ca637eee722f01675deb6111bd0e97bb90/Fiona-0.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12": [ { "comment_text": "", "digests": { "md5": "e91c0f9702366f49be50cb7cba4ec029", "sha256": "7f2871e73b8286ee4bd609d38b285fe4d634bb4c15ee96b070afe8b43052013c" }, "downloads": -1, "filename": "Fiona-0.12.tar.gz", "has_sig": false, "md5_digest": "e91c0f9702366f49be50cb7cba4ec029", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 180500, "upload_time": "2013-04-15T22:08:06", "upload_time_iso_8601": "2013-04-15T22:08:06.925024Z", "url": "https://files.pythonhosted.org/packages/9c/f2/3f3337d6419f255d5aee14a45db8252bab0901c055420916c1ccff1d4166/Fiona-0.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "0ab77c67021d331ecb2f277ef16cf74c", "sha256": "b33dc6be3df58b404de8b303a9b54f9387d8436eda0389b9e1470d3560fbb0a6" }, "downloads": -1, "filename": "Fiona-0.12.1.tar.gz", "has_sig": false, "md5_digest": "0ab77c67021d331ecb2f277ef16cf74c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177667, "upload_time": "2013-04-17T05:34:30", "upload_time_iso_8601": "2013-04-17T05:34:30.011470Z", "url": "https://files.pythonhosted.org/packages/c6/f8/0434f1fe72f977053b062ff89c0786b10ebdcbc99335e268b0633cee922c/Fiona-0.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13": [ { "comment_text": "", "digests": { "md5": "843a5f136bb16214d1632a428ac160a1", "sha256": "317fe9cc75e03fd82ca8408b9a1794141087c9c84c3de60d00b31b3b532bcf90" }, "downloads": -1, "filename": "Fiona-0.13.tar.gz", "has_sig": false, "md5_digest": "843a5f136bb16214d1632a428ac160a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 185086, "upload_time": "2013-04-30T21:23:57", "upload_time_iso_8601": "2013-04-30T21:23:57.923623Z", "url": "https://files.pythonhosted.org/packages/23/4f/e113c2777fa112f9e69d2ecb740c6200cdef8a3a621b8e7690d8f814192e/Fiona-0.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14": [ { "comment_text": "", "digests": { "md5": "5e428672f4f3c1dd71e3793c347accdb", "sha256": "39a0d69bb04483d58506c15ad6ef759a2d444c10f7385763345dc04d7bd0de9a" }, "downloads": -1, "filename": "Fiona-0.14.tar.gz", "has_sig": false, "md5_digest": "5e428672f4f3c1dd71e3793c347accdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187254, "upload_time": "2013-05-04T20:07:47", "upload_time_iso_8601": "2013-05-04T20:07:47.163440Z", "url": "https://files.pythonhosted.org/packages/58/86/ebf4701dc7958a38ae0d206dd88de6f38a8e0f4c7fe0bb7142d4c96eb59a/Fiona-0.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15": [ { "comment_text": "", "digests": { "md5": "a356b897b15164bb0f6a6b0abf26c505", "sha256": "6df567b918b1669c334847f3985c91198e5f6177905829c4581e6ac3d2e11864" }, "downloads": -1, "filename": "Fiona-0.15.tar.gz", "has_sig": false, "md5_digest": "a356b897b15164bb0f6a6b0abf26c505", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194254, "upload_time": "2013-06-06T21:39:08", "upload_time_iso_8601": "2013-06-06T21:39:08.285661Z", "url": "https://files.pythonhosted.org/packages/b7/09/96090cd0a5fa58d7372700847c291520bd76ccb6b2ad4d30cbed60210e34/Fiona-0.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16": [ { "comment_text": "", "digests": { "md5": "9ad12dcfae764b12173a357e613b25c1", "sha256": "37a98dc906f74ea7db0e6996e7343301c00b094c336d6322c3015f6a83357960" }, "downloads": -1, "filename": "Fiona-0.16.tar.gz", "has_sig": false, "md5_digest": "9ad12dcfae764b12173a357e613b25c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197774, "upload_time": "2013-06-25T05:35:22", "upload_time_iso_8601": "2013-06-25T05:35:22.652500Z", "url": "https://files.pythonhosted.org/packages/9a/e5/30f2fe25e6f61dcc55594d9a4a7fb97d4e27a91f3c9ba603558e322d580b/Fiona-0.16.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.1": [ { "comment_text": "", "digests": { "md5": "d1a560447ed6cfcbacefe81b3388d339", "sha256": "4a91c9312f9d8878567508a7192cfedf3744e672faee8412720b79f48b0ebe4e" }, "downloads": -1, "filename": "Fiona-0.16.1.tar.gz", "has_sig": false, "md5_digest": "d1a560447ed6cfcbacefe81b3388d339", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 198738, "upload_time": "2013-07-03T03:35:42", "upload_time_iso_8601": "2013-07-03T03:35:42.232357Z", "url": "https://files.pythonhosted.org/packages/b1/b4/bccd32059c36417b88a494166edc27eb62841ff29ab7d16947b530d6afcf/Fiona-0.16.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5": [ { "comment_text": "", "digests": { "md5": "7816263c88ea46efef38f37f4adbd0b8", "sha256": "6421dfebecf5c57981e0bf56f10e5c23f26622f26440e3c0ac63584763a41c60" }, "downloads": -1, "filename": "Fiona-0.5.tar.gz", "has_sig": false, "md5_digest": "7816263c88ea46efef38f37f4adbd0b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106902, "upload_time": "2011-12-21T01:00:01", "upload_time_iso_8601": "2011-12-21T01:00:01.838305Z", "url": "https://files.pythonhosted.org/packages/5e/0c/c95c267871a7e77e951ebb0912d1210007ce4c7bdf4e3083de37fdcd5cce/Fiona-0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6": [ { "comment_text": "", "digests": { "md5": "b0246e924990b07a64d32ebc4e17cfd1", "sha256": "b194fe7b75428a07c49bfe18f5f3c1e3809d5ece3ecccce5c08fcae4bdef5fd3" }, "downloads": -1, "filename": "Fiona-0.6.tar.gz", "has_sig": false, "md5_digest": "b0246e924990b07a64d32ebc4e17cfd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 198529, "upload_time": "2012-01-05T22:10:25", "upload_time_iso_8601": "2012-01-05T22:10:25.029390Z", "url": "https://files.pythonhosted.org/packages/c2/75/baf09f1af92b37e9b80502ea74fb758b7a7e780dc5ed0a601cb41cb21905/Fiona-0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "eff5f4444b4b67d8452fed8c294297ed", "sha256": "033642d1ca96168f0a31a48d17f63d7e7aea1f660c923ac39c1941ee7057cbb6" }, "downloads": -1, "filename": "Fiona-0.6.1.tar.gz", "has_sig": false, "md5_digest": "eff5f4444b4b67d8452fed8c294297ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199313, "upload_time": "2012-01-07T21:19:43", "upload_time_iso_8601": "2012-01-07T21:19:43.833679Z", "url": "https://files.pythonhosted.org/packages/7a/3f/234ec83c5bfd874c9d03f7d43a5d6cf202fa118c188d9eb3633bbc75e4d2/Fiona-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "88c9a1743cedce14cc08b0e6bfbf7e50", "sha256": "8882808c5c0201790dd39bfa84e561ff00d11580fde09a4d4eee34773edea238" }, "downloads": -1, "filename": "Fiona-0.6.2.tar.gz", "has_sig": false, "md5_digest": "88c9a1743cedce14cc08b0e6bfbf7e50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 212363, "upload_time": "2012-01-11T23:11:23", "upload_time_iso_8601": "2012-01-11T23:11:23.421986Z", "url": "https://files.pythonhosted.org/packages/9c/8a/187926b626030c7c2a2c041c018205947462dd81027956f9cd1510e4d209/Fiona-0.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7": [ { "comment_text": "", "digests": { "md5": "3d2c26b5a589e02d61d09d5ff4e142f5", "sha256": "ae9200f6beb8a43236503e6a0273d0297bab3be49b11d67488fae7336b53bd01" }, "downloads": -1, "filename": "Fiona-0.7.tar.gz", "has_sig": false, "md5_digest": "3d2c26b5a589e02d61d09d5ff4e142f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 217923, "upload_time": "2012-01-30T06:29:16", "upload_time_iso_8601": "2012-01-30T06:29:16.114156Z", "url": "https://files.pythonhosted.org/packages/7a/8b/1c0af0cfa414ad9350d8f2fc497fadda9d010caaa31563b5d376573dd3b8/Fiona-0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8": [ { "comment_text": "", "digests": { "md5": "532df1beedee8c7e5f5ae1e05483f93b", "sha256": "61575ec9ae636157637cc288f8506b1ddae4b35f6cc4c32ce459d6a33b17fab7" }, "downloads": -1, "filename": "Fiona-0.8.tar.gz", "has_sig": false, "md5_digest": "532df1beedee8c7e5f5ae1e05483f93b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 269982, "upload_time": "2012-02-21T18:53:16", "upload_time_iso_8601": "2012-02-21T18:53:16.452116Z", "url": "https://files.pythonhosted.org/packages/07/af/1db3b7e99eb3b510068e893b96c4e573dfa57986a9043ec140c1e96ccf0e/Fiona-0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9": [ { "comment_text": "", "digests": { "md5": "515ae67e2bc3266545883703319eea3e", "sha256": "1d1e63defed1b370d5931cfb8be2e87019b68b7c3c9b300b4432bca09fe8c2ef" }, "downloads": -1, "filename": "Fiona-0.9.tar.gz", "has_sig": false, "md5_digest": "515ae67e2bc3266545883703319eea3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 170759, "upload_time": "2013-03-07T15:39:43", "upload_time_iso_8601": "2013-03-07T15:39:43.070749Z", "url": "https://files.pythonhosted.org/packages/94/e1/d4365ce0df07d5d217c49f240e15df38a57233950ac78e1781bdc11514e4/Fiona-0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "24c75832743481f797295d66133846db", "sha256": "50e2700a7e8b21248a4de3032ab1158ff335300ed492c269e1addd1e232e0d9f" }, "downloads": -1, "filename": "Fiona-0.9.1.tar.gz", "has_sig": false, "md5_digest": "24c75832743481f797295d66133846db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 171518, "upload_time": "2013-03-07T17:16:15", "upload_time_iso_8601": "2013-03-07T17:16:15.028771Z", "url": "https://files.pythonhosted.org/packages/a3/45/ded5e363c23160b44ab2b6b34d9698a9983351742f6a9acd6c8b07570be4/Fiona-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0": [ { "comment_text": "", "digests": { "md5": "2b3279d5239c7770c51239317ef23fee", "sha256": "306159d0d3b0c1f43dcd51884f9836def3a7c4864fcfd9d6f363f62846ec7973" }, "downloads": -1, "filename": "Fiona-1.0.tar.gz", "has_sig": false, "md5_digest": "2b3279d5239c7770c51239317ef23fee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204594, "upload_time": "2013-07-30T18:01:45", "upload_time_iso_8601": "2013-07-30T18:01:45.692615Z", "url": "https://files.pythonhosted.org/packages/c5/d7/4043378cf80e5f0dc6968d610e1df5bc5c75f81d0a99d032f4b54289dfc8/Fiona-1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "15e07a0ffbfb70c0098a5617b5f23a75", "sha256": "aa77a0b4315b7081650e6f9d87ab52b24dcd54f68963e5e26f7d4d26516c6e3f" }, "downloads": -1, "filename": "Fiona-1.0.1.tar.gz", "has_sig": false, "md5_digest": "15e07a0ffbfb70c0098a5617b5f23a75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 205721, "upload_time": "2013-08-16T23:53:56", "upload_time_iso_8601": "2013-08-16T23:53:56.555039Z", "url": "https://files.pythonhosted.org/packages/82/4a/7595c107bd30558613cd2bdcdd15d5bbaf54e12db1f2831c6a46ac0160fa/Fiona-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "9752d7df2e753b1aaf5c43a49616674e", "sha256": "4246fb47a2b33bdfa9603de1ec0a6ea1e6b4398d8c92465e5ac17031841348f9" }, "downloads": -1, "filename": "Fiona-1.0.2.tar.gz", "has_sig": false, "md5_digest": "9752d7df2e753b1aaf5c43a49616674e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 207820, "upload_time": "2013-09-09T20:57:07", "upload_time_iso_8601": "2013-09-09T20:57:07.663834Z", "url": "https://files.pythonhosted.org/packages/e0/91/261be78787f759cdedb36c01c8ce9febd6b46e8065cfb3cbb0fc4e084c42/Fiona-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "65b344759dbefb5fa8f9294731fd2cfe", "sha256": "85686561cbe3a5a8d46f4f3dc7f5f716bfdfef4558530b4fe9250914c67648d2" }, "downloads": -1, "filename": "Fiona-1.0.3.tar.gz", "has_sig": false, "md5_digest": "65b344759dbefb5fa8f9294731fd2cfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 206512, "upload_time": "2014-01-21T22:33:47", "upload_time_iso_8601": "2014-01-21T22:33:47.395724Z", "url": "https://files.pythonhosted.org/packages/ac/13/fb12ecaf2843ecb375365c7b2ca98b61c808a746a7c4fea0b803b3814c73/Fiona-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1": [ { "comment_text": "", "digests": { "md5": "6ac59b24dc35eb44a3ea6fb252582007", "sha256": "b330493c9a8088923c85f0a1ef4429c50693eeab7b474dd762ab6927ba369362" }, "downloads": -1, "filename": "Fiona-1.1.tar.gz", "has_sig": false, "md5_digest": "6ac59b24dc35eb44a3ea6fb252582007", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 217864, "upload_time": "2014-01-22T21:56:20", "upload_time_iso_8601": "2014-01-22T21:56:20.908578Z", "url": "https://files.pythonhosted.org/packages/59/9b/57f3d3ef67b0cb2db0529b57f35b2d47c4d1c20931205f860970c52649b5/Fiona-1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "68b535dbf8ae00a26ce9d947be8a1659", "sha256": "8274d60559ca0ba5142fe83fb798c732acc589175503b62425f0a135ee04abed" }, "downloads": -1, "filename": "Fiona-1.1.1.tar.gz", "has_sig": false, "md5_digest": "68b535dbf8ae00a26ce9d947be8a1659", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219118, "upload_time": "2014-02-02T16:58:15", "upload_time_iso_8601": "2014-02-02T16:58:15.903938Z", "url": "https://files.pythonhosted.org/packages/c0/eb/d628d74175dca1dd098852c831f344d2932ce86525c76ab46ce67a9d0614/Fiona-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "553dfb7fc188232738ce1627e9ccb8a7", "sha256": "8679fadbb2ce5fc76d9007d7c285225e4ec2d3c6ddd6e39c836a525be1f96369" }, "downloads": -1, "filename": "Fiona-1.1.2.tar.gz", "has_sig": false, "md5_digest": "553dfb7fc188232738ce1627e9ccb8a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 220154, "upload_time": "2014-02-14T15:05:49", "upload_time_iso_8601": "2014-02-14T15:05:49.600457Z", "url": "https://files.pythonhosted.org/packages/1d/4c/994a8586e568fbc0d915a948125aa3549951783faa63eccd62e1b080a10b/Fiona-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "dd240877cd9a2d93d2ce51dfb4e5c46d", "sha256": "d33b2c5a1816211627f6bdbd736cae1ac725ba4b4aa04d6639f63419e6e16942" }, "downloads": -1, "filename": "Fiona-1.1.3.tar.gz", "has_sig": false, "md5_digest": "dd240877cd9a2d93d2ce51dfb4e5c46d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 238955, "upload_time": "2014-03-23T17:17:23", "upload_time_iso_8601": "2014-03-23T17:17:23.276986Z", "url": "https://files.pythonhosted.org/packages/c5/29/c85cb8c24910340d7a6bccb20493fdff0267a2a9ae3194dd54177f9c7ba4/Fiona-1.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "441fc924b635ccde2d581038333ad4f2", "sha256": "3b2610a6f1d1c37f1947554f7d28c6523bdc74e314640a99c6e86bf78bcf0b44" }, "downloads": -1, "filename": "Fiona-1.1.4.tar.gz", "has_sig": false, "md5_digest": "441fc924b635ccde2d581038333ad4f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 241305, "upload_time": "2014-04-04T03:52:13", "upload_time_iso_8601": "2014-04-04T03:52:13.845702Z", "url": "https://files.pythonhosted.org/packages/52/f0/dc4e04f0dc7972f88a4cf8fea062dea873d2f76d1f6b8172aa627e877a01/Fiona-1.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "66c74809b2e8c7c4b3db4dade38b7d24", "sha256": "4e58849c9d085bbf5dd6a4daf362fc94c538b53a091b69dad6bb7da2ea74a49b" }, "downloads": -1, "filename": "Fiona-1.1.5-cp27-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "66c74809b2e8c7c4b3db4dade38b7d24", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 171271, "upload_time": "2014-07-21T18:36:24", "upload_time_iso_8601": "2014-07-21T18:36:24.575696Z", "url": "https://files.pythonhosted.org/packages/42/cc/2269ac43251558798bc1aa03eaf9845adf4e36d947f1d7b5f1fcbfb8eded/Fiona-1.1.5-cp27-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "556b3500fdbbaadac6f5c70400f096c7", "sha256": "ebebc9b84ffd8ed2c571387b4d5ec39e9455dade9d399d2888ad19ac0d94e9d5" }, "downloads": -1, "filename": "Fiona-1.1.5-cp34-cp34m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "556b3500fdbbaadac6f5c70400f096c7", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 165507, "upload_time": "2014-07-21T18:35:27", "upload_time_iso_8601": "2014-07-21T18:35:27.379947Z", "url": "https://files.pythonhosted.org/packages/46/50/9bc511b3b6bd17d71503eff300e51ba6fd64c675b1366306eb2c59040bc4/Fiona-1.1.5-cp34-cp34m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b91554cbf20f57c789f92c7962387a0", "sha256": "be0113f47c46cb44656b8e431e31ed37f1a875af0dc9081c92c4dcf5916f6670" }, "downloads": -1, "filename": "Fiona-1.1.5.tar.gz", "has_sig": false, "md5_digest": "3b91554cbf20f57c789f92c7962387a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 262080, "upload_time": "2014-05-22T03:55:35", "upload_time_iso_8601": "2014-05-22T03:55:35.791929Z", "url": "https://files.pythonhosted.org/packages/cd/80/9a8cfd15c014598a6f8aa51503483958c207db9f83d39dcfa42969e8c518/Fiona-1.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "ddd5e9af3efb9d0f0f96843bce6ee536", "sha256": "eb7a1e9c12b0b6187f380d0799f98847ef8912741fd18ebda03fd8160fbe692c" }, "downloads": -1, "filename": "Fiona-1.1.6-cp27-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ddd5e9af3efb9d0f0f96843bce6ee536", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 169269, "upload_time": "2014-07-23T22:06:31", "upload_time_iso_8601": "2014-07-23T22:06:31.337573Z", "url": "https://files.pythonhosted.org/packages/2f/1a/d1be42101ed6241ed214e17afaaa24f5730095e50aa576b202b9bb4566ed/Fiona-1.1.6-cp27-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6be18966cd8f684feb51bd1de75aea51", "sha256": "9ee44889347534cef0c5ac30232610c6dd5c352c08b16f17761e8116eec73fbb" }, "downloads": -1, "filename": "Fiona-1.1.6-cp34-cp34m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6be18966cd8f684feb51bd1de75aea51", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 165082, "upload_time": "2014-07-23T22:08:31", "upload_time_iso_8601": "2014-07-23T22:08:31.660627Z", "url": "https://files.pythonhosted.org/packages/ff/86/4d67fd7d32cf64508276eb47fb59fc5ebac883b5a4e0bda3223f27a8dd1b/Fiona-1.1.6-cp34-cp34m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4db4fb720977b1a974be4899705b43d2", "sha256": "9ba0d66ce0e30783904bea629a647a56cc8c47f146ec789aa6b1df1b6827156e" }, "downloads": -1, "filename": "Fiona-1.1.6.tar.gz", "has_sig": false, "md5_digest": "4db4fb720977b1a974be4899705b43d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 261413, "upload_time": "2014-07-23T22:06:26", "upload_time_iso_8601": "2014-07-23T22:06:26.953180Z", "url": "https://files.pythonhosted.org/packages/91/c7/ef5f0b1d8aadde336673e89090ee38c48413c55455c4f9d44de10892b121/Fiona-1.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "3a157b7316cc4bac499070ba29617c3b", "sha256": "58b08f9b77f11769ab9912f5939c36990a19fb9ba88e6de3b66ae9a4d8d34487" }, "downloads": -1, "filename": "Fiona-1.2.0-cp27-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3a157b7316cc4bac499070ba29617c3b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 181342, "upload_time": "2014-09-02T17:39:24", "upload_time_iso_8601": "2014-09-02T17:39:24.570396Z", "url": "https://files.pythonhosted.org/packages/70/81/e721ac16ab5c64cff2f0c947e77a634621f57fd1705f59d89cccc68628fa/Fiona-1.2.0-cp27-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d834a145bfc3aa6ec15e1e52765a8d5", "sha256": "77cc2e819b9bc427672c652f1b2b23740743b76129db60c209bdc1c091a2f38e" }, "downloads": -1, "filename": "Fiona-1.2.0-cp34-cp34m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3d834a145bfc3aa6ec15e1e52765a8d5", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 179725, "upload_time": "2014-09-02T18:15:37", "upload_time_iso_8601": "2014-09-02T18:15:37.578459Z", "url": "https://files.pythonhosted.org/packages/d0/81/aaa7568850393aa23da457067d80dc44f42c3f4bae7d622bea73f01fd67b/Fiona-1.2.0-cp34-cp34m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b35b1ab72ae04ee0ac934d11ef81988e", "sha256": "f796a2bede13ee6aeece107c37fa6e8af462f365c83203c71aa6f32dd5d82fdc" }, "downloads": -1, "filename": "Fiona-1.2.0.tar.gz", "has_sig": false, "md5_digest": "b35b1ab72ae04ee0ac934d11ef81988e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 267858, "upload_time": "2014-09-02T17:37:38", "upload_time_iso_8601": "2014-09-02T17:37:38.436492Z", "url": "https://files.pythonhosted.org/packages/bc/09/aca92ee56e462c81c0106960471dc9aefdcc8d9cbfa67b225629dcfad01c/Fiona-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "8161efc214413cd31d25e016e29ccaf9", "sha256": "40a788b4ea310c623505b055116ae5d679a9ebcb6b1971b30f79e955202b961d" }, "downloads": -1, "filename": "Fiona-1.3.0.tar.gz", "has_sig": false, "md5_digest": "8161efc214413cd31d25e016e29ccaf9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271604, "upload_time": "2014-09-18T03:53:44", "upload_time_iso_8601": "2014-09-18T03:53:44.068457Z", "url": "https://files.pythonhosted.org/packages/0a/6a/92987008bfa771b0713da3a49c2947816a82e41245dbf3356dfb86eec7fa/Fiona-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "5ab7064aa650b6a7d796d71676b7bdf7", "sha256": "4716bdba4d0901ff976df42ebe02fb4b3e04afa6a5086c0dc2a940c2ddf5225f" }, "downloads": -1, "filename": "Fiona-1.4.0.tar.gz", "has_sig": false, "md5_digest": "5ab7064aa650b6a7d796d71676b7bdf7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 280731, "upload_time": "2014-09-22T19:57:20", "upload_time_iso_8601": "2014-09-22T19:57:20.582944Z", "url": "https://files.pythonhosted.org/packages/44/07/eddf88352652dce2d8f0eeb4080df032e2145d1fba9e71cc15b16c9ded26/Fiona-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "91fc547c61ab3b196c11e6797ab2a2be", "sha256": "ca70e563c2eadf791d744084cb38d57ba6f6ece00b62857d3b1dca3f63d1fd29" }, "downloads": -1, "filename": "Fiona-1.4.1.tar.gz", "has_sig": false, "md5_digest": "91fc547c61ab3b196c11e6797ab2a2be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 280799, "upload_time": "2014-09-30T16:11:59", "upload_time_iso_8601": "2014-09-30T16:11:59.926143Z", "url": "https://files.pythonhosted.org/packages/80/30/553d307e99d0340ea31557ad578142538c2a85a41c3613b107bf1acb76df/Fiona-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "d58272a3508b2b15c7df83b1d745b5c4", "sha256": "1ae39bd40509bbd53bfdb667389fe365c2776af5ee595df968b2fc2c22b42620" }, "downloads": -1, "filename": "Fiona-1.4.2.tar.gz", "has_sig": false, "md5_digest": "d58272a3508b2b15c7df83b1d745b5c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 351786, "upload_time": "2014-10-04T20:24:46", "upload_time_iso_8601": "2014-10-04T20:24:46.675966Z", "url": "https://files.pythonhosted.org/packages/16/de/bef3941f3ac7af703286ce1ab6aa0e4b11d8dfe47ba65e5d23bc5c998142/Fiona-1.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "8b5c300ce711a0bfc95a75475a33acc1", "sha256": "56c6ebeb565a84a826c5e3927b97b33cfdd936c8980cfe969052ce86f45c4547" }, "downloads": -1, "filename": "Fiona-1.4.3.tar.gz", "has_sig": false, "md5_digest": "8b5c300ce711a0bfc95a75475a33acc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 421073, "upload_time": "2014-10-10T22:19:12", "upload_time_iso_8601": "2014-10-10T22:19:12.408679Z", "url": "https://files.pythonhosted.org/packages/cd/36/2496def5cdbfcf369b7a382fdf19f454ccdf38073eea56e112a9b807eebd/Fiona-1.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "ca499e0b40c1ecbee7dd9ee9129d1f07", "sha256": "a2d5514d22d329d58ffa219f0c27e5b314e47e73f22af80a62733e56d52e143a" }, "downloads": -1, "filename": "Fiona-1.4.4.tar.gz", "has_sig": false, "md5_digest": "ca499e0b40c1ecbee7dd9ee9129d1f07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 421181, "upload_time": "2014-10-13T15:07:28", "upload_time_iso_8601": "2014-10-13T15:07:28.534643Z", "url": "https://files.pythonhosted.org/packages/4f/e1/ca954e9f032a9cb7cda366b5f45e420d84fdee85fe0247d9f3481b2b8a66/Fiona-1.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "e1c1285b775020db31a49564061ad90c", "sha256": "8ca07e56efad141a211b3ad8704b49359e4a6b36f264293e9bb5f7c041ca65de" }, "downloads": -1, "filename": "Fiona-1.4.5.tar.gz", "has_sig": false, "md5_digest": "e1c1285b775020db31a49564061ad90c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 424614, "upload_time": "2014-10-19T03:12:03", "upload_time_iso_8601": "2014-10-19T03:12:03.809470Z", "url": "https://files.pythonhosted.org/packages/5b/f7/e3151997059bc1652c45a0d52f1891fcdef7a2cc92d946c4a7e14c14415e/Fiona-1.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.6": [ { "comment_text": "", "digests": { "md5": "92d2b40c389af5d1f101b37d56d62dde", "sha256": "f74b909d9962e4b4c7f6c98a533c138be30e562c162b0859c78eb3c8787d8936" }, "downloads": -1, "filename": "Fiona-1.4.6.tar.gz", "has_sig": false, "md5_digest": "92d2b40c389af5d1f101b37d56d62dde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 424924, "upload_time": "2014-10-21T20:37:03", "upload_time_iso_8601": "2014-10-21T20:37:03.197005Z", "url": "https://files.pythonhosted.org/packages/b3/6f/58df493af4def32099f5f655dfae969045bf6c6021ab63ffa8e0e211e86b/Fiona-1.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.7": [ { "comment_text": "", "digests": { "md5": "c81a5f1c3108c848768edc36ec9d7635", "sha256": "0bbb1742edc0ef8b7bacc26586216614c1352fb6f7ef0f97ae0d048f982251f9" }, "downloads": -1, "filename": "Fiona-1.4.7.tar.gz", "has_sig": false, "md5_digest": "c81a5f1c3108c848768edc36ec9d7635", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 357824, "upload_time": "2014-10-29T18:28:27", "upload_time_iso_8601": "2014-10-29T18:28:27.889448Z", "url": "https://files.pythonhosted.org/packages/b3/9d/674f175f7fd0a778a7c557cd09f297ff379593ec525d1b4740f820c9a409/Fiona-1.4.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.8": [ { "comment_text": "", "digests": { "md5": "f1b8dc4653ed256502730c3cfb0c9588", "sha256": "379cbe19ea767f827e3d6af27dda30f5010e76937d88c2de1262cd0cc8e1d8cd" }, "downloads": -1, "filename": "Fiona-1.4.8-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f1b8dc4653ed256502730c3cfb0c9588", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14477400, "upload_time": "2015-01-23T23:07:55", "upload_time_iso_8601": "2015-01-23T23:07:55.586008Z", "url": "https://files.pythonhosted.org/packages/f5/5f/4280ea60f039565e8b28a377d42b1aaac32148106d446a122443157117bc/Fiona-1.4.8-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "955937db8b267a507bcda0c8562567f8", "sha256": "e084d5f63e20a626420768f19bf691a724794583cf87dd569d196919fa18894e" }, "downloads": -1, "filename": "Fiona-1.4.8-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "955937db8b267a507bcda0c8562567f8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 14476985, "upload_time": "2015-01-23T23:08:41", "upload_time_iso_8601": "2015-01-23T23:08:41.925571Z", "url": "https://files.pythonhosted.org/packages/e4/93/2bdaac78acb2e61360103c57584b70711324bf6e91892c8cf0399e8f3862/Fiona-1.4.8-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fa065f5420e6901570ef87cea3cba35", "sha256": "9c1f3021119c01b07ee3020c33e2dc4c38889bfc0676bc9232159e69029216a7" }, "downloads": -1, "filename": "Fiona-1.4.8.tar.gz", "has_sig": false, "md5_digest": "0fa065f5420e6901570ef87cea3cba35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 359044, "upload_time": "2014-11-02T13:58:36", "upload_time_iso_8601": "2014-11-02T13:58:36.876107Z", "url": "https://files.pythonhosted.org/packages/82/11/edd8b7e6a263ede89aabe304c92e2628a0d2ef2e745071de564dc897da90/Fiona-1.4.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "1ef8f772a71ed4d370a2a2b71050cfed", "sha256": "7d0e5cb02559de71a631097cc32e53e2746133b0331a2a08f65de7cc3f39007c" }, "downloads": -1, "filename": "Fiona-1.5.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "1ef8f772a71ed4d370a2a2b71050cfed", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15096302, "upload_time": "2015-02-04T05:05:17", "upload_time_iso_8601": "2015-02-04T05:05:17.544645Z", "url": "https://files.pythonhosted.org/packages/75/48/f666174d32e1d70682dbbb8e7ee04bd13e948ee2cba40331b9fe49a41c05/Fiona-1.5.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "015a82aa454c3e1c8927feb1e5b182a6", "sha256": "759f7a97651e89d24ee36c8b526baabf999b1329fd141bc254a48055b303e88d" }, "downloads": -1, "filename": "Fiona-1.5.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "015a82aa454c3e1c8927feb1e5b182a6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 15096376, "upload_time": "2015-02-04T05:07:06", "upload_time_iso_8601": "2015-02-04T05:07:06.123131Z", "url": "https://files.pythonhosted.org/packages/5f/79/7bd8c06ddfe43c24c2763433a619bc188039e21acefa9de9b0011b2a35c7/Fiona-1.5.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bc50832321aad0df33d9efba622b6aa", "sha256": "600540bc2dc5fed258f64090cde48a552f377feee39974a18224441e5b3aa23f" }, "downloads": -1, "filename": "Fiona-1.5.0.tar.gz", "has_sig": false, "md5_digest": "3bc50832321aad0df33d9efba622b6aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 890096, "upload_time": "2015-02-04T05:07:16", "upload_time_iso_8601": "2015-02-04T05:07:16.990445Z", "url": "https://files.pythonhosted.org/packages/f1/b2/bc4078e146d2499e40f6f5f842d3f783c95dcfcc841a6ffc965bac4964f4/Fiona-1.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "7560f90cebfdf1599a3946d1cd8c68ca", "sha256": "e355e46b2cd01530326436281ed9be808e61ae4edd90ff314e8d454d14cad8c9" }, "downloads": -1, "filename": "Fiona-1.5.1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "7560f90cebfdf1599a3946d1cd8c68ca", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15096874, "upload_time": "2015-03-19T21:18:59", "upload_time_iso_8601": "2015-03-19T21:18:59.953353Z", "url": "https://files.pythonhosted.org/packages/00/b4/936fe9d1b1e70f468452df58b9d80461daf65e7e1e37d53caa0ce8d95e41/Fiona-1.5.1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a01d288bf07f84c46e5d777ef4c693ab", "sha256": "8b7d830a87b9a0a83f8c420f70bb45a399f0c606c0b7fcdabd3ddcde0b09812a" }, "downloads": -1, "filename": "Fiona-1.5.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a01d288bf07f84c46e5d777ef4c693ab", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 15096924, "upload_time": "2015-03-19T21:20:47", "upload_time_iso_8601": "2015-03-19T21:20:47.604277Z", "url": "https://files.pythonhosted.org/packages/bc/e2/e76c7450a3740149bd476ad67ebf5c1265ad2b7c24937ff15b6cae114812/Fiona-1.5.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e976183d253c33c0c66d67753c52b1a7", "sha256": "2e2469190107dc671b4aa05d5b8bed5c01ffeb9de79525c91129bad76915e095" }, "downloads": -1, "filename": "Fiona-1.5.1.tar.gz", "has_sig": false, "md5_digest": "e976183d253c33c0c66d67753c52b1a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1117361, "upload_time": "2015-03-19T21:20:58", "upload_time_iso_8601": "2015-03-19T21:20:58.594747Z", "url": "https://files.pythonhosted.org/packages/28/4b/5e96b4de86542c805fc4be7093e44243428a2f8492a587a9378764499f3c/Fiona-1.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "8c0896dbc72446e3919bec20dfae69c8", "sha256": "9817ce88c95937fc707be68b03b6a31cc98df25711cf813cf730cad5cfef4e88" }, "downloads": -1, "filename": "Fiona-1.6.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8c0896dbc72446e3919bec20dfae69c8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14903259, "upload_time": "2015-07-21T20:56:27", "upload_time_iso_8601": "2015-07-21T20:56:27.058709Z", "url": "https://files.pythonhosted.org/packages/a3/ba/9e10ea83205ac6f1cbab9a654dc494d9d510d100df9ffa5d71591c36e17c/Fiona-1.6.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fcc5e08dd75ac6e7b004fb77c888a0c8", "sha256": "b51e95687da6120dd1a5f5b02d8bea99caa9ef81d07c748275a5b55a9dadcf71" }, "downloads": -1, "filename": "Fiona-1.6.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "fcc5e08dd75ac6e7b004fb77c888a0c8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 14901226, "upload_time": "2015-07-21T20:59:03", "upload_time_iso_8601": "2015-07-21T20:59:03.844891Z", "url": "https://files.pythonhosted.org/packages/8f/07/bd05fb31f439307d6b403ff7a385b39cabcad65344db09ee34da5617db38/Fiona-1.6.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40f945898c550721db715f69658cf7e9", "sha256": "feca46c640b910a4e7ad03a1e5c969606dff9db0ccee0555197c6fb6d1615f6e" }, "downloads": -1, "filename": "Fiona-1.6.0.tar.gz", "has_sig": false, "md5_digest": "40f945898c550721db715f69658cf7e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 981170, "upload_time": "2015-07-21T20:59:26", "upload_time_iso_8601": "2015-07-21T20:59:26.870334Z", "url": "https://files.pythonhosted.org/packages/9d/94/5ecd6ecc2f9be4996de24c0e491b92e3676e8895a5904eb16f03756e917c/Fiona-1.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "b5e8c46dbcd0dd97e3c5e711d1678076", "sha256": "c0d9e9fc567d3a38ffc6754c86494d8155ce08fa40f83a1de6037d863ffe47ef" }, "downloads": -1, "filename": "Fiona-1.6.1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b5e8c46dbcd0dd97e3c5e711d1678076", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15066955, "upload_time": "2015-08-13T05:13:45", "upload_time_iso_8601": "2015-08-13T05:13:45.644049Z", "url": "https://files.pythonhosted.org/packages/33/22/d02c2f634ad71eef985078ff06d02e29f36f2736430b63de1ee84251f812/Fiona-1.6.1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f6b0d6a2695d54498ad3f57db79bec5", "sha256": "20f209b0a31507b03265107e3687272af044836c637cc372075554e6a6b8a73d" }, "downloads": -1, "filename": "Fiona-1.6.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "2f6b0d6a2695d54498ad3f57db79bec5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 15066362, "upload_time": "2015-08-13T05:15:39", "upload_time_iso_8601": "2015-08-13T05:15:39.431923Z", "url": "https://files.pythonhosted.org/packages/56/0b/cda7ca9c8f3a66455ab837bdc853f1c818058eb22d9bb0c7bdc79e431d70/Fiona-1.6.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a8ff1a1b706af644b39ff77cab5b1c2", "sha256": "ac05e4937a8c320f301fcf3192b934df95d8f50e0755acd0a7e0f1d3a8f32993" }, "downloads": -1, "filename": "Fiona-1.6.1.tar.gz", "has_sig": false, "md5_digest": "1a8ff1a1b706af644b39ff77cab5b1c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1140860, "upload_time": "2015-08-13T05:15:53", "upload_time_iso_8601": "2015-08-13T05:15:53.314384Z", "url": "https://files.pythonhosted.org/packages/d0/46/77c14b0cccd088004dacb93e39e88129256cbdedb2798e93b46999070720/Fiona-1.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "c2af794870435fdd8a4e69753f0674b7", "sha256": "53b5125430c99e662cf68b54c56319497dfcdeddaeb40586912dd1d8d058abe7" }, "downloads": -1, "filename": "Fiona-1.6.2-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c2af794870435fdd8a4e69753f0674b7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15123491, "upload_time": "2015-09-23T04:59:57", "upload_time_iso_8601": "2015-09-23T04:59:57.186426Z", "url": "https://files.pythonhosted.org/packages/fa/32/d013e273798b3a210031579ad9301a06d4970e39bb48b4a71fcc2b5b2f8b/Fiona-1.6.2-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e90b0fc0e8b23aa54ae087106bfc545c", "sha256": "1a0f8d0aba39ec490555c5d1b8faea044a0031d4819552007a878381790333f5" }, "downloads": -1, "filename": "Fiona-1.6.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "e90b0fc0e8b23aa54ae087106bfc545c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 15118482, "upload_time": "2015-09-23T05:01:55", "upload_time_iso_8601": "2015-09-23T05:01:55.302024Z", "url": "https://files.pythonhosted.org/packages/31/13/79e9de0cee3e0f2f4239a8b9d6ed04340490ba8685b6dc82c8cf2c3c964f/Fiona-1.6.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "871674792aa53004c5af5c8bb45e399f", "sha256": "e13ca226ac2df52a1ecf7b23c8c2e6ab2ec167542ce8802a0874674336aa9a28" }, "downloads": -1, "filename": "Fiona-1.6.2.tar.gz", "has_sig": false, "md5_digest": "871674792aa53004c5af5c8bb45e399f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1142849, "upload_time": "2015-09-23T05:02:13", "upload_time_iso_8601": "2015-09-23T05:02:13.927261Z", "url": "https://files.pythonhosted.org/packages/d2/39/d3b3615dbb95d132c1bb1a2a2b2f67b4c1e24d668b64d9d8b76fbca5576b/Fiona-1.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "b1b901a11bcae57d9547fae4db83edc5", "sha256": "39c5758e6916a4344318a5bdb7a15a3bc5313b8b969e0d92b88f5a2a23c2c89e" }, "downloads": -1, "filename": "Fiona-1.6.3-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b1b901a11bcae57d9547fae4db83edc5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15084817, "upload_time": "2015-12-22T22:15:42", "upload_time_iso_8601": "2015-12-22T22:15:42.645312Z", "url": "https://files.pythonhosted.org/packages/69/8f/fc2ffd1d76a0d2ef4bc45e7af908c363632c30755edb4c82e53d24dd826f/Fiona-1.6.3-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5ad69a91225da932d568ff58c94c901", "sha256": "30322f1b58a5d54a60e58f7a6875c7abcdb34b8ff2e7ea4de122cf9f40a64817" }, "downloads": -1, "filename": "Fiona-1.6.3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f5ad69a91225da932d568ff58c94c901", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 15080984, "upload_time": "2015-12-22T22:16:51", "upload_time_iso_8601": "2015-12-22T22:16:51.559039Z", "url": "https://files.pythonhosted.org/packages/94/d7/85b5ff35eaa99f8e198a523bb177e22a050fc4e740692fc81dbf9a517da7/Fiona-1.6.3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45635061b45c45ce4d5ed00b4cc81228", "sha256": "5cb86e59346680d46a4528cfe827590ea8fda4f403c6cee2f73e0536951ad938" }, "downloads": -1, "filename": "Fiona-1.6.3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "45635061b45c45ce4d5ed00b4cc81228", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 15079183, "upload_time": "2016-03-25T16:22:10", "upload_time_iso_8601": "2016-03-25T16:22:10.948653Z", "url": "https://files.pythonhosted.org/packages/f9/47/05df4a13a4b814e5461ff466dbb175979bb25896a230e1cab4aa227dd18a/Fiona-1.6.3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6b70e1a30fc8db597c360e375d186de", "sha256": "313dfff022e7e1ffeffe678ca26be0b833e988738dc2fd9bc1f7d9978c0bb7e7" }, "downloads": -1, "filename": "Fiona-1.6.3.tar.gz", "has_sig": false, "md5_digest": "f6b70e1a30fc8db597c360e375d186de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145499, "upload_time": "2015-12-22T22:17:05", "upload_time_iso_8601": "2015-12-22T22:17:05.214587Z", "url": "https://files.pythonhosted.org/packages/77/8d/5f45ed34acbcd9409a4fb90ddb5d223852557ef756a47b7729fc253db7c7/Fiona-1.6.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.3.post1": [ { "comment_text": "", "digests": { "md5": "dece6ead1181188d6239012cf5933a12", "sha256": "ba7d5a91d55105521d4ec5d2d610375a16fac9c13291c6107b3c738e05d5ef19" }, "downloads": -1, "filename": "Fiona-1.6.3.post1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "dece6ead1181188d6239012cf5933a12", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14798826, "upload_time": "2016-03-28T04:17:19", "upload_time_iso_8601": "2016-03-28T04:17:19.181612Z", "url": "https://files.pythonhosted.org/packages/76/be/f64fdbefae2195d2a89d3b484d18bea342a74d5bf545b9370ec944b43505/Fiona-1.6.3.post1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59c6ffdb88f5329d91dafd71963f7af2", "sha256": "56e5058af56eaa9010f8e3a4746a9b6e0246eada95a8b9399d6077106310a61c" }, "downloads": -1, "filename": "Fiona-1.6.3.post1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "59c6ffdb88f5329d91dafd71963f7af2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 14795028, "upload_time": "2016-03-28T04:18:16", "upload_time_iso_8601": "2016-03-28T04:18:16.506710Z", "url": "https://files.pythonhosted.org/packages/78/26/dcbdfdbf7f593375586364d74d7fe2f65e55b82a914eb2aefd4c754950fb/Fiona-1.6.3.post1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd72aa79ff4e4e580461f1b07ce228dd", "sha256": "f40a79190f2734a857922d0736c6e50e6f98500ec873e4768daa4bb8cc833eb0" }, "downloads": -1, "filename": "Fiona-1.6.3.post1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "bd72aa79ff4e4e580461f1b07ce228dd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14793181, "upload_time": "2016-03-28T04:19:14", "upload_time_iso_8601": "2016-03-28T04:19:14.861954Z", "url": "https://files.pythonhosted.org/packages/76/5b/ec067f25a2cd03c2d1cdef8cb7036169d21d72fd6176a0bce58b0ec34970/Fiona-1.6.3.post1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f68a470455f92cb45d56e4a549a2161c", "sha256": "20cffed8d03f697b316265099dbe1d7b5cddf8cfe6b313b2f4a3f7a92f1c9386" }, "downloads": -1, "filename": "Fiona-1.6.3.post1.tar.gz", "has_sig": false, "md5_digest": "f68a470455f92cb45d56e4a549a2161c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145613, "upload_time": "2016-03-28T04:19:27", "upload_time_iso_8601": "2016-03-28T04:19:27.179249Z", "url": "https://files.pythonhosted.org/packages/dd/ee/d03f143c3a548ab2a9ccc8f755121f825a331f4f9717593c9dbba0642b51/Fiona-1.6.3.post1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "b4b917eaf311c53ac3241cc17954d14c", "sha256": "663ebe82bd502ec943b15d87ddbc1a421bbc5b087137fe295315d1ce8f9f1803" }, "downloads": -1, "filename": "Fiona-1.6.4-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b4b917eaf311c53ac3241cc17954d14c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14823213, "upload_time": "2016-05-05T21:26:21", "upload_time_iso_8601": "2016-05-05T21:26:21.660405Z", "url": "https://files.pythonhosted.org/packages/1d/83/a6edf40ad164948b38354e81418fb350e9cefb3b25ed631bc03f61f46602/Fiona-1.6.4-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d20b023ee329ff954c6625f00981edc5", "sha256": "63a8d890355128718ecd61d64dc40af5752b05429a823fbd86310aedbced9578" }, "downloads": -1, "filename": "Fiona-1.6.4-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d20b023ee329ff954c6625f00981edc5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 14818824, "upload_time": "2016-05-05T21:27:20", "upload_time_iso_8601": "2016-05-05T21:27:20.625602Z", "url": "https://files.pythonhosted.org/packages/3c/1c/76c976a05e711621c12b4439a0c2202a0af8c3567942690f0b30a292f17b/Fiona-1.6.4-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19d26bb38c14ebaa37f6ecbfba101f48", "sha256": "4491063441b4ac4b2aae4b8558c36d619f089306fb40a028fb1f7dad862b881f" }, "downloads": -1, "filename": "Fiona-1.6.4-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "19d26bb38c14ebaa37f6ecbfba101f48", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14818902, "upload_time": "2016-05-05T21:28:18", "upload_time_iso_8601": "2016-05-05T21:28:18.801555Z", "url": "https://files.pythonhosted.org/packages/a1/d9/c1ceea8841a8000d0315f5c2189f68c8a8f81ff9a54f9884f8717980a7b2/Fiona-1.6.4-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2efaee28048021cd1421006e7b58c2e", "sha256": "98b8dd72779af843f25e445e56a463dd1521ec0ef139e8973a9a60ac2c2958ae" }, "downloads": -1, "filename": "Fiona-1.6.4.tar.gz", "has_sig": false, "md5_digest": "c2efaee28048021cd1421006e7b58c2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145834, "upload_time": "2016-05-05T21:28:30", "upload_time_iso_8601": "2016-05-05T21:28:30.910103Z", "url": "https://files.pythonhosted.org/packages/0d/8a/48e73582529c87ebcf51c25a735fed5401b1a00ffc35e306d7eb4d057497/Fiona-1.6.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "dd09e8f7bd91420390201bf22db8b943", "sha256": "2af0cff7afba3092d0e0bdd4b5521098dc3220361a89777b3ab64c591adf8e66" }, "downloads": -1, "filename": "Fiona-1.7.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "dd09e8f7bd91420390201bf22db8b943", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 18244074, "upload_time": "2016-06-14T21:38:22", "upload_time_iso_8601": "2016-06-14T21:38:22.396395Z", "url": "https://files.pythonhosted.org/packages/0a/2a/337b52bc3d2634c03030039848c78a804ea1ca95289c6f7ab68ff5374018/Fiona-1.7.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc0b56cd020ad98356459e0d297b8d10", "sha256": "4eaea609cb602504b0bb9f6726b121f4e419cc9cdb943dbf5b0e6abcdf7b98f3" }, "downloads": -1, "filename": "Fiona-1.7.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "fc0b56cd020ad98356459e0d297b8d10", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 18239626, "upload_time": "2016-06-14T21:39:33", "upload_time_iso_8601": "2016-06-14T21:39:33.680900Z", "url": "https://files.pythonhosted.org/packages/a6/ae/37f6ccea3ff2278b562163d6ae7b7d8724b2fe14c625d726391bb3c168de/Fiona-1.7.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8fa6c619b6d1aabefc9920b6e2a0def1", "sha256": "ebe880922d89cac494b1e04e05d1176fd2febb202e65b834e354496623a10b7b" }, "downloads": -1, "filename": "Fiona-1.7.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8fa6c619b6d1aabefc9920b6e2a0def1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 18239342, "upload_time": "2016-06-14T21:40:51", "upload_time_iso_8601": "2016-06-14T21:40:51.575120Z", "url": "https://files.pythonhosted.org/packages/4e/b4/cde6a82b635a3527d9ad60c3067f61d9c17a8ab319a759f52abe95c55f97/Fiona-1.7.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d513e5f0a806555234cd6b4f3d5f37f4", "sha256": "5fa21d56264e1ac6ff51d54aca0751c2ad1a8cb43e1d31050109079158f45424" }, "downloads": -1, "filename": "Fiona-1.7.0.tar.gz", "has_sig": false, "md5_digest": "d513e5f0a806555234cd6b4f3d5f37f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1359766, "upload_time": "2016-06-14T21:41:11", "upload_time_iso_8601": "2016-06-14T21:41:11.957596Z", "url": "https://files.pythonhosted.org/packages/d7/5a/ed0433c5c93fe5df41b67843af0e73e1bd5590d210978f7c8eb9eb160ba4/Fiona-1.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0.post1": [ { "comment_text": "", "digests": { "md5": "4eebb535be045d53ca271de22954212d", "sha256": "c0df721feb4e20c94462412ca641b6e5229844c9ab46e6e5eb80399ac535648b" }, "downloads": -1, "filename": "Fiona-1.7.0.post1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "4eebb535be045d53ca271de22954212d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 18244262, "upload_time": "2016-06-15T15:30:49", "upload_time_iso_8601": "2016-06-15T15:30:49.114813Z", "url": "https://files.pythonhosted.org/packages/7d/db/e4b794c0042d2854b501aa8357a57a96a9eb34482adc4ddf11a4052da87a/Fiona-1.7.0.post1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null } ], "1.7.0.post2": [ { "comment_text": "", "digests": { "md5": "afbba074c7c077aa04899d33f94bb4df", "sha256": "20ef6eed20cb329e53c00211b7fb36434d7dda4f7bdc90ee4c5d26aca6e491cb" }, "downloads": -1, "filename": "Fiona-1.7.0.post2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "afbba074c7c077aa04899d33f94bb4df", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 18244321, "upload_time": "2016-06-15T16:41:38", "upload_time_iso_8601": "2016-06-15T16:41:38.526264Z", "url": "https://files.pythonhosted.org/packages/54/09/89c561ccf1fd4cec50d95640ff2632fa7b99e490893dcbac54c5d875a4c1/Fiona-1.7.0.post2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e211f33c95b58d833d7d6ae60d6a5f1c", "sha256": "465225dd2c5c0b98f334788a96c0fb0d51dd771ca1b49fac122459340f522486" }, "downloads": -1, "filename": "Fiona-1.7.0.post2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "e211f33c95b58d833d7d6ae60d6a5f1c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 18239877, "upload_time": "2016-06-15T16:56:29", "upload_time_iso_8601": "2016-06-15T16:56:29.718960Z", "url": "https://files.pythonhosted.org/packages/8e/59/b9b94e898d67e9057f4d07f9ff6982feb0008cfd845809e10828dbc68b86/Fiona-1.7.0.post2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24aba4f66bbf97169093ed3f939f06f5", "sha256": "2f13af7b64308faed8dcebb3a4c03bc442fd28ec78aab62609e51ba156282552" }, "downloads": -1, "filename": "Fiona-1.7.0.post2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "24aba4f66bbf97169093ed3f939f06f5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 18239590, "upload_time": "2016-06-15T16:58:25", "upload_time_iso_8601": "2016-06-15T16:58:25.233821Z", "url": "https://files.pythonhosted.org/packages/ae/8c/f1f1b4aa7a6f8b4f2599f11c0b59369cd733ed4e2af9d5f1ed274ce25d22/Fiona-1.7.0.post2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e286a765cf1053e1c08b202928ee9312", "sha256": "cb1ec737457a2fee2ea6f524e5c03a49aa3f9f0c8531961fc5f2794db3406120" }, "downloads": -1, "filename": "Fiona-1.7.0.post2.tar.gz", "has_sig": false, "md5_digest": "e286a765cf1053e1c08b202928ee9312", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1360133, "upload_time": "2016-06-15T17:03:07", "upload_time_iso_8601": "2016-06-15T17:03:07.101191Z", "url": "https://files.pythonhosted.org/packages/14/7e/e8c5de6431d66bbb99e23aa72bf110b9f0157198dfe13e9e792341cfc65d/Fiona-1.7.0.post2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "f8372fd51b963d0b14ff26bcef8ad389", "sha256": "0db46e726b37f9fbd251d6324083e0e6257db62676ed94253d1db31c08c604cd" }, "downloads": -1, "filename": "Fiona-1.7.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f8372fd51b963d0b14ff26bcef8ad389", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 18294925, "upload_time": "2016-11-16T18:32:47", "upload_time_iso_8601": "2016-11-16T18:32:47.270268Z", "url": "https://files.pythonhosted.org/packages/0a/82/76eaa42e1b9389f4f3dbfc0ac6ed26f70c98f63611c9620f88ed78e54963/Fiona-1.7.1-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45dcedafb731f09f9f5fce41e18b0acc", "sha256": "13fea890a0b619d0f9b29f5949b69a5048fb9537ccc3583ec54ba31fcf5476fd" }, "downloads": -1, "filename": "Fiona-1.7.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "45dcedafb731f09f9f5fce41e18b0acc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39502565, "upload_time": "2016-11-16T18:39:14", "upload_time_iso_8601": "2016-11-16T18:39:14.705011Z", "url": "https://files.pythonhosted.org/packages/5e/b8/1c6e5cc9f2b76a809cf5b042c5b244dfcba2cb972c47f8ef77585cd61c24/Fiona-1.7.1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69132cd429e205ede88fc6d187fef31e", "sha256": "e57eb9ab39c891da1d7d8c6fd2c6b2d65023364439c67a6183759cfc74fbe456" }, "downloads": -1, "filename": "Fiona-1.7.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "69132cd429e205ede88fc6d187fef31e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39502546, "upload_time": "2016-11-16T18:45:34", "upload_time_iso_8601": "2016-11-16T18:45:34.658095Z", "url": "https://files.pythonhosted.org/packages/ab/3f/c06418c1463c11b3bb7f47b3a6d2c34856c6b06b1455a6a1b2aee383abbe/Fiona-1.7.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d7b00d6fd0a62a1964c93d1f6c4c45d", "sha256": "90b84951a7f7da578b04e81a9503471aef3152e1a8882bcdd79148d36c6583a3" }, "downloads": -1, "filename": "Fiona-1.7.1-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4d7b00d6fd0a62a1964c93d1f6c4c45d", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 39543575, "upload_time": "2016-11-16T18:51:59", "upload_time_iso_8601": "2016-11-16T18:51:59.754328Z", "url": "https://files.pythonhosted.org/packages/a8/5e/804803f11a4ee5edec99b6dff6957de3b6dccabecc5712f82fed14ce6428/Fiona-1.7.1-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0474d2274c7a55e9a4b53202576e3155", "sha256": "d451a8dee0746e6b4d28891e59d0f050dc25369f986779f001c79e4bde32beef" }, "downloads": -1, "filename": "Fiona-1.7.1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0474d2274c7a55e9a4b53202576e3155", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 18292915, "upload_time": "2016-11-16T18:55:10", "upload_time_iso_8601": "2016-11-16T18:55:10.995930Z", "url": "https://files.pythonhosted.org/packages/6e/c8/07dc536c7ed834fe45f37e5f4122df3ca5268112d17a1fbf6b385fe5b9e9/Fiona-1.7.1-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05e7632d3c5bbdbfa89d0c8b2c947a09", "sha256": "e0555c5d0c431f8dd0232de4c466643fed08b2c43cc13f27bdcf01dc4c489982" }, "downloads": -1, "filename": "Fiona-1.7.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "05e7632d3c5bbdbfa89d0c8b2c947a09", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 39649915, "upload_time": "2016-11-16T19:01:31", "upload_time_iso_8601": "2016-11-16T19:01:31.532321Z", "url": "https://files.pythonhosted.org/packages/77/c7/2cf988ea0d3580ac11027897a9538c10dd158c13cc8fd64a8fa8ff269f7d/Fiona-1.7.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f87b4d36e02ba20aa5d3110fa2aa66fb", "sha256": "0cc11ba3b5e383f6271fcb560310eff150c249d7d2704434f417eea251c670c2" }, "downloads": -1, "filename": "Fiona-1.7.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f87b4d36e02ba20aa5d3110fa2aa66fb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 18293382, "upload_time": "2016-11-16T19:04:36", "upload_time_iso_8601": "2016-11-16T19:04:36.563619Z", "url": "https://files.pythonhosted.org/packages/6b/7b/97be659c295e030ff7bb7d34bb1b325a32dc956288587064516c21558fa5/Fiona-1.7.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f67d03b221cd732db9661d2095076f0", "sha256": "c129563cd66082d31e9cbdabb0c6be93a6d313cb72049625333a7aaa774e245a" }, "downloads": -1, "filename": "Fiona-1.7.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6f67d03b221cd732db9661d2095076f0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39621740, "upload_time": "2016-11-16T19:11:06", "upload_time_iso_8601": "2016-11-16T19:11:06.402651Z", "url": "https://files.pythonhosted.org/packages/11/a0/5af391ac87949d63e4e04c6503337a0d9c7eecc90d6578f00811ac791eb8/Fiona-1.7.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "157bdbc5297cfc4e19188fa590ce00c9", "sha256": "9277ddb24f340c22e12e34557184f82b956aababbeae7cfe4764d3cbc3adbdce" }, "downloads": -1, "filename": "Fiona-1.7.1.tar.gz", "has_sig": false, "md5_digest": "157bdbc5297cfc4e19188fa590ce00c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 620270, "upload_time": "2016-11-16T19:11:24", "upload_time_iso_8601": "2016-11-16T19:11:24.523703Z", "url": "https://files.pythonhosted.org/packages/05/3c/0ea8fe9934c5d35b94c72a98eb83af36f7aecaff9f2cbe2449032ac3b34b/Fiona-1.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.1.post1": [ { "comment_text": "", "digests": { "md5": "133640acb49fe90d00bcc8c690ef1d71", "sha256": "c5a54036cbe36013ffbc791447e8870a59c3cb54d7d6e39ecf3d9a5faf9cf78b" }, "downloads": -1, "filename": "Fiona-1.7.1.post1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "133640acb49fe90d00bcc8c690ef1d71", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17724771, "upload_time": "2016-12-23T20:47:57", "upload_time_iso_8601": "2016-12-23T20:47:57.430584Z", "url": "https://files.pythonhosted.org/packages/5f/45/7c17f59b7c8129eae2bada749683a28f9d66b8a8524820959285730df888/Fiona-1.7.1.post1-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fef5597cb3125c00d6e1288a030b644", "sha256": "04eaabf7b7fde06565c3c115002dec446db00858c4e79712cb52425c155a32d9" }, "downloads": -1, "filename": "Fiona-1.7.1.post1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0fef5597cb3125c00d6e1288a030b644", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39675527, "upload_time": "2016-12-23T20:54:41", "upload_time_iso_8601": "2016-12-23T20:54:41.144335Z", "url": "https://files.pythonhosted.org/packages/58/2e/a0fe37235fd6132c2c77b3f5c04279baf33a8ec8d44aa29eca2c058674e3/Fiona-1.7.1.post1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41448dfa0f26343bc218a1e79b235a01", "sha256": "c757ba597910118b4e9926549d4b53006ad4755ca087752de0d0fe1ae49d5ded" }, "downloads": -1, "filename": "Fiona-1.7.1.post1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "41448dfa0f26343bc218a1e79b235a01", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39675588, "upload_time": "2016-12-23T21:01:16", "upload_time_iso_8601": "2016-12-23T21:01:16.036646Z", "url": "https://files.pythonhosted.org/packages/85/bb/83e0ae6632055f683473337c10e6e2efe220de8c41c2be02a8808191d2cc/Fiona-1.7.1.post1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28fe5d03ae530f13bb72ad8847dd3a73", "sha256": "b96e4d0338aa0f4816cf4b4c238b68b44d4e71befa3786d6b27ce1d386925e1c" }, "downloads": -1, "filename": "Fiona-1.7.1.post1-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "28fe5d03ae530f13bb72ad8847dd3a73", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 39711691, "upload_time": "2016-12-23T21:07:49", "upload_time_iso_8601": "2016-12-23T21:07:49.076573Z", "url": "https://files.pythonhosted.org/packages/79/ec/7693695afcdebcde4a67fac0ceaa33cf334b49e5e5b9e8f4ec9abd14a9d7/Fiona-1.7.1.post1-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3158b03629ef411e04dba7060b7e8f9", "sha256": "6f878a8ea85500484ad1684b2cd1f935fa0480d148ab4be8d2f49aa19c45c5c8" }, "downloads": -1, "filename": "Fiona-1.7.1.post1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a3158b03629ef411e04dba7060b7e8f9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17716076, "upload_time": "2016-12-23T21:10:53", "upload_time_iso_8601": "2016-12-23T21:10:53.128847Z", "url": "https://files.pythonhosted.org/packages/fc/21/c7459cb94127fbb066195a9281ece3edde27b1f1fbd05c8dbc52ed5da9cb/Fiona-1.7.1.post1-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c3deb6a41733f2c14afee4a7479df0a", "sha256": "09712997507b00e150cd79f17392358a6415a8eb6cabc922088d0e73c416a4ad" }, "downloads": -1, "filename": "Fiona-1.7.1.post1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1c3deb6a41733f2c14afee4a7479df0a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 39818064, "upload_time": "2016-12-23T21:17:17", "upload_time_iso_8601": "2016-12-23T21:17:17.062558Z", "url": "https://files.pythonhosted.org/packages/d1/30/2b942b98c32a0da155f06a2d14ba3c6007fa1515ea5d0baa2b55d481c9c6/Fiona-1.7.1.post1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23b2fcf3e1df048caff473b98b0508bb", "sha256": "e5e8c2b4f9e46e9de91f461e7b937afe0021b41e60858f5e7e06af47a83e3302" }, "downloads": -1, "filename": "Fiona-1.7.1.post1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "23b2fcf3e1df048caff473b98b0508bb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17677214, "upload_time": "2016-12-23T21:20:15", "upload_time_iso_8601": "2016-12-23T21:20:15.759079Z", "url": "https://files.pythonhosted.org/packages/d1/e5/b0ffaeef3ea8918a8d4d2808ac5f7869edba895d7350e029aaa07b1cb861/Fiona-1.7.1.post1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a78261a50d3664a7767ce5591346f65", "sha256": "a6d219b973d4e850f98ca4dbb744e66f15a1abfa66bd1c41cc23c2bbc49682e4" }, "downloads": -1, "filename": "Fiona-1.7.1.post1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3a78261a50d3664a7767ce5591346f65", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39789877, "upload_time": "2016-12-23T21:26:45", "upload_time_iso_8601": "2016-12-23T21:26:45.377429Z", "url": "https://files.pythonhosted.org/packages/4e/5e/bf2f623ebfe4dc31a98ff95ed3ae1154b1db3e4b31503dcf7b7f0df9d985/Fiona-1.7.1.post1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8eb127c5b29cade07e7955530115fc81", "sha256": "41b651186e07d577a91e1d22c3f031c1cf6b623014ed3a1dc81024b083957e86" }, "downloads": -1, "filename": "Fiona-1.7.1.post1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "8eb127c5b29cade07e7955530115fc81", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17689208, "upload_time": "2016-12-23T21:29:47", "upload_time_iso_8601": "2016-12-23T21:29:47.128857Z", "url": "https://files.pythonhosted.org/packages/50/ac/4c5f5ef8d13dabbc2354d6d18a8de9309d6d081d847e4e466e20155cc54c/Fiona-1.7.1.post1-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "508724c870b4f1c77631f37fb6e62cfa", "sha256": "a0e04a069baf4507821b353b9848f6afd76979d41a74f3cfb8710efaaba5acb0" }, "downloads": -1, "filename": "Fiona-1.7.1.post1.tar.gz", "has_sig": false, "md5_digest": "508724c870b4f1c77631f37fb6e62cfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 621411, "upload_time": "2017-01-13T07:51:02", "upload_time_iso_8601": "2017-01-13T07:51:02.557916Z", "url": "https://files.pythonhosted.org/packages/ff/5f/9b6c682c4608d4698d43c17c661a7545c5f9d51ce45c0a232f274df84efc/Fiona-1.7.1.post1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.10": [ { "comment_text": "", "digests": { "md5": "9e614bd2ab6fb0802bef50d194616f8e", "sha256": "9fb2826d83b8ea4cfa72c42fe6396a5d15197dae1064ca3ca41876e967b01ee7" }, "downloads": -1, "filename": "Fiona-1.7.10-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9e614bd2ab6fb0802bef50d194616f8e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 50906602, "upload_time": "2017-10-27T03:20:50", "upload_time_iso_8601": "2017-10-27T03:20:50.432199Z", "url": "https://files.pythonhosted.org/packages/63/af/0e1472a71757396a142a419225d7d782c7c2a00e4f454df5997c0c2b3a72/Fiona-1.7.10-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e46f48afc35deb18ca079cae07c1787", "sha256": "7aa5a1451a3b7f5a61aa012996ecaa80f730183b000b87f5cb4f186d5f9215f0" }, "downloads": -1, "filename": "Fiona-1.7.10-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9e46f48afc35deb18ca079cae07c1787", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 50906669, "upload_time": "2017-10-27T03:24:14", "upload_time_iso_8601": "2017-10-27T03:24:14.923292Z", "url": "https://files.pythonhosted.org/packages/41/6e/f6b949c03c3a7c8be3b0ab6b33c95772a0c2a109a68a39bce4043ba2c0fc/Fiona-1.7.10-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "676aec45c675b5a667dc38adf94eaab4", "sha256": "9280303630866e4815619fd3782b2c170ae1882130f922ba5d1adda0937f3fa6" }, "downloads": -1, "filename": "Fiona-1.7.10-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "676aec45c675b5a667dc38adf94eaab4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 51073131, "upload_time": "2017-10-27T03:29:41", "upload_time_iso_8601": "2017-10-27T03:29:41.115154Z", "url": "https://files.pythonhosted.org/packages/77/38/41ca3e56a226b42049edf405cdb9c48463fc5fafedaf967a0a31dd5c3caf/Fiona-1.7.10-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3311e604a21c67b6e1d358d191d000e6", "sha256": "1937780f97e4cdd5b8451b26f37d650c3b18060d63d57ed2a7f8adc7c6d370e0" }, "downloads": -1, "filename": "Fiona-1.7.10-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3311e604a21c67b6e1d358d191d000e6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 51052389, "upload_time": "2017-10-27T03:34:42", "upload_time_iso_8601": "2017-10-27T03:34:42.276594Z", "url": "https://files.pythonhosted.org/packages/72/4f/75c90982c06a4bcd6f49704c28eaff8340e67d207c34d7398c158a566dd9/Fiona-1.7.10-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "133b3e975a932337c77bc6167e6c308e", "sha256": "92ea0020e9db94a5e961bdffd9bb66c5ee49c597a6ac8f8e2ea56c7c476a0d96" }, "downloads": -1, "filename": "Fiona-1.7.10-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "133b3e975a932337c77bc6167e6c308e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 51101037, "upload_time": "2017-10-27T03:39:45", "upload_time_iso_8601": "2017-10-27T03:39:45.115045Z", "url": "https://files.pythonhosted.org/packages/cb/f2/6dcf13a865200434f51cdfbbc8af43dcfe6b6337632243afa2071edff62d/Fiona-1.7.10-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ba502299c5b75a31fb4a9ce4c9283b5", "sha256": "564d2f3485547a6b45e3e322249f02c1cc5a651890a27b3b5bab596a64ae0b67" }, "downloads": -1, "filename": "Fiona-1.7.10.tar.gz", "has_sig": false, "md5_digest": "3ba502299c5b75a31fb4a9ce4c9283b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 702548, "upload_time": "2017-10-27T03:40:06", "upload_time_iso_8601": "2017-10-27T03:40:06.395477Z", "url": "https://files.pythonhosted.org/packages/8a/d2/c0315cbe7cc4994bd2ba2d8e26439e0362fe089686ccd06b9772ca2813ba/Fiona-1.7.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.10.post1": [ { "comment_text": "", "digests": { "md5": "1f7e8a55339aa116696ba9da4ed9097e", "sha256": "d85bc78b953e22b176b043c7c600111ebd6ac31fc8ff2e14eb7e9c351dd1d536" }, "downloads": -1, "filename": "Fiona-1.7.10.post1-cp27-cp27m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1f7e8a55339aa116696ba9da4ed9097e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24754500, "upload_time": "2017-10-31T05:24:28", "upload_time_iso_8601": "2017-10-31T05:24:28.969188Z", "url": "https://files.pythonhosted.org/packages/a5/1b/0c2bbb909df38a9fc7d7f42fca0206bc99d59c997767a9f8fd14a65e8950/Fiona-1.7.10.post1-cp27-cp27m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "277d9b4fc600aa984219ea71c09a0325", "sha256": "031b1b39640f6050bf669d3b36660e894e07a059eadbaf146e264be9add36583" }, "downloads": -1, "filename": "Fiona-1.7.10.post1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "277d9b4fc600aa984219ea71c09a0325", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 50906804, "upload_time": "2017-10-31T05:28:12", "upload_time_iso_8601": "2017-10-31T05:28:12.193665Z", "url": "https://files.pythonhosted.org/packages/54/1e/de44f893b5453372bf6ba2a92c2dde0c1463e2bcae2ff82a7928d37024f2/Fiona-1.7.10.post1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eaaf403aef11de62f548b22995cd81d3", "sha256": "e79d3db7f73f9a204664bde51253bb01bd93da1db331f06b5f7d0d092f458624" }, "downloads": -1, "filename": "Fiona-1.7.10.post1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eaaf403aef11de62f548b22995cd81d3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 50906870, "upload_time": "2017-10-31T05:31:29", "upload_time_iso_8601": "2017-10-31T05:31:29.380741Z", "url": "https://files.pythonhosted.org/packages/05/ec/5afc0f70573d90fe9a6f68c630f9fd99b9b65d47e93ec4c84b509f57bb55/Fiona-1.7.10.post1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d88697c3a16dbf6575140f6103a2de5", "sha256": "d9965629d971836020f6f63f4d14c64715c3f1fefb41fc69da4c60c73878b46b" }, "downloads": -1, "filename": "Fiona-1.7.10.post1-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4d88697c3a16dbf6575140f6103a2de5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24760800, "upload_time": "2017-10-31T05:33:08", "upload_time_iso_8601": "2017-10-31T05:33:08.058913Z", "url": "https://files.pythonhosted.org/packages/4f/10/60dd899c7de04cc37da63044b0fefa685863281ca7a5ab1dd47fa42a5348/Fiona-1.7.10.post1-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c17204f9561f7947719d81c5ce29b612", "sha256": "7fa02feb739d2eb54a5b7a2c2c4e431fad04dfe90293fb233d55396aba1d3772" }, "downloads": -1, "filename": "Fiona-1.7.10.post1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c17204f9561f7947719d81c5ce29b612", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 51073302, "upload_time": "2017-10-31T05:36:23", "upload_time_iso_8601": "2017-10-31T05:36:23.452104Z", "url": "https://files.pythonhosted.org/packages/1d/eb/79219781a1ff6dccd5dcad9cbbf8a786fcb63ada364e1bacf353169662ef/Fiona-1.7.10.post1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1cc06b5166702c663dab7fa167ae855", "sha256": "84b02e942d2ded2fe1a99efe7eaa7f7684ead5a139de8b543d198e43065ef645" }, "downloads": -1, "filename": "Fiona-1.7.10.post1-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d1cc06b5166702c663dab7fa167ae855", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24733381, "upload_time": "2017-10-31T05:38:27", "upload_time_iso_8601": "2017-10-31T05:38:27.284045Z", "url": "https://files.pythonhosted.org/packages/af/b2/1a0cab210aaef4298a6877071439119feb73d9cef1a5cde2f4037b53964c/Fiona-1.7.10.post1-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3be5100ed464fc3370b503226097b366", "sha256": "7fd7f103e68cab390cb7e728740e8fb6a245f5f9954fe82353aa74bd7a73aa37" }, "downloads": -1, "filename": "Fiona-1.7.10.post1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3be5100ed464fc3370b503226097b366", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 51052625, "upload_time": "2017-10-31T05:42:03", "upload_time_iso_8601": "2017-10-31T05:42:03.885200Z", "url": "https://files.pythonhosted.org/packages/82/ec/6498eb47a6808943196b601a48f23031a094b37125ddc02028a81496c3ad/Fiona-1.7.10.post1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3dab01410b6cd431cc6269d29bba1bc9", "sha256": "99cbd9a56c46bbcd37868131256cc8757ed611193f6b5d7924069b522621cf3c" }, "downloads": -1, "filename": "Fiona-1.7.10.post1-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3dab01410b6cd431cc6269d29bba1bc9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24730949, "upload_time": "2017-10-31T05:43:42", "upload_time_iso_8601": "2017-10-31T05:43:42.671149Z", "url": "https://files.pythonhosted.org/packages/67/d2/455949f9f73befa5cf713fe8ffa7a258f5f56a9425af9009218f000085c4/Fiona-1.7.10.post1-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06fdeaace9613be4a9cdf6c73b28da3f", "sha256": "7882bbdd85cdff5640054fdf6026b423399039e2a8762cf624160a2e752939d5" }, "downloads": -1, "filename": "Fiona-1.7.10.post1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "06fdeaace9613be4a9cdf6c73b28da3f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 51101236, "upload_time": "2017-10-31T05:46:57", "upload_time_iso_8601": "2017-10-31T05:46:57.744256Z", "url": "https://files.pythonhosted.org/packages/f8/bc/3864e05267c3aaf0c2d28c8b1321ba955ec9683864f3ccd3823ba48da102/Fiona-1.7.10.post1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3b83c983f944be7927913ba2dab0216", "sha256": "fc4c8996be3131f36c791d66273317d38b72b19dc24c2afc332fd734752eb7a8" }, "downloads": -1, "filename": "Fiona-1.7.10.post1.tar.gz", "has_sig": false, "md5_digest": "a3b83c983f944be7927913ba2dab0216", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 702749, "upload_time": "2017-10-31T05:47:08", "upload_time_iso_8601": "2017-10-31T05:47:08.130967Z", "url": "https://files.pythonhosted.org/packages/37/d1/3401eadcd69cbae4571b7ed8473bc634a2dbc7d8565c270cf4c5f03bee70/Fiona-1.7.10.post1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.11": [ { "comment_text": "", "digests": { "md5": "ca1530350dbf8736e4e788f35646274a", "sha256": "c9becd2b450599ed59bd21418325ea0a388690822765de6ce2813049a53cd50e" }, "downloads": -1, "filename": "Fiona-1.7.11-cp27-cp27m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ca1530350dbf8736e4e788f35646274a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 18807370, "upload_time": "2017-12-14T17:05:52", "upload_time_iso_8601": "2017-12-14T17:05:52.968723Z", "url": "https://files.pythonhosted.org/packages/94/32/85521261ca8c9a88a91abd0deacd9c7a56bfee10ba3b6a79c647a0d0e77c/Fiona-1.7.11-cp27-cp27m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7a4a2b4954b6b7ea817bf4d3cf447a1", "sha256": "7e438a7f9e63ecac81074136cb821a76b8c9e160bd5f03fb4fea78651f78036f" }, "downloads": -1, "filename": "Fiona-1.7.11-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a7a4a2b4954b6b7ea817bf4d3cf447a1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13249087, "upload_time": "2017-12-14T17:06:50", "upload_time_iso_8601": "2017-12-14T17:06:50.069679Z", "url": "https://files.pythonhosted.org/packages/ed/82/d6b39327cb215e7227410f20512afacb2c648b8d460d3323adbb1c11ff07/Fiona-1.7.11-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "750d3fa170f305921da16de92606d687", "sha256": "c2d9afb8b6cdc80b7e6e77872041dc61fb96a938007a6ee51703893d93ab76a6" }, "downloads": -1, "filename": "Fiona-1.7.11-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "750d3fa170f305921da16de92606d687", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13249102, "upload_time": "2017-12-14T17:07:52", "upload_time_iso_8601": "2017-12-14T17:07:52.737166Z", "url": "https://files.pythonhosted.org/packages/91/d0/65a548dd4b3f79ddbd3948d03f0b919047ca35270032a192f2c14b282b2f/Fiona-1.7.11-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "360de650607edcc5e3f0d7a8f821bb38", "sha256": "51b48f04038303d4aaccda5d53e13c5b5cb0e7232b9a0f21d588be9ec964447b" }, "downloads": -1, "filename": "Fiona-1.7.11-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "360de650607edcc5e3f0d7a8f821bb38", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 18811930, "upload_time": "2017-12-14T17:09:13", "upload_time_iso_8601": "2017-12-14T17:09:13.108320Z", "url": "https://files.pythonhosted.org/packages/3c/04/9b6d90c1f921443d9fc28d8b04358ba21b19bf3e03df05e099ad443d0031/Fiona-1.7.11-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ef958d526c760c586d64902d28ff922", "sha256": "9ce609746cd70dfe071db966d8c08788724eb8878b64a06db71775a5bb1e6937" }, "downloads": -1, "filename": "Fiona-1.7.11-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5ef958d526c760c586d64902d28ff922", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13412603, "upload_time": "2017-12-14T17:10:14", "upload_time_iso_8601": "2017-12-14T17:10:14.436445Z", "url": "https://files.pythonhosted.org/packages/40/38/6717f6f776182062b7cf5c0a1174b6cb0d0e1954e32fd5d5061423d2c8bb/Fiona-1.7.11-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4f32116d0805970b46dbf2bc5aa7411", "sha256": "305b893dbf06962e77addc7157e217817e352b764c248d2557ea41745406d754" }, "downloads": -1, "filename": "Fiona-1.7.11-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b4f32116d0805970b46dbf2bc5aa7411", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 18784500, "upload_time": "2017-12-14T17:11:36", "upload_time_iso_8601": "2017-12-14T17:11:36.194782Z", "url": "https://files.pythonhosted.org/packages/9e/8a/85ce6659503696332ea4a5123475af36b80bb0372e02e2d3115073b8ca6d/Fiona-1.7.11-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2eb838a3e9e79a43ffbe037f4f7e3858", "sha256": "1d8a9d35cf951008477c69ea9539a678f90d3b775dad9eb08023d9e3a9137afa" }, "downloads": -1, "filename": "Fiona-1.7.11-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2eb838a3e9e79a43ffbe037f4f7e3858", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13392464, "upload_time": "2017-12-14T17:12:37", "upload_time_iso_8601": "2017-12-14T17:12:37.738661Z", "url": "https://files.pythonhosted.org/packages/21/ca/6ea8a025abbb4a21615e5d52fa5ecc08f46e5e04c9a35f27795d3c377b07/Fiona-1.7.11-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34f6734af3365f066110c9a15dfb5626", "sha256": "c6e236950444d8efe0a78a1c17f31941c7930ef72f6026e5e6a15ef9601e8c0b" }, "downloads": -1, "filename": "Fiona-1.7.11-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "34f6734af3365f066110c9a15dfb5626", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18782558, "upload_time": "2017-12-14T17:13:50", "upload_time_iso_8601": "2017-12-14T17:13:50.729480Z", "url": "https://files.pythonhosted.org/packages/e3/72/421a7b99d8bf8b87349b86ebb2d46df061106a6aa129cb6a426e21c85c79/Fiona-1.7.11-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c3b5d259765fb237814b1eb7e716bf7", "sha256": "0079db16bb6d826cb43f841bdce452c0d68c381a9ec0a44a21e78982bc421538" }, "downloads": -1, "filename": "Fiona-1.7.11-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5c3b5d259765fb237814b1eb7e716bf7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13444097, "upload_time": "2017-12-14T17:14:50", "upload_time_iso_8601": "2017-12-14T17:14:50.784436Z", "url": "https://files.pythonhosted.org/packages/ca/86/3874490dbb0e64378f72ccd652d84b121fcef841240a4f3bf290403edfda/Fiona-1.7.11-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "495046e44f034104f5e733bf32502f40", "sha256": "5e9c68ea71e9d79fcfb68c9a101c0b133301e233c9bcca7b7c65f33cc7636ef5" }, "downloads": -1, "filename": "Fiona-1.7.11.tar.gz", "has_sig": false, "md5_digest": "495046e44f034104f5e733bf32502f40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 713782, "upload_time": "2017-12-14T17:14:59", "upload_time_iso_8601": "2017-12-14T17:14:59.806014Z", "url": "https://files.pythonhosted.org/packages/a4/07/5413adcbf3e6398bb411d711ba957b6940d4cdb835277613ff41904bdfcc/Fiona-1.7.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.11.post1": [ { "comment_text": "", "digests": { "md5": "72dacfeffb3610c2e0fd3946444af5ae", "sha256": "2616d3847167ad09ef2b8fd5f17f9aad2f8c023c19077dab28e231834c0a895c" }, "downloads": -1, "filename": "Fiona-1.7.11.post1-cp27-cp27m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "72dacfeffb3610c2e0fd3946444af5ae", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 18807639, "upload_time": "2018-02-12T20:42:15", "upload_time_iso_8601": "2018-02-12T20:42:15.142066Z", "url": "https://files.pythonhosted.org/packages/9a/b8/5c31dd3e5d0606b0b6cdc20bfaf2c4e481f6d9d75951870587b7027720ed/Fiona-1.7.11.post1-cp27-cp27m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f5613ff2e728b14e412a5f04e5aefe0", "sha256": "63f0726b986cb4ee11bc17e6f239e80083fbc4cf1f45ee3c1bfa70c526547f0f" }, "downloads": -1, "filename": "Fiona-1.7.11.post1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4f5613ff2e728b14e412a5f04e5aefe0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13545823, "upload_time": "2018-02-12T20:43:14", "upload_time_iso_8601": "2018-02-12T20:43:14.006812Z", "url": "https://files.pythonhosted.org/packages/32/93/866031de0b0997937007f34b60aba37eab4a70100f66c6a1a08a5b1d6065/Fiona-1.7.11.post1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac7a168f8061778ff63bc12894f1011f", "sha256": "39a59bb166c86f8a74c554d72726d5c850ca445f1e088beaac232464de6e2d5e" }, "downloads": -1, "filename": "Fiona-1.7.11.post1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ac7a168f8061778ff63bc12894f1011f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13545865, "upload_time": "2018-02-12T20:44:05", "upload_time_iso_8601": "2018-02-12T20:44:05.339733Z", "url": "https://files.pythonhosted.org/packages/fb/0f/57c9733480e365189328064116d0c8ae10351a6d000d9a0c07aad239f016/Fiona-1.7.11.post1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f6bc87d61c26dc34777c97031dd54ff", "sha256": "d25d080c42d49a6d81d2913647a5fd19f639915cbeac7bb49111028cdad80f26" }, "downloads": -1, "filename": "Fiona-1.7.11.post1-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4f6bc87d61c26dc34777c97031dd54ff", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 18812205, "upload_time": "2018-02-12T20:45:15", "upload_time_iso_8601": "2018-02-12T20:45:15.768347Z", "url": "https://files.pythonhosted.org/packages/51/61/9ff2f3794a0557290aeba253f042c6ff25b42644b7bbbb660f07af853898/Fiona-1.7.11.post1-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "446911e8e43e7983c3b3c3cfc77e3341", "sha256": "cc552dc0b098905cd6722b5d4edf1bf51fd6f12f2f40ce0dd50181e9537004b0" }, "downloads": -1, "filename": "Fiona-1.7.11.post1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "446911e8e43e7983c3b3c3cfc77e3341", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13709359, "upload_time": "2018-02-12T20:46:08", "upload_time_iso_8601": "2018-02-12T20:46:08.735532Z", "url": "https://files.pythonhosted.org/packages/9e/d3/290a978cde6f26ec273ec431d1997b5dc1eb576f48c674037a0ed833fd49/Fiona-1.7.11.post1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9932ed64afb58a6213f3ab3207e2b78", "sha256": "1e812d80744f6cd8c4a87c1a36b704c0e0e587f42cbb417ff480dc8dfde27f78" }, "downloads": -1, "filename": "Fiona-1.7.11.post1-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e9932ed64afb58a6213f3ab3207e2b78", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 18784782, "upload_time": "2018-02-12T20:47:16", "upload_time_iso_8601": "2018-02-12T20:47:16.968765Z", "url": "https://files.pythonhosted.org/packages/18/cb/a6c9c4692ab485ae9894265bae2eb4745abb546a148e883c5e2b50787510/Fiona-1.7.11.post1-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "117da4c733897898df082234c954655b", "sha256": "fc35f8ebc0b47afcfe4c4a819e68689832d979d2413933730d973da414a6102d" }, "downloads": -1, "filename": "Fiona-1.7.11.post1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "117da4c733897898df082234c954655b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13689141, "upload_time": "2018-02-12T20:48:09", "upload_time_iso_8601": "2018-02-12T20:48:09.622420Z", "url": "https://files.pythonhosted.org/packages/59/99/a5852841c3e5bdd467e02c7b8c4ad9739624dcce020141bc9da516c336c3/Fiona-1.7.11.post1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "846c1b469261fffedd85638b5ef22c84", "sha256": "5ef0e44a3827c6c114b06e03b643f567bf51ff585b2282fd04ad1b0ec8e474f6" }, "downloads": -1, "filename": "Fiona-1.7.11.post1-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "846c1b469261fffedd85638b5ef22c84", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18782840, "upload_time": "2018-02-12T20:49:21", "upload_time_iso_8601": "2018-02-12T20:49:21.104921Z", "url": "https://files.pythonhosted.org/packages/2e/cb/7bf2256dda6c768224e59d0f5016982e57cf6ccb3e4377ed542367e7ec4e/Fiona-1.7.11.post1-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f19eee85b7dd52d0d676650c9a43bae", "sha256": "3c95acdecdc65b6e2920eb71cc92676826efd2f891eeb3b027745bf72e3137c7" }, "downloads": -1, "filename": "Fiona-1.7.11.post1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3f19eee85b7dd52d0d676650c9a43bae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13740888, "upload_time": "2018-02-12T20:50:21", "upload_time_iso_8601": "2018-02-12T20:50:21.074040Z", "url": "https://files.pythonhosted.org/packages/0e/9a/fd5763608dbd6f0d9f51f048d6aee88abe10ab282f8ec00630e0c58deb86/Fiona-1.7.11.post1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "409d706679ffc9fca47c688d43066416", "sha256": "35df044fa805e6b420450f5d4281fc0edf96e1da0545c31032045cd3cfad3abf" }, "downloads": -1, "filename": "Fiona-1.7.11.post1.tar.gz", "has_sig": false, "md5_digest": "409d706679ffc9fca47c688d43066416", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 718172, "upload_time": "2018-02-12T20:50:27", "upload_time_iso_8601": "2018-02-12T20:50:27.954937Z", "url": "https://files.pythonhosted.org/packages/67/5f/bb390a10c9c3722c69bef7df1e721c604a204106ac4398b534a2018e4901/Fiona-1.7.11.post1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.11.post2": [ { "comment_text": "", "digests": { "md5": "7c7faaacfb7e2ebc20ba457c6dcc51b9", "sha256": "7b96b395bf55bab377e1651e6dc53b9bbdfee3fc92d53d778869a1209c3a60fc" }, "downloads": -1, "filename": "Fiona-1.7.11.post2-cp27-cp27m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7c7faaacfb7e2ebc20ba457c6dcc51b9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20067707, "upload_time": "2018-04-30T17:41:25", "upload_time_iso_8601": "2018-04-30T17:41:25.196678Z", "url": "https://files.pythonhosted.org/packages/3e/48/993f8bc085074cc7cfdb61f97f25e34990f04d84aaa54465751430f51121/Fiona-1.7.11.post2-cp27-cp27m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd50086e2ea43e6eb2169dc9504d5ab0", "sha256": "37f70422b7fdc46eeece9462cdbba099a81ca5c2de1103cb235b6ba9576a1f48" }, "downloads": -1, "filename": "Fiona-1.7.11.post2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fd50086e2ea43e6eb2169dc9504d5ab0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15534213, "upload_time": "2018-04-30T17:42:21", "upload_time_iso_8601": "2018-04-30T17:42:21.749080Z", "url": "https://files.pythonhosted.org/packages/e7/ef/4d0a58fb6ac93bd258c14cf70e8972141f92adb6b46b82b5b3093296f0e4/Fiona-1.7.11.post2-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d3213fd0a7f3f19653cb8c6454c1190", "sha256": "f7e9e0b777c4dddc24c76c49d650a42601016dd31413169e2db0b889ad9b8f47" }, "downloads": -1, "filename": "Fiona-1.7.11.post2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8d3213fd0a7f3f19653cb8c6454c1190", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15534268, "upload_time": "2018-04-30T17:43:17", "upload_time_iso_8601": "2018-04-30T17:43:17.892029Z", "url": "https://files.pythonhosted.org/packages/ce/eb/ce01e73651b23fa7df3fb4ea78295a5cd7736270b9af0b6b4e42ed76d7ef/Fiona-1.7.11.post2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5871e8ec48d22eb591583c1ce7ebf6eb", "sha256": "1b98785f48571a8cd09f6afab3ef2fe80ae20f3659475dd0c5a69aeefe218d31" }, "downloads": -1, "filename": "Fiona-1.7.11.post2-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5871e8ec48d22eb591583c1ce7ebf6eb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20067654, "upload_time": "2018-04-30T17:44:29", "upload_time_iso_8601": "2018-04-30T17:44:29.397637Z", "url": "https://files.pythonhosted.org/packages/14/7b/b3e228b1e30137a04613e465ab4b9865c8135eca2b20066d4ebfb75327a9/Fiona-1.7.11.post2-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6bb0bee82f6a2479c7a2871d5aeef0fc", "sha256": "eb45c0d2caac3f08c8fdeccd87daf9245c99db1eceb40f1e6bed18bff430c692" }, "downloads": -1, "filename": "Fiona-1.7.11.post2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6bb0bee82f6a2479c7a2871d5aeef0fc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 15687447, "upload_time": "2018-04-30T17:45:26", "upload_time_iso_8601": "2018-04-30T17:45:26.121359Z", "url": "https://files.pythonhosted.org/packages/a4/a9/31d2479bf4818f6f6c6b420fb2facbc6d8a279054cb260d60e3c3019c2b7/Fiona-1.7.11.post2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7699e9902238d01bfb2933141eabcb3c", "sha256": "bde54f5e2fff6834dbc2b8457d12cf2f654aed5a3d2e5b0f86e0edde21f0ee53" }, "downloads": -1, "filename": "Fiona-1.7.11.post2-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7699e9902238d01bfb2933141eabcb3c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 20056792, "upload_time": "2018-04-30T17:46:37", "upload_time_iso_8601": "2018-04-30T17:46:37.365855Z", "url": "https://files.pythonhosted.org/packages/6a/74/1fb2d8d5d542e8ff49bd67278018e812cc9b935391dce567deb6ebdfd902/Fiona-1.7.11.post2-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c6ff0c4a45e4b6f75dac3ebbc5cd4fd", "sha256": "a54c7a7a82f6e28ada7998800ad635f9c21df88e14d52fd5a7c4bcc1fa02e16b" }, "downloads": -1, "filename": "Fiona-1.7.11.post2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7c6ff0c4a45e4b6f75dac3ebbc5cd4fd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 15664585, "upload_time": "2018-04-30T17:47:34", "upload_time_iso_8601": "2018-04-30T17:47:34.134923Z", "url": "https://files.pythonhosted.org/packages/ef/84/f70121bc12cc1bfdd02a876b837bb92e8a446ebbed9dc6c183f8dc524494/Fiona-1.7.11.post2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f781456557f2739188332dea47af2435", "sha256": "65f1f3e56eff335861548ce4b40a8e72b19354e872991b9dd183ac8029388f88" }, "downloads": -1, "filename": "Fiona-1.7.11.post2-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f781456557f2739188332dea47af2435", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 20081793, "upload_time": "2018-04-30T17:48:45", "upload_time_iso_8601": "2018-04-30T17:48:45.589045Z", "url": "https://files.pythonhosted.org/packages/8c/8f/046bc45e6f70a17f65cf6cd6af402885024adf4332d63fac718b63800484/Fiona-1.7.11.post2-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "632772b401145076f82aafba19a614c2", "sha256": "b1c44f002826747ab6d6099aa8dc426a418bf34d4b2acdd326846860c4fc5f6d" }, "downloads": -1, "filename": "Fiona-1.7.11.post2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "632772b401145076f82aafba19a614c2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15717563, "upload_time": "2018-04-30T17:49:42", "upload_time_iso_8601": "2018-04-30T17:49:42.302322Z", "url": "https://files.pythonhosted.org/packages/cc/d9/6cd92c169f3f9837892eff6e0f4be310d6b93e3ac4125ff88d2a50c5fe0c/Fiona-1.7.11.post2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "731e0d85071a6371604325f2ce366fd8", "sha256": "5804c6f5f7e02cf1f95ca404c22653dd47d64e4496a0ba7af5a2d6b2051b872a" }, "downloads": -1, "filename": "Fiona-1.7.11.post2.tar.gz", "has_sig": false, "md5_digest": "731e0d85071a6371604325f2ce366fd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 726936, "upload_time": "2018-04-30T17:49:47", "upload_time_iso_8601": "2018-04-30T17:49:47.810361Z", "url": "https://files.pythonhosted.org/packages/31/af/ce192d1ed4b6fec277719c42c91af62872b5d5f8e659e41ce16504243f51/Fiona-1.7.11.post2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.12": [ { "comment_text": "", "digests": { "md5": "9d9fde029b3ecac9b66cddf9ad81880d", "sha256": "45a9029dfddb0a0deaa35dbad3ae0c436d9c306094337fd26d81e52a071af839" }, "downloads": -1, "filename": "Fiona-1.7.12-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9d9fde029b3ecac9b66cddf9ad81880d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 21564968, "upload_time": "2018-06-11T23:37:45", "upload_time_iso_8601": "2018-06-11T23:37:45.777261Z", "url": "https://files.pythonhosted.org/packages/07/b7/5e70196d34c2dee6a7ce794b62fcf17e1ec3dfbc4ce828ed887ebd57f286/Fiona-1.7.12-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66b3e9a070251b4078a52efde204a51b", "sha256": "22ecdac12c81eee43e1f04e68e51e5f91ed5591f1724e41a615272cd385a6ae0" }, "downloads": -1, "filename": "Fiona-1.7.12-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "66b3e9a070251b4078a52efde204a51b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15536960, "upload_time": "2018-06-11T23:38:49", "upload_time_iso_8601": "2018-06-11T23:38:49.324939Z", "url": "https://files.pythonhosted.org/packages/cc/a1/46264d690950d571f900f1d113d04331c40edbeec54d9dba569da0fbd06b/Fiona-1.7.12-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cefa0d82daeba5fd06ff23b10c4953a3", "sha256": "071b3d56c833bc47c43f41f6740519b68ce3540e06897aeb3ffdc173fab18923" }, "downloads": -1, "filename": "Fiona-1.7.12-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cefa0d82daeba5fd06ff23b10c4953a3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15536966, "upload_time": "2018-06-11T23:39:51", "upload_time_iso_8601": "2018-06-11T23:39:51.368797Z", "url": "https://files.pythonhosted.org/packages/2e/ea/128099e0c9efa35eb80c8ca957d05255174cea305cf657de12ea7bb83cd4/Fiona-1.7.12-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4d5e7fb276cfc85ea8f251eb1f2046c", "sha256": "ef8f5fac60df7f8eb200ad140340348c954b5b394bc8dbd7e05c48c37b10e90e" }, "downloads": -1, "filename": "Fiona-1.7.12-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e4d5e7fb276cfc85ea8f251eb1f2046c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 21564435, "upload_time": "2018-06-11T23:41:12", "upload_time_iso_8601": "2018-06-11T23:41:12.429154Z", "url": "https://files.pythonhosted.org/packages/75/93/c19e11459ec9f1c635412c642e0e40cfa5ac7f4614f10dbcf41fb11ea32a/Fiona-1.7.12-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50049afb575b1139f828f3abb2035dd0", "sha256": "033aa987b24c8886991165fb3560c4d41881094711cd65920a708b88622f7716" }, "downloads": -1, "filename": "Fiona-1.7.12-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "50049afb575b1139f828f3abb2035dd0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 15691210, "upload_time": "2018-06-11T23:42:12", "upload_time_iso_8601": "2018-06-11T23:42:12.528088Z", "url": "https://files.pythonhosted.org/packages/ce/62/1c61713f1eb404f6a76ad9ffaaf71835be9092f87bd67f9ad260cb74435b/Fiona-1.7.12-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4e916041d21de62615b953365ecaba9", "sha256": "5eadbaaa59c8546a14f59767b9a10aa45be1c80b761371449bcc638bd18773cd" }, "downloads": -1, "filename": "Fiona-1.7.12-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c4e916041d21de62615b953365ecaba9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 21553656, "upload_time": "2018-06-11T23:43:30", "upload_time_iso_8601": "2018-06-11T23:43:30.275966Z", "url": "https://files.pythonhosted.org/packages/04/3c/819be4265244e65d88bf4e5e263bbdd8e7bc8b33e37bf68bb167cda6b247/Fiona-1.7.12-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac94f6eb6c9865b1caf49ddb11be02d6", "sha256": "7a9feeb76976224afaae7befd6a26ea50513de4b87c6de46620170c5bda7737d" }, "downloads": -1, "filename": "Fiona-1.7.12-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ac94f6eb6c9865b1caf49ddb11be02d6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 15665805, "upload_time": "2018-06-11T23:44:37", "upload_time_iso_8601": "2018-06-11T23:44:37.225845Z", "url": "https://files.pythonhosted.org/packages/70/f2/86c3000f4b02d078ebc212efb9eb07cebdfc3998a9cf023459e917819e07/Fiona-1.7.12-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "041a05e7c402e645db2b1993e1a7e7f3", "sha256": "41220cc6c3c15b104a4a4aa480e05f6ace7baa0e62f1ce01744841fa3dc8eb60" }, "downloads": -1, "filename": "Fiona-1.7.12-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "041a05e7c402e645db2b1993e1a7e7f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21578696, "upload_time": "2018-06-11T23:46:00", "upload_time_iso_8601": "2018-06-11T23:46:00.873795Z", "url": "https://files.pythonhosted.org/packages/f2/96/3ecc771702fe614a67ad1e2f8e973c250f4d9c3c4886d3b5c022e0a31afe/Fiona-1.7.12-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4ff4cff356c4e0805d1971b32121a11", "sha256": "93087bf8b1d8caa3101abafaed5e1b9f8a0d136d79ebd56b02e173663d29508f" }, "downloads": -1, "filename": "Fiona-1.7.12-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f4ff4cff356c4e0805d1971b32121a11", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15712140, "upload_time": "2018-06-11T23:46:57", "upload_time_iso_8601": "2018-06-11T23:46:57.608640Z", "url": "https://files.pythonhosted.org/packages/e9/2e/007b103f386f77b9b18999d9f1838e50051580358cb613c5a95824d9bab6/Fiona-1.7.12-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ebd82f2ccb1776bd9e8bea228d4df9e", "sha256": "8b54eb8422d7c502bb7776b184018186bede1a489cf438a7a47f992ade6a0e51" }, "downloads": -1, "filename": "Fiona-1.7.12.tar.gz", "has_sig": false, "md5_digest": "4ebd82f2ccb1776bd9e8bea228d4df9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 727409, "upload_time": "2018-06-11T23:47:06", "upload_time_iso_8601": "2018-06-11T23:47:06.468225Z", "url": "https://files.pythonhosted.org/packages/24/b8/32514641b6fb3525adc1c4170bbc96bb02c5bc9044e7d97d34a8504e84c0/Fiona-1.7.12.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.13": [ { "comment_text": "", "digests": { "md5": "624374969152103ceac0b9247638b22a", "sha256": "6629d151a64d960ca44832ab9d148ee47a2107a122a21ece74d52ed464f07d71" }, "downloads": -1, "filename": "Fiona-1.7.13-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "624374969152103ceac0b9247638b22a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 21597538, "upload_time": "2018-07-17T18:33:30", "upload_time_iso_8601": "2018-07-17T18:33:30.505363Z", "url": "https://files.pythonhosted.org/packages/df/56/939cf96b833e654041ebdc77491381d5c26db9dfd4a94c7ded272a73eb09/Fiona-1.7.13-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a237e6b8191a9bba6bd2b77696243c86", "sha256": "6342e5ebd24c6dcd8c5ba114796c874fe14b3828f16dc47624158b1f159043eb" }, "downloads": -1, "filename": "Fiona-1.7.13-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a237e6b8191a9bba6bd2b77696243c86", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15580395, "upload_time": "2018-07-17T18:34:28", "upload_time_iso_8601": "2018-07-17T18:34:28.753277Z", "url": "https://files.pythonhosted.org/packages/ef/ce/d2652b43fec9a1b804ca1e7697bb68786684d005f60295306e65fb8367f2/Fiona-1.7.13-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e0b35ec7bdef25797d5176ac9928cd7", "sha256": "82dd9bc2eaf841b7cc84904c36f86daa32a3303f40f09a66c736d7dbab3e43fd" }, "downloads": -1, "filename": "Fiona-1.7.13-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8e0b35ec7bdef25797d5176ac9928cd7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15580395, "upload_time": "2018-07-17T18:35:25", "upload_time_iso_8601": "2018-07-17T18:35:25.454053Z", "url": "https://files.pythonhosted.org/packages/25/52/5f8b88670cb165ab74309c0a953fde5c3aba258383eda1e59b799abe7b8d/Fiona-1.7.13-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c676ca35992440a691491cc47e55931", "sha256": "08e2d84b2f96103ec905765ccbdbc5a497c0d419168121c354e6f90b9d7e144b" }, "downloads": -1, "filename": "Fiona-1.7.13-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2c676ca35992440a691491cc47e55931", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 21585858, "upload_time": "2018-07-17T18:36:42", "upload_time_iso_8601": "2018-07-17T18:36:42.942926Z", "url": "https://files.pythonhosted.org/packages/a5/6e/b464e58e9ba148d985480d8cc7a632dbc6947b200ffea6cdb911cbb563a3/Fiona-1.7.13-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1cf488c6aca2df589f8d5deb5a698eab", "sha256": "b74e617379ea4365e56ce041c4fb421bf588688222ba7e657192402a49eb29ba" }, "downloads": -1, "filename": "Fiona-1.7.13-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1cf488c6aca2df589f8d5deb5a698eab", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 15732531, "upload_time": "2018-07-17T18:37:39", "upload_time_iso_8601": "2018-07-17T18:37:39.789409Z", "url": "https://files.pythonhosted.org/packages/06/98/6cfa5fb6ac52e9ff6141e98e2380677aa81af99836dccf6fc26cc823cb7c/Fiona-1.7.13-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a910daad88bd7f80432373cb0f048cf3", "sha256": "17737637827391c96cad9d0b76372ebba5d1cc5d6ef15bb85e931d92dd053f44" }, "downloads": -1, "filename": "Fiona-1.7.13-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a910daad88bd7f80432373cb0f048cf3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 21550768, "upload_time": "2018-07-17T18:38:56", "upload_time_iso_8601": "2018-07-17T18:38:56.619921Z", "url": "https://files.pythonhosted.org/packages/02/90/e141bea1d5eefb4c0eb2ebbd51afe82fe211b2d9cb55fe89e41aac0ebbae/Fiona-1.7.13-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9642521998f2bae67e2eb0d2c5d18331", "sha256": "35e28e27ea9af9e7e5dcb0f00488fb584fef55065de8d6b92aaace5bdd07e865" }, "downloads": -1, "filename": "Fiona-1.7.13-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9642521998f2bae67e2eb0d2c5d18331", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 15711475, "upload_time": "2018-07-17T18:39:59", "upload_time_iso_8601": "2018-07-17T18:39:59.986607Z", "url": "https://files.pythonhosted.org/packages/43/37/4756b4423e58db7da44638fd82f48f8ada0bd396ff0cdf605dc5356ce9d7/Fiona-1.7.13-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3599348d8f8288f0861c3bf0093cb08c", "sha256": "b405fb2cfebb641fba419563fb39530c6d81910c1efdc75f685a24faa8c415e8" }, "downloads": -1, "filename": "Fiona-1.7.13-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3599348d8f8288f0861c3bf0093cb08c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21575006, "upload_time": "2018-07-17T18:41:16", "upload_time_iso_8601": "2018-07-17T18:41:16.684334Z", "url": "https://files.pythonhosted.org/packages/c9/1c/4db85f68ebbe6532885b1d8a83efb631cfee8a52e70359f435a85984d18e/Fiona-1.7.13-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca0f07b82df713290a3d5ca8fdc63bac", "sha256": "eecc67f0b1b492979e525f6d9f4f2ef6284beb5f506164cf4b202050a50d748d" }, "downloads": -1, "filename": "Fiona-1.7.13-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ca0f07b82df713290a3d5ca8fdc63bac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15765448, "upload_time": "2018-07-17T18:42:15", "upload_time_iso_8601": "2018-07-17T18:42:15.058632Z", "url": "https://files.pythonhosted.org/packages/e3/bf/029958f4e3811ce7017fb5805d5203e8bde6c1816b902964acb2dec67863/Fiona-1.7.13-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aafe2c7d66e534af9d4bb7af8445839d", "sha256": "e77bddaea50c2145136a863afeb8f9f4d799dd2523f2f0db1e40e739355e343d" }, "downloads": -1, "filename": "Fiona-1.7.13-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "aafe2c7d66e534af9d4bb7af8445839d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21549048, "upload_time": "2018-07-17T18:43:31", "upload_time_iso_8601": "2018-07-17T18:43:31.468975Z", "url": "https://files.pythonhosted.org/packages/dc/b1/c1d3a9107bad08416a0deac2a63eaaec873499090e64b336fafe5e6204c4/Fiona-1.7.13-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7332dd3d78ce103469e1d805ea6172f", "sha256": "e8854f3d66436f21eb1eb18ffe51c1ed47c931f859118073b22592347f48faa5" }, "downloads": -1, "filename": "Fiona-1.7.13-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d7332dd3d78ce103469e1d805ea6172f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15747263, "upload_time": "2018-07-17T18:44:28", "upload_time_iso_8601": "2018-07-17T18:44:28.131263Z", "url": "https://files.pythonhosted.org/packages/05/9a/66616328c6621a1cd8a67d391519651d185d58fd81db848e4c3d58599b2e/Fiona-1.7.13-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "778d813d65acc730cc28191b04d2c74d", "sha256": "a156129f0904cb7eb24aa0745b6075da54f2c31db168ed3bcac8a4bd716d77b2" }, "downloads": -1, "filename": "Fiona-1.7.13.tar.gz", "has_sig": false, "md5_digest": "778d813d65acc730cc28191b04d2c74d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 731237, "upload_time": "2018-07-17T18:44:33", "upload_time_iso_8601": "2018-07-17T18:44:33.581761Z", "url": "https://files.pythonhosted.org/packages/82/52/fe30f9f529edf52080e7f5a2ffe377aefd84d0aceeb2e96022b5a78b3faf/Fiona-1.7.13.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "7a9863209debd3395b06fb759de08c8b", "sha256": "7573fb39d252d3c2147e4a676dc5e0a61f9605c1439551fda1cbfbb2138ec54c" }, "downloads": -1, "filename": "Fiona-1.7.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "7a9863209debd3395b06fb759de08c8b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17696770, "upload_time": "2017-01-27T21:00:03", "upload_time_iso_8601": "2017-01-27T21:00:03.973503Z", "url": "https://files.pythonhosted.org/packages/c1/75/5a05ebad08f1e90891d4116b04778b20968211c73882eb4bac6dc3c1f9c1/Fiona-1.7.2-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a7a75af5c02c49bef0c61e868ccc1e0", "sha256": "3ee221117ddab75b283fa40a691367316eefd0a173ea8628459734754fd404e6" }, "downloads": -1, "filename": "Fiona-1.7.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0a7a75af5c02c49bef0c61e868ccc1e0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39604034, "upload_time": "2017-01-27T21:06:48", "upload_time_iso_8601": "2017-01-27T21:06:48.083913Z", "url": "https://files.pythonhosted.org/packages/e7/85/afb4fee075c84281eb8e7db4134a3b854d3cb5cde92e2de5423beb0ed0ac/Fiona-1.7.2-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ece7356aa3f57190ac169eb8039b18c3", "sha256": "98a8a918bd2cd822841924aec2bacb6b8128d737a9cfc42858eeadebe6f8af45" }, "downloads": -1, "filename": "Fiona-1.7.2-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ece7356aa3f57190ac169eb8039b18c3", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 39647325, "upload_time": "2017-01-27T21:25:43", "upload_time_iso_8601": "2017-01-27T21:25:43.726365Z", "url": "https://files.pythonhosted.org/packages/8f/74/dde768ce490a6bf93e0ad59ced77318efb8cf6d3d5b4bd30161f047374e2/Fiona-1.7.2-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d384a2acf70599d573b62a4fa49138b", "sha256": "d8bdcacfd9d8d6932b608b47d30897653f5373e402cb7a7fe51706cdaac0c881" }, "downloads": -1, "filename": "Fiona-1.7.2-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "2d384a2acf70599d573b62a4fa49138b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17688123, "upload_time": "2017-01-27T21:28:51", "upload_time_iso_8601": "2017-01-27T21:28:51.842345Z", "url": "https://files.pythonhosted.org/packages/06/73/83a7a3850f453f523c45b2ff628965c6ffec8995902b151f680e56bad5c3/Fiona-1.7.2-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ad429d799a5b6617776de728a44fa19", "sha256": "5f43c9ee4155d1cf0aaaaec628740988b3720aaee2d5884c23d096ee1e66c45a" }, "downloads": -1, "filename": "Fiona-1.7.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8ad429d799a5b6617776de728a44fa19", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 39759516, "upload_time": "2017-01-27T21:35:44", "upload_time_iso_8601": "2017-01-27T21:35:44.853237Z", "url": "https://files.pythonhosted.org/packages/6b/2d/96e2fec97fc468cebfd8b61316b7f620e5fac5c94f4ac8054202e09bcb79/Fiona-1.7.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fad5355d30b55123aa90109096ecccb6", "sha256": "c0b5d7924d330620b9f95b9e14c369526026ddb0ba275dc5b571ef3c1a7cfa36" }, "downloads": -1, "filename": "Fiona-1.7.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "fad5355d30b55123aa90109096ecccb6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17649121, "upload_time": "2017-01-27T21:38:56", "upload_time_iso_8601": "2017-01-27T21:38:56.296471Z", "url": "https://files.pythonhosted.org/packages/30/5b/1136c29a68aa98627576715d0fb5af6005c2f041636c833eb8087f6d4773/Fiona-1.7.2-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9d782ed2af984f693fabdc24984de6a", "sha256": "42c7d41891e3dc944fbda0f5a3dad06bbde79f00cdb924ecb79e151927883026" }, "downloads": -1, "filename": "Fiona-1.7.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c9d782ed2af984f693fabdc24984de6a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39730625, "upload_time": "2017-01-27T21:46:06", "upload_time_iso_8601": "2017-01-27T21:46:06.604610Z", "url": "https://files.pythonhosted.org/packages/0b/9c/4e1ff0e569effeae96285cf0fe28167b0b47115b8800775914f9d4baa1d4/Fiona-1.7.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b69c89b75077acebad5964e3b04fea2e", "sha256": "14c6f7244217d6f1a020af6dec6420ecef316d55ae4790d50c28aa4929e394a8" }, "downloads": -1, "filename": "Fiona-1.7.2.tar.gz", "has_sig": false, "md5_digest": "b69c89b75077acebad5964e3b04fea2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 791878, "upload_time": "2017-02-09T01:17:53", "upload_time_iso_8601": "2017-02-09T01:17:53.129743Z", "url": "https://files.pythonhosted.org/packages/c7/c7/f31ebfe85e1785e6dd8a6a786640bfa8268f0a3748675bf1f35eadea3f42/Fiona-1.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "d36f028436ad1dd9602ba06022e43b80", "sha256": "6553b5badaed3fb426a62163417c9214f6748a5dbfb8d64e386add37000a4b3f" }, "downloads": -1, "filename": "Fiona-1.7.3-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "d36f028436ad1dd9602ba06022e43b80", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17718125, "upload_time": "2017-02-15T09:35:36", "upload_time_iso_8601": "2017-02-15T09:35:36.832093Z", "url": "https://files.pythonhosted.org/packages/1b/3f/816b69b7304499696dbb9a0ab22abfcdf744782a19652896753877cedcd7/Fiona-1.7.3-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7aa3a3bac6dc0554179fb4644d9030a2", "sha256": "c45cf3e91f2edee7a263e8eb341e1fad3a0e9dcf4728e6af101c2bf6ddd79318" }, "downloads": -1, "filename": "Fiona-1.7.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7aa3a3bac6dc0554179fb4644d9030a2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39638848, "upload_time": "2017-02-15T09:45:12", "upload_time_iso_8601": "2017-02-15T09:45:12.796407Z", "url": "https://files.pythonhosted.org/packages/03/a2/546ffd4824a114cc12edb4edd8d525188c7f927e804ce821e07327ef2428/Fiona-1.7.3-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "660d9704f0e9f0cd5af01d23322ac261", "sha256": "95f5c80ecc33ddf75d7559dea85ce7fcb8d88eb47c0673f66c6a37200afb9587" }, "downloads": -1, "filename": "Fiona-1.7.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "660d9704f0e9f0cd5af01d23322ac261", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39638864, "upload_time": "2017-02-15T08:31:26", "upload_time_iso_8601": "2017-02-15T08:31:26.850992Z", "url": "https://files.pythonhosted.org/packages/22/00/88e24ee7c64b4270f11c1d53764f2915994c390a8473e7cf628f39a5a15b/Fiona-1.7.3-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8408af4c491f0f96800aa6c7a62400a1", "sha256": "787c53dc53111e6fc5b14740c65a1b4ea2e4f8e16c732f74c4c2978e4ac8b89f" }, "downloads": -1, "filename": "Fiona-1.7.3-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8408af4c491f0f96800aa6c7a62400a1", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 39682163, "upload_time": "2017-02-15T08:41:55", "upload_time_iso_8601": "2017-02-15T08:41:55.721219Z", "url": "https://files.pythonhosted.org/packages/a8/4d/f00fe2f70b28872c37d612a2dd0a18f321aeb9731eefba4d4442e8c2a071/Fiona-1.7.3-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4925890a911cab71f81588645bac9522", "sha256": "3c5df3d785f96cb85784420c7d78dc65f667f0b4806d164e711ebabf9a6e575a" }, "downloads": -1, "filename": "Fiona-1.7.3-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "4925890a911cab71f81588645bac9522", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17709487, "upload_time": "2017-02-15T08:46:45", "upload_time_iso_8601": "2017-02-15T08:46:45.436351Z", "url": "https://files.pythonhosted.org/packages/cf/5d/f7f3125dea168fe5c9e19ebd62a670035374ef686443b90ffa0bbaadbcff/Fiona-1.7.3-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a338fac57d38d8e7bd878c72abacba3d", "sha256": "088fa018c21ff0a37f352655ed638f06bb382e1dff3d09c2309cf49bb0278fbd" }, "downloads": -1, "filename": "Fiona-1.7.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a338fac57d38d8e7bd878c72abacba3d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 39794367, "upload_time": "2017-02-15T08:56:31", "upload_time_iso_8601": "2017-02-15T08:56:31.336409Z", "url": "https://files.pythonhosted.org/packages/c9/75/e92414c3b34604afc23ce53fd6b04c12f2137cf55c32362e689adfe7b583/Fiona-1.7.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c02760ee2311c13cb68f1ce1872ff37f", "sha256": "efcfeded435657ee8db0bd61d1b8cf00e1b443ad316345bf60e5d006cafce81a" }, "downloads": -1, "filename": "Fiona-1.7.3-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "c02760ee2311c13cb68f1ce1872ff37f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17670492, "upload_time": "2017-02-15T09:50:27", "upload_time_iso_8601": "2017-02-15T09:50:27.617382Z", "url": "https://files.pythonhosted.org/packages/9d/60/fc1f0edf34a55e6a0bcc3d9412ce419b7a8be1d47b045fc317462bfe48c7/Fiona-1.7.3-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46ec142bc7e5cf70378a77abf8c5a125", "sha256": "f55401641429b09d6a4d9181eda4f65cc06286ed696e51d64e0c8166efc8b4fe" }, "downloads": -1, "filename": "Fiona-1.7.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "46ec142bc7e5cf70378a77abf8c5a125", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39765490, "upload_time": "2017-02-15T09:14:31", "upload_time_iso_8601": "2017-02-15T09:14:31.086518Z", "url": "https://files.pythonhosted.org/packages/d0/d8/e5e19243e41f0b7c91c9098d843d26f410c1a4e77d29e0aa333b9944d0a5/Fiona-1.7.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c665b842cba5734fec05bdfae7132488", "sha256": "acd9144504e7cee203e12107e5eedfa44379cd8724db9dc897bc4249e74d3d01" }, "downloads": -1, "filename": "Fiona-1.7.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c665b842cba5734fec05bdfae7132488", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 39798471, "upload_time": "2017-02-15T09:24:05", "upload_time_iso_8601": "2017-02-15T09:24:05.576031Z", "url": "https://files.pythonhosted.org/packages/fe/16/6a5392a85513e98d7649e826cfbe101f2e251237a3e146a21fb24969d122/Fiona-1.7.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f449afb60f5a1efe15d3d868a9e5c742", "sha256": "4a8c2a5a67b5d24ba873405e68e1848e5387547d392ddb2f4882a9b912793913" }, "downloads": -1, "filename": "Fiona-1.7.3.tar.gz", "has_sig": false, "md5_digest": "f449afb60f5a1efe15d3d868a9e5c742", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 623535, "upload_time": "2017-02-14T23:55:57", "upload_time_iso_8601": "2017-02-14T23:55:57.703016Z", "url": "https://files.pythonhosted.org/packages/f1/53/c501573c37eb54246ce34d042f9549f77ea90a39665fefefb8b7d9dc91df/Fiona-1.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "971393c23ffc552664b7c694b992fb3e", "sha256": "25f0146a7f25d53df16e33771830bf163ef0fa6e6510763309aac5a0ce385469" }, "downloads": -1, "filename": "Fiona-1.7.4-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "971393c23ffc552664b7c694b992fb3e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17718465, "upload_time": "2017-02-20T11:03:51", "upload_time_iso_8601": "2017-02-20T11:03:51.802918Z", "url": "https://files.pythonhosted.org/packages/71/ea/908bf078499b30d1ec374eb5baba016a568fc8142ee6ccf72e356d20871c/Fiona-1.7.4-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81d8af536812457ece9a1dbe2beee24a", "sha256": "6eb66af1a0402dbb1bb21db657e4196c784b04603f7ddd27aad5366801a994ad" }, "downloads": -1, "filename": "Fiona-1.7.4-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "81d8af536812457ece9a1dbe2beee24a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39639224, "upload_time": "2017-02-20T11:15:51", "upload_time_iso_8601": "2017-02-20T11:15:51.070495Z", "url": "https://files.pythonhosted.org/packages/de/8b/dde2d7a266a8cf2a92830a5d0294672eccae70a1d2dc5f8777ff3816428d/Fiona-1.7.4-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d24d91450ec768cf602fb3403c47034", "sha256": "434eb800041c763538d8e244864721d9ccd8af566d20ecd62988b87648bb73d6" }, "downloads": -1, "filename": "Fiona-1.7.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9d24d91450ec768cf602fb3403c47034", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39639194, "upload_time": "2017-02-20T11:27:39", "upload_time_iso_8601": "2017-02-20T11:27:39.836429Z", "url": "https://files.pythonhosted.org/packages/b8/fd/f8592eab7a4797798697425f74b1b23a97be59d6c976b046f39b6f26517d/Fiona-1.7.4-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ced3d8557bceeae6583fb35d691cf5e1", "sha256": "a4b243795f1027360e82bb19f3b898a8d955d4bedb119633ee449be34c0b2d8c" }, "downloads": -1, "filename": "Fiona-1.7.4-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ced3d8557bceeae6583fb35d691cf5e1", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 39682519, "upload_time": "2017-02-20T11:37:54", "upload_time_iso_8601": "2017-02-20T11:37:54.492679Z", "url": "https://files.pythonhosted.org/packages/f5/c2/fd6242c017a569a36d8df3ccea9b9c3ec383aa730ab4b4a47babf5dee620/Fiona-1.7.4-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43a5a68ce6b3b6c52ec8ce14411d6713", "sha256": "c1729a7a4fb28d0f313c126b43d47b35dc2c92e4768ff7f81196b59e0e4eedac" }, "downloads": -1, "filename": "Fiona-1.7.4-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "43a5a68ce6b3b6c52ec8ce14411d6713", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17709823, "upload_time": "2017-02-20T11:42:28", "upload_time_iso_8601": "2017-02-20T11:42:28.703530Z", "url": "https://files.pythonhosted.org/packages/59/6d/ce1c9fcc638dc1af86b5ae303eb97e7012802b01e77c494edcd95e07f990/Fiona-1.7.4-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c7c7c2eed6d0359ea1008b30888191c", "sha256": "2a211a798cb449c4633c3f4244e71d23e30d6d2b2c1a43d6327d0a7b25ec049c" }, "downloads": -1, "filename": "Fiona-1.7.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1c7c7c2eed6d0359ea1008b30888191c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 39794659, "upload_time": "2017-02-20T11:53:48", "upload_time_iso_8601": "2017-02-20T11:53:48.386447Z", "url": "https://files.pythonhosted.org/packages/1c/bd/5c7d0be066f3ae396aa00899cbe3d7b975e56c1503c39ec55b928d605eea/Fiona-1.7.4-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f50659d4758d0012176df4cce39ef7e6", "sha256": "54cb587fdeaa347755183d8285d8e25581c8646226809a8a5e9b8b0d027f8f51" }, "downloads": -1, "filename": "Fiona-1.7.4-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f50659d4758d0012176df4cce39ef7e6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17670820, "upload_time": "2017-02-20T11:59:07", "upload_time_iso_8601": "2017-02-20T11:59:07.511280Z", "url": "https://files.pythonhosted.org/packages/c8/f0/245510b0894ba4d42d582ee8bb7edd55f879346b63fd6da194c3f0af047f/Fiona-1.7.4-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26d52063ede677a17df14f48ba13f9b2", "sha256": "927f8dc87fafe596ef20de0b9fea90b1eff379b2e628e3a989767e9226cbdb0f" }, "downloads": -1, "filename": "Fiona-1.7.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "26d52063ede677a17df14f48ba13f9b2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39765827, "upload_time": "2017-02-20T12:10:15", "upload_time_iso_8601": "2017-02-20T12:10:15.411643Z", "url": "https://files.pythonhosted.org/packages/74/b4/52babf06ef43a0f5d96608702c54e9a92945ed2313e64ce9163072853ce8/Fiona-1.7.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f856e47c2efd6c8215c8df5d8b691e4f", "sha256": "fdda31038c6770c8037b0e055751f253eda68218c86408d8ecd645df89082e96" }, "downloads": -1, "filename": "Fiona-1.7.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f856e47c2efd6c8215c8df5d8b691e4f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 39798783, "upload_time": "2017-02-20T12:21:07", "upload_time_iso_8601": "2017-02-20T12:21:07.670691Z", "url": "https://files.pythonhosted.org/packages/eb/57/d8157dfe8bb27f2f467af9756ad3f2dfeeac619d6aed167d06e8d4ef7e1b/Fiona-1.7.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d511b790aa938db9a30a0c7ad8f731e", "sha256": "2524487464bf72bcc04cf5c29760485eba65e88d54ce8ea1c7bbb3f35a31b77d" }, "downloads": -1, "filename": "Fiona-1.7.4.tar.gz", "has_sig": false, "md5_digest": "1d511b790aa938db9a30a0c7ad8f731e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 628109, "upload_time": "2017-02-20T12:21:29", "upload_time_iso_8601": "2017-02-20T12:21:29.278493Z", "url": "https://files.pythonhosted.org/packages/ff/fb/72d184f034ea56cf1f446c3fb0146f2ea1a4f54d040e9d03e9d9b80a4619/Fiona-1.7.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "6b3aef22f54f5d7934dcad2c35550cb0", "sha256": "9098bd2998d3f73f1c754bd7967e6098433822ee0632a34709460506b4e8bded" }, "downloads": -1, "filename": "Fiona-1.7.5-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6b3aef22f54f5d7934dcad2c35550cb0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17711727, "upload_time": "2017-03-20T15:39:26", "upload_time_iso_8601": "2017-03-20T15:39:26.230948Z", "url": "https://files.pythonhosted.org/packages/25/72/5e2460e4a23c4f01deba243c67b26bf5784940c153b4f3acec044295db82/Fiona-1.7.5-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ceffcc2bcc2a35837db45b8441307c88", "sha256": "f426579b5ccfa5f0074ecab7c8952b67105e7f412816a60ac178ba8e54b34f54" }, "downloads": -1, "filename": "Fiona-1.7.5-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ceffcc2bcc2a35837db45b8441307c88", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39627859, "upload_time": "2017-03-20T15:48:25", "upload_time_iso_8601": "2017-03-20T15:48:25.871223Z", "url": "https://files.pythonhosted.org/packages/b6/1e/ce181b1217061a4780c1dd760af0ee82ea3b57e4acdf6450919601f73f0c/Fiona-1.7.5-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aeeed1fcf7758bca20c7198e48bdb627", "sha256": "7cfe746ab98a7b18783ba1c8fcc604f6d1c454246321650f4eaed1f7d6ced5fc" }, "downloads": -1, "filename": "Fiona-1.7.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "aeeed1fcf7758bca20c7198e48bdb627", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39627872, "upload_time": "2017-03-20T15:56:44", "upload_time_iso_8601": "2017-03-20T15:56:44.924232Z", "url": "https://files.pythonhosted.org/packages/a1/e1/d2dfa7ef792bde848fd494cd903bb41ff8266169ea6293c4f6c6edba94c0/Fiona-1.7.5-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c043a3588caae89a3737d890687e136b", "sha256": "c89cf3e69974a239566aa1903ad56b85e7fd8e48375daf54e47568ab66663cf1" }, "downloads": -1, "filename": "Fiona-1.7.5-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c043a3588caae89a3737d890687e136b", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 39669534, "upload_time": "2017-03-20T16:04:43", "upload_time_iso_8601": "2017-03-20T16:04:43.486281Z", "url": "https://files.pythonhosted.org/packages/ef/77/37ca27be341ba282332a02bf15d4e4e561feefdd824c8c4a3ccaa441f2e9/Fiona-1.7.5-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f3045be11a7631187cb6a71ad677705", "sha256": "eafdc91b04685a92d54a21d61be0aaf2ab8d8850991ec2c9b291bc6c04871ea2" }, "downloads": -1, "filename": "Fiona-1.7.5-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0f3045be11a7631187cb6a71ad677705", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17702535, "upload_time": "2017-03-20T16:08:20", "upload_time_iso_8601": "2017-03-20T16:08:20.174566Z", "url": "https://files.pythonhosted.org/packages/0b/d5/4a2ce1741e9e283897aabb7194dba09c8e4d704597917562ac7bba5563e2/Fiona-1.7.5-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47fc98cbc742cc060c5bca3fd25ec0ff", "sha256": "9f6d3e2288a92e822ec88e4da8e0d7e15cc79f4b44abb475e9f0431facc4d7bf" }, "downloads": -1, "filename": "Fiona-1.7.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "47fc98cbc742cc060c5bca3fd25ec0ff", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 39780924, "upload_time": "2017-03-20T16:16:42", "upload_time_iso_8601": "2017-03-20T16:16:42.380847Z", "url": "https://files.pythonhosted.org/packages/27/81/bc0f76b38f2c6614cacd1e5b37903c4295b9acf3cae95c2cc01fcd33e9fc/Fiona-1.7.5-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f3d6bd17362126d5f51efbdb25afca8", "sha256": "1105591c00496459c76dfce7aee0f82467e3ad4b7cf8c0a327fa4d7ea66eedaa" }, "downloads": -1, "filename": "Fiona-1.7.5-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6f3d6bd17362126d5f51efbdb25afca8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17665251, "upload_time": "2017-03-20T16:20:20", "upload_time_iso_8601": "2017-03-20T16:20:20.873866Z", "url": "https://files.pythonhosted.org/packages/63/d0/10586f9388eff83752220ba7fbbe59fea6cd8a864815d179124587f34e96/Fiona-1.7.5-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e59e8b4b74fa3f4c295656f4597389d0", "sha256": "df8c2572277052c749fd7e18d08f301035e65035962af774abd531f1dfa2c92e" }, "downloads": -1, "filename": "Fiona-1.7.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e59e8b4b74fa3f4c295656f4597389d0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39740249, "upload_time": "2017-03-20T16:28:04", "upload_time_iso_8601": "2017-03-20T16:28:04.335900Z", "url": "https://files.pythonhosted.org/packages/93/2a/d02876826103f44c638297f0da14589681148e0126e7ea72e378e6c796b2/Fiona-1.7.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22ae27db94570744deaca0ad66ce0799", "sha256": "fbabb83581802980409e5ffed8c72812fecf5f75ee46296a34fff8fbc3366348" }, "downloads": -1, "filename": "Fiona-1.7.5-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "22ae27db94570744deaca0ad66ce0799", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17676918, "upload_time": "2017-03-20T16:31:36", "upload_time_iso_8601": "2017-03-20T16:31:36.170957Z", "url": "https://files.pythonhosted.org/packages/cc/63/2f333a084dbbeb99d5c5288914a232a059655b14548ff97109655ff64f00/Fiona-1.7.5-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c1cc39de23928f200f231ec20033069", "sha256": "7c7c2b1e911efed50e1026b1b41299f5e2b03affc2e2b60194508df8b3f3dd64" }, "downloads": -1, "filename": "Fiona-1.7.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6c1cc39de23928f200f231ec20033069", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 39781457, "upload_time": "2017-03-20T19:07:32", "upload_time_iso_8601": "2017-03-20T19:07:32.310240Z", "url": "https://files.pythonhosted.org/packages/2e/d6/30f2d1d9e73492211b3e48bc98973b2832ecb2f60e35e725193560008761/Fiona-1.7.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "287f1561584c0dfcc54c3d91a170a4f3", "sha256": "7875f64f717c97ac5d54521fbeb1f0a1594463119d8fd43d5aa2aa28d8bccffd" }, "downloads": -1, "filename": "Fiona-1.7.5.tar.gz", "has_sig": false, "md5_digest": "287f1561584c0dfcc54c3d91a170a4f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 625395, "upload_time": "2017-03-20T19:20:41", "upload_time_iso_8601": "2017-03-20T19:20:41.633005Z", "url": "https://files.pythonhosted.org/packages/6d/d6/4b6535985347609e2096885497519b69e1231dcc77d8b829e02c57baf327/Fiona-1.7.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.6": [ { "comment_text": "", "digests": { "md5": "ee3625123b68e66e792cb8a8eef830f7", "sha256": "89910de5f5c508f3776698b563546da788cdbb43b51c4f9c0387f4ea51dedecf" }, "downloads": -1, "filename": "Fiona-1.7.6-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ee3625123b68e66e792cb8a8eef830f7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17751089, "upload_time": "2017-04-26T19:00:43", "upload_time_iso_8601": "2017-04-26T19:00:43.453767Z", "url": "https://files.pythonhosted.org/packages/ac/7e/5ad953b3b49c41c7505248b0d7ba5b196e1ad1423be7a657ca4c7bfe82ed/Fiona-1.7.6-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d9b96ba6f40c641f3ff83958c4f282a", "sha256": "f091f271a42e205d4a53b0941b554822239c9346ffab37da312796f59046c1f5" }, "downloads": -1, "filename": "Fiona-1.7.6-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9d9b96ba6f40c641f3ff83958c4f282a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39690794, "upload_time": "2017-04-26T19:08:25", "upload_time_iso_8601": "2017-04-26T19:08:25.927559Z", "url": "https://files.pythonhosted.org/packages/99/28/ca24baad0cea34927bc5df7af4acba9985fb000e1090f140188049785cca/Fiona-1.7.6-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "741ff583535868ddc2ae392fc0a6a8e2", "sha256": "b17e0c4e40a20f33dad5d9a2baa26a94df9792db0f79f0eb1be969a4d22b47fb" }, "downloads": -1, "filename": "Fiona-1.7.6-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "741ff583535868ddc2ae392fc0a6a8e2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39690789, "upload_time": "2017-04-26T19:17:15", "upload_time_iso_8601": "2017-04-26T19:17:15.317577Z", "url": "https://files.pythonhosted.org/packages/1d/76/21605c8dde84eaaddd03e7df7bf79513dd819f0c8f40f4c2e0869c77f58f/Fiona-1.7.6-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5eefef5ab6cd398a71893a69e8df5bbc", "sha256": "203a90c483a949478499aa838c3c06d2dc90e480a25daf15cb246363dff2fad5" }, "downloads": -1, "filename": "Fiona-1.7.6-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "5eefef5ab6cd398a71893a69e8df5bbc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17741615, "upload_time": "2017-04-26T19:23:18", "upload_time_iso_8601": "2017-04-26T19:23:18.019831Z", "url": "https://files.pythonhosted.org/packages/5d/ef/12938440569e6f2848b70a623019bf08bb4fdbb77c9232ebd83288e51cae/Fiona-1.7.6-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50216d57bf5119117c4de53e3147479e", "sha256": "4d12f4a31b11648f50e589b988cb05c63b2ce78974180352b630e6dad58ff0f7" }, "downloads": -1, "filename": "Fiona-1.7.6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "50216d57bf5119117c4de53e3147479e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 39854213, "upload_time": "2017-04-26T19:35:25", "upload_time_iso_8601": "2017-04-26T19:35:25.784782Z", "url": "https://files.pythonhosted.org/packages/17/49/55f8058c9ecce272f0fdc7b84a22e077d47ccbfc333a43bb64b99bfae3fb/Fiona-1.7.6-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3695ff3f0a73b1af4c254ce9af4bebab", "sha256": "133f333cc1484a04a41000ebf0c998bb02033d2eedde02375975f674c9422813" }, "downloads": -1, "filename": "Fiona-1.7.6-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "3695ff3f0a73b1af4c254ce9af4bebab", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17703913, "upload_time": "2017-04-26T19:39:47", "upload_time_iso_8601": "2017-04-26T19:39:47.762997Z", "url": "https://files.pythonhosted.org/packages/1c/0a/81975d649c1f3db3fc4b468749fde90babfe1e567672ff3f314b59511fcf/Fiona-1.7.6-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82bdc68cba0bb5cc86e39c40312e1b24", "sha256": "2e3601d07d68712295ed756ffe3c7606622ed24eb9138a47d4b73a51a4078d24" }, "downloads": -1, "filename": "Fiona-1.7.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "82bdc68cba0bb5cc86e39c40312e1b24", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39814775, "upload_time": "2017-04-26T19:49:08", "upload_time_iso_8601": "2017-04-26T19:49:08.915903Z", "url": "https://files.pythonhosted.org/packages/fa/35/c552d805828bb6110b847399510025315c89718de86706ae34b0b6edcd26/Fiona-1.7.6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86e1e584c8efd675b8936f813e189fe7", "sha256": "3e97f87db0e70d35de059d20e9a3802c2f359505f0874fce8e8a39d874fb28ea" }, "downloads": -1, "filename": "Fiona-1.7.6-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "86e1e584c8efd675b8936f813e189fe7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17716554, "upload_time": "2017-04-26T19:53:23", "upload_time_iso_8601": "2017-04-26T19:53:23.090883Z", "url": "https://files.pythonhosted.org/packages/9a/2a/e9759c643f745e181d3315acb794c738dad09e724b818c98c38d64e2e63c/Fiona-1.7.6-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e39b7d133f390b9e143d61acd07eef6", "sha256": "e18cda459810d927a1d7b4be8c8401d0be363ec67b6d98cd8b976d22240c00a4" }, "downloads": -1, "filename": "Fiona-1.7.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1e39b7d133f390b9e143d61acd07eef6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 39861446, "upload_time": "2017-04-26T20:03:19", "upload_time_iso_8601": "2017-04-26T20:03:19.619833Z", "url": "https://files.pythonhosted.org/packages/68/ba/0a144fb37475a437fc41ee98c4d842234ea16a402490fa873155a79ca350/Fiona-1.7.6-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49291fdefa4f7337ae943bcdc4ba1b07", "sha256": "d0ab7d04556005a6354c4edfd820a4001a4ad7b57332e28f7dd6c4cdab9a0e3c" }, "downloads": -1, "filename": "Fiona-1.7.6.tar.gz", "has_sig": false, "md5_digest": "49291fdefa4f7337ae943bcdc4ba1b07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 641013, "upload_time": "2017-04-26T20:03:40", "upload_time_iso_8601": "2017-04-26T20:03:40.306165Z", "url": "https://files.pythonhosted.org/packages/0e/d9/b7ecaef94f9cead2fe6b729db1b9498815ec7bd7c5fe7bc9342d2ccd7763/Fiona-1.7.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.7": [ { "comment_text": "", "digests": { "md5": "f35d79b10462669feceada5a0f2ab7db", "sha256": "85db5bceaa0477f20e06983e28dffb31e3098915ff3f9529b2c7f4b528e71f6e" }, "downloads": -1, "filename": "Fiona-1.7.7-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f35d79b10462669feceada5a0f2ab7db", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 48416109, "upload_time": "2017-06-05T10:37:52", "upload_time_iso_8601": "2017-06-05T10:37:52.645083Z", "url": "https://files.pythonhosted.org/packages/65/9e/e1caaa17f3873532a5ee9b724d245438a781cfdfea94c71643a683cb4d26/Fiona-1.7.7-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ccb7ffeebdb9171b401877e7df91e85", "sha256": "b93095099d7b20c8de577d20b5adca6456597c354f49f608f67f485fb1963b91" }, "downloads": -1, "filename": "Fiona-1.7.7-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6ccb7ffeebdb9171b401877e7df91e85", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 48416165, "upload_time": "2017-06-05T10:48:30", "upload_time_iso_8601": "2017-06-05T10:48:30.959022Z", "url": "https://files.pythonhosted.org/packages/da/60/b699b61bfe116308da8f9d8901f93713b2f61c6ee34b979266b1eea51424/Fiona-1.7.7-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b5d7fa29f9879bd31d54d617a542ebc", "sha256": "05d26df1f76353aedf549d986923e7315a0a48068792e8580773a8e641f79df5" }, "downloads": -1, "filename": "Fiona-1.7.7-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0b5d7fa29f9879bd31d54d617a542ebc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 48579869, "upload_time": "2017-06-05T11:03:52", "upload_time_iso_8601": "2017-06-05T11:03:52.498993Z", "url": "https://files.pythonhosted.org/packages/43/d0/5327b2d91c479a49fef313490628213c399d642a477339c86113fb65dc13/Fiona-1.7.7-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf349bde2c8ba3dd52bcda0aae834f96", "sha256": "2b3c394044191bb57f827270ad1c0c6f0210e47fab704933549e8008067f16a1" }, "downloads": -1, "filename": "Fiona-1.7.7-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bf349bde2c8ba3dd52bcda0aae834f96", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 48540695, "upload_time": "2017-06-05T11:19:34", "upload_time_iso_8601": "2017-06-05T11:19:34.877803Z", "url": "https://files.pythonhosted.org/packages/90/08/9ccbe6f9756c367bb9db40ddcf53b8b51f5eb4ee8f37f89893d72792e2d7/Fiona-1.7.7-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19019fad04be0b3f12abf940aba13a22", "sha256": "cf7adc45ccb0cb6db6888823d9f2b8b93b987c085dc6c93f820cb447992fb1d9" }, "downloads": -1, "filename": "Fiona-1.7.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "19019fad04be0b3f12abf940aba13a22", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 48585711, "upload_time": "2017-06-05T11:33:32", "upload_time_iso_8601": "2017-06-05T11:33:32.470344Z", "url": "https://files.pythonhosted.org/packages/f4/de/25f39ee3a593a575c1033cb208a18595cf569acd84e4ae39edb616080d7e/Fiona-1.7.7-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a124acc828fa2093fe2babda3b57445", "sha256": "c9d12e2b796fb3dee0d0bb3a286e960649712526b2d41081a9c2eaed21e69e72" }, "downloads": -1, "filename": "Fiona-1.7.7.tar.gz", "has_sig": false, "md5_digest": "5a124acc828fa2093fe2babda3b57445", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 641355, "upload_time": "2017-06-05T11:33:53", "upload_time_iso_8601": "2017-06-05T11:33:53.241845Z", "url": "https://files.pythonhosted.org/packages/09/54/88d99dde4a89b9651f2d5158765e082443e5f8bef14705499776c6fd730e/Fiona-1.7.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.8": [ { "comment_text": "", "digests": { "md5": "e36ecf2d1435a4fa9eb79475913a4e1c", "sha256": "780d3a35a2591d4f30824d72bb13c6e3958b6887d4b94c3ec268b5dbfb991ae7" }, "downloads": -1, "filename": "Fiona-1.7.8-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e36ecf2d1435a4fa9eb79475913a4e1c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 48416559, "upload_time": "2017-06-20T08:08:34", "upload_time_iso_8601": "2017-06-20T08:08:34.480682Z", "url": "https://files.pythonhosted.org/packages/7e/9f/41e2a49bcdc3430fa57fd83f31a6b1a1f5538cd77523982cc84f9c39c9f5/Fiona-1.7.8-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a513371be2582ee4d8963790f3796615", "sha256": "4dd7322a802d17c2b8d282c384b4e25ef48d2311cb27f0fb44e94100ea6753a8" }, "downloads": -1, "filename": "Fiona-1.7.8-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a513371be2582ee4d8963790f3796615", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 48416603, "upload_time": "2017-06-20T08:17:42", "upload_time_iso_8601": "2017-06-20T08:17:42.200597Z", "url": "https://files.pythonhosted.org/packages/74/89/f650d74a6cec844962bb4f3f6a8f732c1be89a1b9f086b41d7da2d569264/Fiona-1.7.8-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d36428383a817cd4c36ff120de1ce63c", "sha256": "b7e38b6f98138924f94b00b85179bedb1f4bb7330c93cc0bf19d58d38d8237ef" }, "downloads": -1, "filename": "Fiona-1.7.8-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d36428383a817cd4c36ff120de1ce63c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 48580435, "upload_time": "2017-06-20T08:31:10", "upload_time_iso_8601": "2017-06-20T08:31:10.284810Z", "url": "https://files.pythonhosted.org/packages/ac/0d/334fd3f1d6af490b407827f091afe5aa89f6e41b5c76a02ec0e4ec884af8/Fiona-1.7.8-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b519c552acd1f930c6ac70835589b47", "sha256": "d71bf321f621a498564d1e814c7df7e258881a663586da48c543e0e0abc8bdbf" }, "downloads": -1, "filename": "Fiona-1.7.8-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4b519c552acd1f930c6ac70835589b47", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 48541398, "upload_time": "2017-06-20T08:45:13", "upload_time_iso_8601": "2017-06-20T08:45:13.444432Z", "url": "https://files.pythonhosted.org/packages/3e/f7/b70439bf7bc82ed9b7106539aee55fea73e15315b8e36568926a23ebf1df/Fiona-1.7.8-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3109f46e752ae28dcc560d398770c347", "sha256": "f436831af272891fdf7abe0282d302042813a44c25b447e078931c71d14df710" }, "downloads": -1, "filename": "Fiona-1.7.8-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3109f46e752ae28dcc560d398770c347", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 48586145, "upload_time": "2017-06-20T08:59:00", "upload_time_iso_8601": "2017-06-20T08:59:00.073213Z", "url": "https://files.pythonhosted.org/packages/e3/c0/e92dad4a8941d96d433ad989a9055cdfae405a145d86be748bbb9146b9f2/Fiona-1.7.8-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccff408d9deb6a184fd4ae2b6cb408fe", "sha256": "c406f3f60061da1978fa8e4bcc152b125e23a47dcc64f0948dda429f3792e79b" }, "downloads": -1, "filename": "Fiona-1.7.8.tar.gz", "has_sig": false, "md5_digest": "ccff408d9deb6a184fd4ae2b6cb408fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 641538, "upload_time": "2017-06-20T08:59:17", "upload_time_iso_8601": "2017-06-20T08:59:17.507075Z", "url": "https://files.pythonhosted.org/packages/b1/2b/5276dd3b4348b7c43758f3bde48ac331b87746401063d09f0be0cb1825e6/Fiona-1.7.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.9": [ { "comment_text": "", "digests": { "md5": "870d75a7359713b1e29957f0d8ec91d8", "sha256": "65d0dbc6d7708e48d69da3c1227bc034deb44130fa573858b83fc93cd26f96fc" }, "downloads": -1, "filename": "Fiona-1.7.9-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "870d75a7359713b1e29957f0d8ec91d8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 48510958, "upload_time": "2017-08-18T03:16:12", "upload_time_iso_8601": "2017-08-18T03:16:12.488498Z", "url": "https://files.pythonhosted.org/packages/aa/78/24663b0c7016621ad12c0baac0e0be22e1277db08abbcd94aec083bbc47e/Fiona-1.7.9-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72b4f86a96a663b28eaf7362270bba9f", "sha256": "9abe173068e81a79b2104eb98873f500f69387fbe576d0a623f625e8ef2ff8a1" }, "downloads": -1, "filename": "Fiona-1.7.9-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "72b4f86a96a663b28eaf7362270bba9f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 48510941, "upload_time": "2017-08-18T03:19:19", "upload_time_iso_8601": "2017-08-18T03:19:19.380343Z", "url": "https://files.pythonhosted.org/packages/bf/dd/97498c4f512963479d2dc8470fc37fa2c1dcfabaa42006dcff794c37e722/Fiona-1.7.9-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84380ca0a1904ead0319e09c88e74515", "sha256": "dd4b439f03b8b1cce9c6c7156d6f2a3efa0d4cf22df0f7e9d3981ad98531cc03" }, "downloads": -1, "filename": "Fiona-1.7.9-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "84380ca0a1904ead0319e09c88e74515", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 48687595, "upload_time": "2017-08-18T03:23:53", "upload_time_iso_8601": "2017-08-18T03:23:53.528030Z", "url": "https://files.pythonhosted.org/packages/57/c1/425e9f9ceb1752a58deb3c7c5e616e556dc4e2e1f762ef506d3a5852f798/Fiona-1.7.9-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "505c1ebc634b89e6475b85d6e7e055dc", "sha256": "3183ca8cb00b7b1e49215b61b8c6767ca625f883ac64cf4eda41e6584fa16100" }, "downloads": -1, "filename": "Fiona-1.7.9-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "505c1ebc634b89e6475b85d6e7e055dc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 48651546, "upload_time": "2017-08-18T03:28:20", "upload_time_iso_8601": "2017-08-18T03:28:20.093605Z", "url": "https://files.pythonhosted.org/packages/5b/95/a1638a107a438e6ac926c4ffd6144d37a9353c6c9dd9ab26ec4d21b075a9/Fiona-1.7.9-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "447aac66584fc289da6b779d90b9dbbb", "sha256": "d1fdf134aa4d0eaa22a242949d43fd758a02f3c883a7fad6c89f179b44b9bd7f" }, "downloads": -1, "filename": "Fiona-1.7.9-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "447aac66584fc289da6b779d90b9dbbb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 48700772, "upload_time": "2017-08-18T03:32:42", "upload_time_iso_8601": "2017-08-18T03:32:42.080744Z", "url": "https://files.pythonhosted.org/packages/da/df/ec5c7ecd704c5b23e20c6357156fc7d8411f56c40b23bb2035344d4c2c48/Fiona-1.7.9-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5c6a7859cfb1510cdd1188ca6d657cc", "sha256": "91bb71b744a7444c3d96472158b74af1569ec2bc934737397658b968dd7dadba" }, "downloads": -1, "filename": "Fiona-1.7.9.tar.gz", "has_sig": false, "md5_digest": "e5c6a7859cfb1510cdd1188ca6d657cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 682209, "upload_time": "2017-08-18T03:32:56", "upload_time_iso_8601": "2017-08-18T03:32:56.302932Z", "url": "https://files.pythonhosted.org/packages/ff/d4/35b57521ba8772cdd3cc074ffc280bc82ab9194b9864f45311920f1745f9/Fiona-1.7.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.9.post1": [ { "comment_text": "", "digests": { "md5": "b09b491f5fe6602884b87b0bb5402f1a", "sha256": "75d6d4290f215fdf9b4e298c57c3f6bddfe08a4304807fe2b8fa2b54efbef374" }, "downloads": -1, "filename": "Fiona-1.7.9.post1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b09b491f5fe6602884b87b0bb5402f1a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 48372327, "upload_time": "2017-08-21T16:11:50", "upload_time_iso_8601": "2017-08-21T16:11:50.566728Z", "url": "https://files.pythonhosted.org/packages/fa/f8/f24d5694fe2f675db599745c44574745f38b765e1d93e9a178c2bec4c84b/Fiona-1.7.9.post1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "253f17242fc555812dc07e4c55428e87", "sha256": "4e5a89263d36fe7e5ca4e127aff233d68d6d5a97d73788c53c5b1f0200dd7ddd" }, "downloads": -1, "filename": "Fiona-1.7.9.post1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "253f17242fc555812dc07e4c55428e87", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 48372325, "upload_time": "2017-08-21T16:14:50", "upload_time_iso_8601": "2017-08-21T16:14:50.215081Z", "url": "https://files.pythonhosted.org/packages/6f/85/7900a613a24be9d5834231ada08d2a7d5dbdf28a19d95390d0195cbc65ca/Fiona-1.7.9.post1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "673e06709af1970b3c34977d1b22021e", "sha256": "a90394cf2340586ead26d19aa9d11d74f91202e4daf7058f605f761ba70927e6" }, "downloads": -1, "filename": "Fiona-1.7.9.post1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "673e06709af1970b3c34977d1b22021e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 48549019, "upload_time": "2017-08-21T16:19:12", "upload_time_iso_8601": "2017-08-21T16:19:12.102520Z", "url": "https://files.pythonhosted.org/packages/5c/6a/af6fd15526cd324567b0d3723739f5bac4183b32fafa709e3d8db6e1e0d5/Fiona-1.7.9.post1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f63564ec581cf8cf6917d945e9bb92c", "sha256": "87da16b430b41bfa808bd681b6e039e8392e6cc53beb9e9d4be6207c3a0f7c77" }, "downloads": -1, "filename": "Fiona-1.7.9.post1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9f63564ec581cf8cf6917d945e9bb92c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 48512931, "upload_time": "2017-08-21T16:23:37", "upload_time_iso_8601": "2017-08-21T16:23:37.468589Z", "url": "https://files.pythonhosted.org/packages/0a/fd/3696e82bfa98518cddb08774751e60b682543adf53b501544d5d9b297d58/Fiona-1.7.9.post1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28586f84f27e05cf015d28f24b840c88", "sha256": "ff1dca503c0fd6f4013800a0772bf748f08f8e88101485cc65c62c5ec45cdeb8" }, "downloads": -1, "filename": "Fiona-1.7.9.post1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "28586f84f27e05cf015d28f24b840c88", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 48562150, "upload_time": "2017-08-21T16:27:54", "upload_time_iso_8601": "2017-08-21T16:27:54.308817Z", "url": "https://files.pythonhosted.org/packages/7c/52/18eb73b638b48816556905793c545a0ba80b8c1b90d3b25bb7ec63fe36aa/Fiona-1.7.9.post1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f3074c2f27c59cdb4081410e569abec", "sha256": "68e8a925b23e3987845c11b0fdd6378fdec4316fe8ba767a935151b6ee1fc607" }, "downloads": -1, "filename": "Fiona-1.7.9.post1.tar.gz", "has_sig": false, "md5_digest": "9f3074c2f27c59cdb4081410e569abec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 682435, "upload_time": "2017-08-21T16:28:11", "upload_time_iso_8601": "2017-08-21T16:28:11.967095Z", "url": "https://files.pythonhosted.org/packages/f9/24/940835924e214074f172aae4baa0d906ae85b602b9315b2ccaeda269b59d/Fiona-1.7.9.post1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7b1": [ { "comment_text": "", "digests": { "md5": "609081d8471b45b24ee5206204800c94", "sha256": "fcf5de7a0b4fd0e2a8aee5d479c0e47f8dec9ef37e451e20c3595fdc0f9a8b7e" }, "downloads": -1, "filename": "Fiona-1.7b1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "609081d8471b45b24ee5206204800c94", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 18241746, "upload_time": "2016-06-11T00:49:07", "upload_time_iso_8601": "2016-06-11T00:49:07.239219Z", "url": "https://files.pythonhosted.org/packages/22/e7/c04cbdd3e92718e01052bbc32fa4d8c13eb3fbf1cfab01599d3d9581c142/Fiona-1.7b1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4635159313454350584b914da800e06e", "sha256": "29c94a67e1d565787fe48e52df15e31f35c28eaa273ac11928bc69c1845d4b64" }, "downloads": -1, "filename": "Fiona-1.7b1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "4635159313454350584b914da800e06e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 18237875, "upload_time": "2016-06-11T00:50:16", "upload_time_iso_8601": "2016-06-11T00:50:16.772997Z", "url": "https://files.pythonhosted.org/packages/4f/0d/92c76e2c0623c063a67bc3414f53e410e65688ae5814e695af3f29e59137/Fiona-1.7b1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6d4cd4f2cc22d109d964d59f4b4dfe4", "sha256": "c48f950cb1f9ebd315d5916a0d8b56aeaba54726bbb39184e97c14a785c3450d" }, "downloads": -1, "filename": "Fiona-1.7b1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "e6d4cd4f2cc22d109d964d59f4b4dfe4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 18237231, "upload_time": "2016-06-11T00:51:26", "upload_time_iso_8601": "2016-06-11T00:51:26.169504Z", "url": "https://files.pythonhosted.org/packages/4d/3f/d21990a94a738c93fd73ad0aaa929704ec35a8c1c96ab8e0a2ca1e118252/Fiona-1.7b1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4fbc8008a7418813639085cf9f27590", "sha256": "e894de4d519e6e2ab1285181550a82a59cdf53bacb8f3a665aacad09ef5c9ccb" }, "downloads": -1, "filename": "Fiona-1.7b1.tar.gz", "has_sig": false, "md5_digest": "a4fbc8008a7418813639085cf9f27590", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1231395, "upload_time": "2016-06-11T00:51:38", "upload_time_iso_8601": "2016-06-11T00:51:38.367469Z", "url": "https://files.pythonhosted.org/packages/28/ff/bfeace921ecc9e86ae709f8f67a491abcd0f68141743410f7c08888a1c5e/Fiona-1.7b1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "9d2f6381e9a1e3b702dd3c822d50b851", "sha256": "f10ec6e2eef846ec57d43621b1e2d9cdfb0c95f271648f07da3368ed32255cce" }, "downloads": -1, "filename": "Fiona-1.8.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "9d2f6381e9a1e3b702dd3c822d50b851", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24333826, "upload_time": "2018-10-31T16:40:41", "upload_time_iso_8601": "2018-10-31T16:40:41.331865Z", "url": "https://files.pythonhosted.org/packages/d8/18/8d98d11d2a2533618037f7c2652a99093c736fc71a3c8c3274bcc0b91f0c/Fiona-1.8.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b74a32cee2f7d3fc48d97168811b6671", "sha256": "314a29bebd1b438d00c10e7f585a36d6682756bcdd0a504d39fb2e11d40cc726" }, "downloads": -1, "filename": "Fiona-1.8.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b74a32cee2f7d3fc48d97168811b6671", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17789672, "upload_time": "2018-10-31T16:33:03", "upload_time_iso_8601": "2018-10-31T16:33:03.363733Z", "url": "https://files.pythonhosted.org/packages/9d/42/89121b9f7c49c71d1a8e91f566351cf5d7adec61163608ce2f7183a9b56c/Fiona-1.8.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa96df74afb96d1e9d0c7facf3d4d852", "sha256": "7d0f13dac689a609cc86bd5e37dd55497b4d15c55098b20eb2d837e0da6e2dad" }, "downloads": -1, "filename": "Fiona-1.8.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "aa96df74afb96d1e9d0c7facf3d4d852", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24307043, "upload_time": "2018-10-31T16:42:08", "upload_time_iso_8601": "2018-10-31T16:42:08.889185Z", "url": "https://files.pythonhosted.org/packages/20/c2/426f3f6bc0d9ed96e3cb1d0e4ca679418a080f0cfbe2e89bcaaf727c5404/Fiona-1.8.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b27a44069fcf8533de9851bdd4f43e53", "sha256": "d6e1dd189c0625baf9f6b535c4cb50bc1c5e4364453f500e1d91cd3e9660498f" }, "downloads": -1, "filename": "Fiona-1.8.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b27a44069fcf8533de9851bdd4f43e53", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17800822, "upload_time": "2018-10-31T16:35:47", "upload_time_iso_8601": "2018-10-31T16:35:47.877578Z", "url": "https://files.pythonhosted.org/packages/1c/0d/9261c4417253346410773a3406f65210bee924bd7d0886d6d4fd434cc528/Fiona-1.8.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6eda86d5018f5df5f6f3c968521a93b", "sha256": "cf85162e040124d64670e259ed81945091342033c06351c456e909e96863e4ab" }, "downloads": -1, "filename": "Fiona-1.8.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c6eda86d5018f5df5f6f3c968521a93b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24359995, "upload_time": "2018-10-31T16:43:44", "upload_time_iso_8601": "2018-10-31T16:43:44.529656Z", "url": "https://files.pythonhosted.org/packages/78/65/0c73593bde179c277a270da614f538821f45c40ca293dcfea04076b5fbbb/Fiona-1.8.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ca6f48b1ecca3a41979c0bb33f5421f", "sha256": "8ac6f8299a94cfa337e91694ae0695d23d00aad58dad104d3253fbb03d26e9d6" }, "downloads": -1, "filename": "Fiona-1.8.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0ca6f48b1ecca3a41979c0bb33f5421f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17806887, "upload_time": "2018-10-31T16:37:03", "upload_time_iso_8601": "2018-10-31T16:37:03.925921Z", "url": "https://files.pythonhosted.org/packages/db/25/5f9f3d469086e82778e3b0c7da7a4adb805b1469f44737fcecc8ea94560f/Fiona-1.8.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de18fa43b1544e0be1103be35a3db858", "sha256": "c02d2455e3acf5b80b7924ec81a8e91dc3fa7843f84454649e84352ea5d0cb78" }, "downloads": -1, "filename": "Fiona-1.8.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "de18fa43b1544e0be1103be35a3db858", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24471261, "upload_time": "2018-10-31T16:45:15", "upload_time_iso_8601": "2018-10-31T16:45:15.721739Z", "url": "https://files.pythonhosted.org/packages/1e/04/62a8bfa28a97fed1ef9ad5844e4a3b30c575dd257609ae8d01baa5c5054e/Fiona-1.8.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d28341f986c76632a2095fc7bc4502b", "sha256": "100a7e040d71a7f7ca9ec5a7804533946ce162ea03bf7358384a9370cae36df6" }, "downloads": -1, "filename": "Fiona-1.8.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2d28341f986c76632a2095fc7bc4502b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17837529, "upload_time": "2018-10-31T16:38:08", "upload_time_iso_8601": "2018-10-31T16:38:08.807010Z", "url": "https://files.pythonhosted.org/packages/b7/71/a83ef0d5a77595026eb072784c1f8201a00cf80db5731930279a0fa717f1/Fiona-1.8.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1d4db525b32481694a218051d8212e1", "sha256": "437bb39eca421cbe287d57def7252110eb5f73937db0ef1cb39a3123713f616f" }, "downloads": -1, "filename": "Fiona-1.8.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a1d4db525b32481694a218051d8212e1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24412235, "upload_time": "2018-10-31T16:34:41", "upload_time_iso_8601": "2018-10-31T16:34:41.432878Z", "url": "https://files.pythonhosted.org/packages/b0/3e/38065e7de17a134eefb547d751a1442f932e4e672c8d3565d6cfacfa41e3/Fiona-1.8.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd2d9b5ee5607a86e25869cf958c3ce7", "sha256": "5dde13693ae1e33137327f4dd71e954021e3e06a19647d981ad0d2783e66df68" }, "downloads": -1, "filename": "Fiona-1.8.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fd2d9b5ee5607a86e25869cf958c3ce7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17834921, "upload_time": "2018-10-31T16:39:13", "upload_time_iso_8601": "2018-10-31T16:39:13.515123Z", "url": "https://files.pythonhosted.org/packages/0b/e2/39ac664c9d7fa5fe71cc5612023ebee4acad4c8f8e67506854f14d113ee7/Fiona-1.8.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7fafa9233ecb2e55d8005877bc802fed", "sha256": "20141a9ece06daa7bb4333fba640c2fe39a49f8aca5492d1da8595d41e91844a" }, "downloads": -1, "filename": "Fiona-1.8.0.tar.gz", "has_sig": false, "md5_digest": "7fafa9233ecb2e55d8005877bc802fed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1382681, "upload_time": "2018-10-31T16:48:22", "upload_time_iso_8601": "2018-10-31T16:48:22.658640Z", "url": "https://files.pythonhosted.org/packages/2a/bd/c1efc2680f338e5941121c776d6323af6b9698ac739e22ba523cee348a7f/Fiona-1.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "d92a67c6f6377f29934c7e37508cd479", "sha256": "35666ccc4fba29b1efc7f2c2682bedfea4e117187f379759e3b13d2ddf06ddde" }, "downloads": -1, "filename": "Fiona-1.8.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d92a67c6f6377f29934c7e37508cd479", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24381998, "upload_time": "2018-11-15T22:01:18", "upload_time_iso_8601": "2018-11-15T22:01:18.230785Z", "url": "https://files.pythonhosted.org/packages/6a/10/c8cabe6c68cca59486c5fb975d20ebdccb049a797da71c67615c6b95e0f6/Fiona-1.8.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19f893bbba35f1871861b0e76ec01547", "sha256": "be507039e80cbc15eee38b9c3f616a4c1359f833cc756c365357528794155da8" }, "downloads": -1, "filename": "Fiona-1.8.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "19f893bbba35f1871861b0e76ec01547", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17813865, "upload_time": "2018-11-15T21:55:26", "upload_time_iso_8601": "2018-11-15T21:55:26.552666Z", "url": "https://files.pythonhosted.org/packages/4a/37/13392254c81f9fe6a0701feba6f7eb9ffe839b82e75e80082c111f5ff70c/Fiona-1.8.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4906dd61619cce96971fd9170fa62a2d", "sha256": "248b428ada4407e42b0152ff8e48c6de3167ba50cbeff5b595a4043f9b4191fb" }, "downloads": -1, "filename": "Fiona-1.8.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "4906dd61619cce96971fd9170fa62a2d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24351333, "upload_time": "2018-11-15T22:02:45", "upload_time_iso_8601": "2018-11-15T22:02:45.205735Z", "url": "https://files.pythonhosted.org/packages/05/98/4366479de594b8267f16a5b8a12ed7d3db682b20506810c21f61f54de583/Fiona-1.8.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5b7410d6c26bd6deaf20fb170c3254a", "sha256": "d8a1bfccbed7de5bb916baa242a06c8bfa8e48fdf88564faacbc3516e96da5f9" }, "downloads": -1, "filename": "Fiona-1.8.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d5b7410d6c26bd6deaf20fb170c3254a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17825655, "upload_time": "2018-11-15T21:56:31", "upload_time_iso_8601": "2018-11-15T21:56:31.262667Z", "url": "https://files.pythonhosted.org/packages/3f/65/2583d70cbb81c8ccff196c4275c632d10e11148f66ff3a337ce2132c7e41/Fiona-1.8.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d39175d6045e5fc21be11be2a983ec6", "sha256": "676bb81fb573ab730ec97c5339ffb679f51499fb83448921faa538fd533c6166" }, "downloads": -1, "filename": "Fiona-1.8.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "9d39175d6045e5fc21be11be2a983ec6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24409150, "upload_time": "2018-11-15T22:04:12", "upload_time_iso_8601": "2018-11-15T22:04:12.195217Z", "url": "https://files.pythonhosted.org/packages/46/93/83cbdccc976045104d18935deead04e96a4d16376657ee83a561f7be0487/Fiona-1.8.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2254680cd92b802ec003a49f58423aab", "sha256": "680e9a6a1f4053f36018d9832b5ed9a62a075a74ae0a6e0a69b8682bc3e03e9a" }, "downloads": -1, "filename": "Fiona-1.8.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2254680cd92b802ec003a49f58423aab", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17832641, "upload_time": "2018-11-15T21:57:37", "upload_time_iso_8601": "2018-11-15T21:57:37.495227Z", "url": "https://files.pythonhosted.org/packages/86/6e/1676e14b7814cb28f75ae5ef20520423c34bbf2f4bb3f68abb12b4e327f2/Fiona-1.8.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6e51a0a2291fc94ad949ce495293f82", "sha256": "113a429cebc86bf2c5ba0dcbfd2365172633e9ea713ccd53f4756dce4470b045" }, "downloads": -1, "filename": "Fiona-1.8.1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a6e51a0a2291fc94ad949ce495293f82", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24526766, "upload_time": "2018-11-15T22:05:39", "upload_time_iso_8601": "2018-11-15T22:05:39.618312Z", "url": "https://files.pythonhosted.org/packages/f9/2e/d104131a1e4a24c6626c8d561a11a0e6473d4607b5dec13a2755499fbb6a/Fiona-1.8.1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0da7852add3123d0916efacb99be7a68", "sha256": "e186e7ecddd88fc72793b733d6abfe0da276df00afc4fef0adc4ed56d8481235" }, "downloads": -1, "filename": "Fiona-1.8.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0da7852add3123d0916efacb99be7a68", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17863155, "upload_time": "2018-11-15T21:58:43", "upload_time_iso_8601": "2018-11-15T21:58:43.026599Z", "url": "https://files.pythonhosted.org/packages/bb/7b/3378b9637dbe7aeceb33a53a546ba34d1089796321ce40cda13528f8d388/Fiona-1.8.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06cdb48337a4000da4571108c147010a", "sha256": "3280e8cdfba425ceafcb5bffd5bc203007b31acf31e4fb40b95606b0d0507359" }, "downloads": -1, "filename": "Fiona-1.8.1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "06cdb48337a4000da4571108c147010a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24465274, "upload_time": "2018-11-15T21:54:21", "upload_time_iso_8601": "2018-11-15T21:54:21.933095Z", "url": "https://files.pythonhosted.org/packages/b9/31/fee1c230e8fe13b02e52be17ba7cd6877ed240f6ca1354718476a0af08ab/Fiona-1.8.1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e0b5f495e3743433f1ab5a9e2d19efb", "sha256": "e819dbe30c4a2c935ef24863a3d0a3c34f91061b695933d3242572806ad1fc1a" }, "downloads": -1, "filename": "Fiona-1.8.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3e0b5f495e3743433f1ab5a9e2d19efb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17862170, "upload_time": "2018-11-15T21:59:51", "upload_time_iso_8601": "2018-11-15T21:59:51.152777Z", "url": "https://files.pythonhosted.org/packages/3c/db/11d309be1443c27156b070b50a8ea70428b09ac4e20ecfd0ef7244dbfc6c/Fiona-1.8.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6fd7890a11f06271d8522451813c8d74", "sha256": "4c34bb4c5cd788aaf14e5484c3b7de407b1a8a7c7b2d29bbb2e8b37931e83b8d" }, "downloads": -1, "filename": "Fiona-1.8.1.tar.gz", "has_sig": false, "md5_digest": "6fd7890a11f06271d8522451813c8d74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1127352, "upload_time": "2018-11-15T22:07:31", "upload_time_iso_8601": "2018-11-15T22:07:31.856517Z", "url": "https://files.pythonhosted.org/packages/3e/5f/0c6704efeea2ff3fba7f54cc6ec38070157f21bc1cffa7bdfa7c9f6b8f7a/Fiona-1.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.10": [ { "comment_text": "", "digests": { "md5": "f3e73d5ecfe08d505633864a00b34383", "sha256": "90f499f9d099e84f299c6e573915db3c9c616684d46ec0af52c13d90555bc7f2" }, "downloads": -1, "filename": "Fiona-1.8.10-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f3e73d5ecfe08d505633864a00b34383", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17783734, "upload_time": "2019-11-07T22:51:57", "upload_time_iso_8601": "2019-11-07T22:51:57.901070Z", "url": "https://files.pythonhosted.org/packages/ef/35/7ec40b73873a192af1eb7750ad5623ba5bed91257268285ba25d7c779fd0/Fiona-1.8.10-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c100577cf534acf8706dc510efb8e50", "sha256": "90722ce4c867c239d5d376396ad4f6ecf601150f1db218329f54427255b78b71" }, "downloads": -1, "filename": "Fiona-1.8.10-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8c100577cf534acf8706dc510efb8e50", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11760008, "upload_time": "2019-11-07T22:48:37", "upload_time_iso_8601": "2019-11-07T22:48:37.564606Z", "url": "https://files.pythonhosted.org/packages/70/40/f5f247901bf65a02ed93ae0b6e4b31416b7db7b1f0e0ff12338a4c15f1d5/Fiona-1.8.10-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d19f479571912420f2ba3c720629813", "sha256": "f24f80b3dcf2dcfe2aea15bad70fe925cd2055b44cbe0d74e3f61aa56dbcf2cd" }, "downloads": -1, "filename": "Fiona-1.8.10-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0d19f479571912420f2ba3c720629813", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17818219, "upload_time": "2019-11-07T22:53:03", "upload_time_iso_8601": "2019-11-07T22:53:03.911032Z", "url": "https://files.pythonhosted.org/packages/0a/27/8cb72235a00f458ff4e43985ccc4108339055d32bd3febf8543a90996ccd/Fiona-1.8.10-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4779fe58f51379563ee0e96415bd15fd", "sha256": "b145ef5da2ce8e91877015598656b6db4a9a2d3ce888c1d1b29f38465c2f23a8" }, "downloads": -1, "filename": "Fiona-1.8.10-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4779fe58f51379563ee0e96415bd15fd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11773904, "upload_time": "2019-11-07T22:49:22", "upload_time_iso_8601": "2019-11-07T22:49:22.872692Z", "url": "https://files.pythonhosted.org/packages/07/a8/6772b2925b09b0bb3af9d288d642f0575d2df335da97926cfc0fc1b04ff2/Fiona-1.8.10-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96e9c056aef973158a9173b497163712", "sha256": "e2ffc7a24fbfd5ae5b1abbbbc708324287102e602b7732dfd521920b453e9f76" }, "downloads": -1, "filename": "Fiona-1.8.10-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "96e9c056aef973158a9173b497163712", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17923219, "upload_time": "2019-11-07T22:54:09", "upload_time_iso_8601": "2019-11-07T22:54:09.294976Z", "url": "https://files.pythonhosted.org/packages/80/bd/9a1106f5a5007b7648a9ce9922529049ccffd74ca669c4916684570be129/Fiona-1.8.10-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8115dd55fbd648bcb09f51bce700c26a", "sha256": "c7f3bdfa1b18fc79c02f50ffbecc7e2ef45132fa72efb9dfaf3fc9ab146510bd" }, "downloads": -1, "filename": "Fiona-1.8.10-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8115dd55fbd648bcb09f51bce700c26a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11799569, "upload_time": "2019-11-07T22:50:07", "upload_time_iso_8601": "2019-11-07T22:50:07.342875Z", "url": "https://files.pythonhosted.org/packages/09/25/cbfb8f2a680f48db3780dd81540a38b7011cbebc9ba9e3c131f5a572970b/Fiona-1.8.10-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "053afa5a36637d0e2c65f8f47009cfc0", "sha256": "992f06b04a0d3cead21af1342eea8a2edcd83bb65a2c4ccec8489ac284f9fd29" }, "downloads": -1, "filename": "Fiona-1.8.10-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "053afa5a36637d0e2c65f8f47009cfc0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17866537, "upload_time": "2019-11-07T22:55:14", "upload_time_iso_8601": "2019-11-07T22:55:14.270858Z", "url": "https://files.pythonhosted.org/packages/e9/5e/9d7fbb16b207af6d3717c1622867e01872772065260e39e507a3c7a00457/Fiona-1.8.10-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "310bc5b590ea77a8e2f7743bb64136dc", "sha256": "4cad7b8db7be84215ef3c8135cb2e71a73edc4c50eb9f8722a3ee947d3ba13e5" }, "downloads": -1, "filename": "Fiona-1.8.10-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "310bc5b590ea77a8e2f7743bb64136dc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11799688, "upload_time": "2019-11-07T22:50:51", "upload_time_iso_8601": "2019-11-07T22:50:51.748884Z", "url": "https://files.pythonhosted.org/packages/97/e9/3dbdebbe43fa24a6d756b663702382a4c98cd15f1e7e4c12d235ab02cdc5/Fiona-1.8.10-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04d72e7b083960302671f2521f5061e9", "sha256": "ff562eb2f3960e21f8c7f050ddd7f47a763869ea14afc2234a40df72666c6a2c" }, "downloads": -1, "filename": "Fiona-1.8.10.tar.gz", "has_sig": false, "md5_digest": "04d72e7b083960302671f2521f5061e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1159615, "upload_time": "2019-11-07T22:55:51", "upload_time_iso_8601": "2019-11-07T22:55:51.946202Z", "url": "https://files.pythonhosted.org/packages/13/73/f80b491ed8559326fab202a6d6333a3cd6e8be1e9d782bc6c0d03d476457/Fiona-1.8.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.11": [ { "comment_text": "", "digests": { "md5": "7f4832330e6b7b0d282f677de30f5bb9", "sha256": "c2d6d30f706b743dd39b0f4b6978f3a76facd424b4f570060150b67daf1e9680" }, "downloads": -1, "filename": "Fiona-1.8.11-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "7f4832330e6b7b0d282f677de30f5bb9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17783734, "upload_time": "2019-11-08T03:33:36", "upload_time_iso_8601": "2019-11-08T03:33:36.372594Z", "url": "https://files.pythonhosted.org/packages/f5/1a/fd468b75d17a1fb3d48dc7f646f891468e88332aaf35bf4725ffc239f1cb/Fiona-1.8.11-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "018ec03c4a4a0d72aef0dfc54aa5b59e", "sha256": "580aa20c52bbfbb758d3ff96369a5fce44c6d5cb01d2822a69b144f5322fc184" }, "downloads": -1, "filename": "Fiona-1.8.11-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "018ec03c4a4a0d72aef0dfc54aa5b59e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11760030, "upload_time": "2019-11-08T03:30:16", "upload_time_iso_8601": "2019-11-08T03:30:16.051214Z", "url": "https://files.pythonhosted.org/packages/5f/f3/0cf0174f7beffb747fe0015e1069191698cda025b01d3dfb4bc0b0d30597/Fiona-1.8.11-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f33cb4e243bb5236285af41848e0fc0", "sha256": "67036d762044b74db18a76343a264f2093b44c4ae028212c0e21b8d26822d79c" }, "downloads": -1, "filename": "Fiona-1.8.11-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0f33cb4e243bb5236285af41848e0fc0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17818292, "upload_time": "2019-11-08T03:34:42", "upload_time_iso_8601": "2019-11-08T03:34:42.628607Z", "url": "https://files.pythonhosted.org/packages/f1/b9/25d2df7bb4ae15db2c51b147b45cd925a3cc52de36fec6c3d4ffb6aa21f1/Fiona-1.8.11-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7335d26cbfe54bc17e221907733deb7", "sha256": "8a5fe4d20066e405b80eac65804d9c8cba0204ef263b95200018236744705022" }, "downloads": -1, "filename": "Fiona-1.8.11-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b7335d26cbfe54bc17e221907733deb7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11773929, "upload_time": "2019-11-08T03:31:01", "upload_time_iso_8601": "2019-11-08T03:31:01.013840Z", "url": "https://files.pythonhosted.org/packages/2a/cc/25fba0f2958bf6e1dddf3ad944e51f1b9336060f079e24947c0495bd6f30/Fiona-1.8.11-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6dc7bfab9fb6492bc959f9e4dbe38321", "sha256": "f55cc9d11289cdae8f38f177523ac66848ace942f0f86e84f8004c6e6383c2fb" }, "downloads": -1, "filename": "Fiona-1.8.11-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "6dc7bfab9fb6492bc959f9e4dbe38321", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17923057, "upload_time": "2019-11-08T03:35:48", "upload_time_iso_8601": "2019-11-08T03:35:48.842845Z", "url": "https://files.pythonhosted.org/packages/2d/0f/72e2999c1ded88036172ffcfe6032e013d81e87fec300d96d59e64d0bc47/Fiona-1.8.11-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b562dfbe7d20b42bac8c4992c443c1f", "sha256": "1c9ff0f799d41570fd9e2d40bbad174bab8787e9149fed04364488349109b944" }, "downloads": -1, "filename": "Fiona-1.8.11-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0b562dfbe7d20b42bac8c4992c443c1f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11799589, "upload_time": "2019-11-08T03:31:45", "upload_time_iso_8601": "2019-11-08T03:31:45.910384Z", "url": "https://files.pythonhosted.org/packages/a6/8f/abad0244b2872fca20e49b149c6680a89171c3af9735e9dfa7eb33cc187a/Fiona-1.8.11-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3052dcb3964773b9c8c3a52094e5a34d", "sha256": "fea708ac21801cf5db752cc29040bbe27af47768c915b5be2050792eaefe15c1" }, "downloads": -1, "filename": "Fiona-1.8.11-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "3052dcb3964773b9c8c3a52094e5a34d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17866705, "upload_time": "2019-11-08T03:36:54", "upload_time_iso_8601": "2019-11-08T03:36:54.731166Z", "url": "https://files.pythonhosted.org/packages/95/ee/80dd701ddf8e6b9407598ddf7690a5efcb7ea44850f2a5513b46c572b918/Fiona-1.8.11-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8765b237daaba33aaf9da8f309573476", "sha256": "8cdc5c0519f15d8705b16907a96e2edb279ded1c071f8776d5b328b9fc8b3e92" }, "downloads": -1, "filename": "Fiona-1.8.11-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8765b237daaba33aaf9da8f309573476", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11799709, "upload_time": "2019-11-08T03:32:30", "upload_time_iso_8601": "2019-11-08T03:32:30.869721Z", "url": "https://files.pythonhosted.org/packages/59/59/f9970d95121d238399824ee542dc4b8c51cc4d897a5519281e942def369d/Fiona-1.8.11-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2417542c31d35f94db6ededf98bab055", "sha256": "1e7ca9e051f5bffa1c43c70d573da9ca223fc076b84fa73380614fc02b9eb7f6" }, "downloads": -1, "filename": "Fiona-1.8.11.tar.gz", "has_sig": false, "md5_digest": "2417542c31d35f94db6ededf98bab055", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1159654, "upload_time": "2019-11-08T03:43:31", "upload_time_iso_8601": "2019-11-08T03:43:31.939587Z", "url": "https://files.pythonhosted.org/packages/9d/f4/0a0ddc6174c4a93679b5f1dd3535e7ef8989828e6d5f86112de681f8c87b/Fiona-1.8.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.12": [ { "comment_text": "", "digests": { "md5": "8be069b1d67444c8852fdbcc8bc0e517", "sha256": "b5dba88ddb00cc13f8f9a3ba1653f6528709e35117dff44b4516abd568de1e40" }, "downloads": -1, "filename": "Fiona-1.8.12-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "8be069b1d67444c8852fdbcc8bc0e517", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17781377, "upload_time": "2019-12-05T07:38:49", "upload_time_iso_8601": "2019-12-05T07:38:49.915862Z", "url": "https://files.pythonhosted.org/packages/30/20/b1ff95117bdb82b756773ca406ae6a4b6d5bccc36b089480e30dab926451/Fiona-1.8.12-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08e1b6053129992d4cc795a3e66da198", "sha256": "3920ee2c0254414e3dfcb12be0e8d8487e87a1e5c4c8f9c06c77c823c6791ecc" }, "downloads": -1, "filename": "Fiona-1.8.12-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "08e1b6053129992d4cc795a3e66da198", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11790739, "upload_time": "2019-12-05T07:34:50", "upload_time_iso_8601": "2019-12-05T07:34:50.248379Z", "url": "https://files.pythonhosted.org/packages/51/97/b72a1552d7a4f7fbfabd4a940e4aafea050aaa6c1341b03d0be676a3ecaf/Fiona-1.8.12-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1bb936a5a9de94efbbd8d5f26069af0b", "sha256": "da0fb4a7ea1fff05dcc3dfd3a3b68ab3a6f0f3409b5267f6d46c6c1ef8243a45" }, "downloads": -1, "filename": "Fiona-1.8.12-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "1bb936a5a9de94efbbd8d5f26069af0b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17822318, "upload_time": "2019-12-05T07:39:54", "upload_time_iso_8601": "2019-12-05T07:39:54.025968Z", "url": "https://files.pythonhosted.org/packages/58/95/bc2ebb3ea4aec00b774feecd16732b1bf0cdfdc4484144549838e9527dd7/Fiona-1.8.12-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1337635aab68ec92b26e6b07c53a6d02", "sha256": "2d3b44fd924d56a479b3280b6a139d5b1e139ef61352ef12d7d625a53c88b804" }, "downloads": -1, "filename": "Fiona-1.8.12-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1337635aab68ec92b26e6b07c53a6d02", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11805339, "upload_time": "2019-12-05T07:35:33", "upload_time_iso_8601": "2019-12-05T07:35:33.810261Z", "url": "https://files.pythonhosted.org/packages/74/90/4102b2bc525bb147efe8f6fc90233da9a298610dba8fff72f3369a1ef8d2/Fiona-1.8.12-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b22a9af50e4d014cc1f01d5e6591136", "sha256": "64593716cb337e7335826bf7fb182adf181556ce22e4c3ebff91891a839bb0a3" }, "downloads": -1, "filename": "Fiona-1.8.12-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "7b22a9af50e4d014cc1f01d5e6591136", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17927313, "upload_time": "2019-12-05T07:40:58", "upload_time_iso_8601": "2019-12-05T07:40:58.950564Z", "url": "https://files.pythonhosted.org/packages/41/92/c13305df7350e1f8969927a890a2e713c987c37269f31da6286dd3ce95a2/Fiona-1.8.12-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3899e0d3c10b467947ddf02761ffb8e0", "sha256": "fd9fc5686a8a6c8fac6a7df5e05557aed6ee0fad9e567b287662b0258db41c1c" }, "downloads": -1, "filename": "Fiona-1.8.12-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3899e0d3c10b467947ddf02761ffb8e0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11832427, "upload_time": "2019-12-05T07:36:17", "upload_time_iso_8601": "2019-12-05T07:36:17.967768Z", "url": "https://files.pythonhosted.org/packages/7b/3a/c242daf38eaacf9c97f6d647a8a627d719e2161841baae909c3c20bc3383/Fiona-1.8.12-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "778251d5a9b9b4cfac4b2370ada30a95", "sha256": "a2b2dfc22c83c6f53b5025c7b895acd9fcb234aaea5bbd46480b87178d448fe9" }, "downloads": -1, "filename": "Fiona-1.8.12-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "778251d5a9b9b4cfac4b2370ada30a95", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17869579, "upload_time": "2019-12-05T07:42:03", "upload_time_iso_8601": "2019-12-05T07:42:03.396277Z", "url": "https://files.pythonhosted.org/packages/db/ce/e568e99ab5d7f1041ae01981bfaa5f9e97c9a4ab6f0b02b6a029433866e4/Fiona-1.8.12-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17f86e3c2300e7d54c1f2fc34f9e2187", "sha256": "4c36e077930da671d60e1dfe6d8f4a1921a630a428f8b4dc2febff78b0636847" }, "downloads": -1, "filename": "Fiona-1.8.12-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "17f86e3c2300e7d54c1f2fc34f9e2187", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11831721, "upload_time": "2019-12-05T07:37:01", "upload_time_iso_8601": "2019-12-05T07:37:01.910073Z", "url": "https://files.pythonhosted.org/packages/00/7c/542689d5be01968efc677752658b17b898c4ee153b240aba0679a998179e/Fiona-1.8.12-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09abb6bab86e3ebd9ddf879aefa1bcfe", "sha256": "5144c12218f42dbb7cafe1fe61933ef14be6fe17e61c3467ae14cd3b73b084e9" }, "downloads": -1, "filename": "Fiona-1.8.12-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "09abb6bab86e3ebd9ddf879aefa1bcfe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11746178, "upload_time": "2019-12-05T07:34:05", "upload_time_iso_8601": "2019-12-05T07:34:05.962080Z", "url": "https://files.pythonhosted.org/packages/f9/19/5eb36745cf77563916c0c37582198e8e4319822edfb535c66388ba3b0c2c/Fiona-1.8.12-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a318f777f76233ddd97a3644745f109d", "sha256": "77e500b44c8736ebcdddc9dfaa24edaa0fce76c539e91e1deaa23373d2a9550f" }, "downloads": -1, "filename": "Fiona-1.8.12-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a318f777f76233ddd97a3644745f109d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11813272, "upload_time": "2019-12-05T07:37:45", "upload_time_iso_8601": "2019-12-05T07:37:45.451108Z", "url": "https://files.pythonhosted.org/packages/e2/98/9858aed23b5912ea950addf9ae85592f349c64f0e71cbcd07dfffbcf46c2/Fiona-1.8.12-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "505a2a22ea784aed45094606977d4dfa", "sha256": "c9266ddf6ae2a64fcea20014ddf27f800ac07584f2fdb09c2a02f3b3a52e371c" }, "downloads": -1, "filename": "Fiona-1.8.12.tar.gz", "has_sig": false, "md5_digest": "505a2a22ea784aed45094606977d4dfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1160977, "upload_time": "2019-12-05T07:42:11", "upload_time_iso_8601": "2019-12-05T07:42:11.459953Z", "url": "https://files.pythonhosted.org/packages/97/d8/feab39987296437fbdc3029fb39752a14355d217d73b93471010b8dd63a3/Fiona-1.8.12.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.13": [ { "comment_text": "", "digests": { "md5": "a581889b390aa906bebbeebabc34510e", "sha256": "621d2230663f3fb95d60249e27fc8e2a6e456dc85f96bbfa9882a6b0a4ce0d1f" }, "downloads": -1, "filename": "Fiona-1.8.13-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a581889b390aa906bebbeebabc34510e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17781230, "upload_time": "2019-12-05T15:28:33", "upload_time_iso_8601": "2019-12-05T15:28:33.892347Z", "url": "https://files.pythonhosted.org/packages/a0/c2/6a1b1701a599e97887f4a986c627ed03e762426a7df2e1a31853941b317b/Fiona-1.8.13-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9168d1673d767e28cdd094111a2d79ae", "sha256": "976e91e056e818720510984970ec33f26b9744cdf52e586e08217bf34bfcb41e" }, "downloads": -1, "filename": "Fiona-1.8.13-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9168d1673d767e28cdd094111a2d79ae", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11790786, "upload_time": "2019-12-05T15:24:30", "upload_time_iso_8601": "2019-12-05T15:24:30.949085Z", "url": "https://files.pythonhosted.org/packages/89/dd/289641061a69bb9b302e9fd52e5532f8345f6b277d8f4c98419fbbef1a14/Fiona-1.8.13-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf3233045862fb00df0c2de1331af8dc", "sha256": "5f39bdf39421d79c22ae0b4e0e1169820812941206446b2294e6ca40646708fc" }, "downloads": -1, "filename": "Fiona-1.8.13-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "bf3233045862fb00df0c2de1331af8dc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17822194, "upload_time": "2019-12-05T15:29:39", "upload_time_iso_8601": "2019-12-05T15:29:39.479161Z", "url": "https://files.pythonhosted.org/packages/b1/c0/a7f09e34c9c9ea2e9291d1f75598ed559fd8af32666d3111e19eff1de6e5/Fiona-1.8.13-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4359a0acd5b63b3fd2b2b103f3f32f2d", "sha256": "3104311faeb10dc80e00c46734a92275d67efabe1fd6e835fec8a6f77c0920bf" }, "downloads": -1, "filename": "Fiona-1.8.13-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4359a0acd5b63b3fd2b2b103f3f32f2d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11805385, "upload_time": "2019-12-05T15:25:14", "upload_time_iso_8601": "2019-12-05T15:25:14.925016Z", "url": "https://files.pythonhosted.org/packages/03/68/d6a70cd10afc31c336d69e13c371ff0088e14390b310da1668a648afb19d/Fiona-1.8.13-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e281063a16f4c7158049d6cb3ad73bb2", "sha256": "b771a58e6b93357096934fa26d65d0cf308345340d694e4d346d3b39879e265c" }, "downloads": -1, "filename": "Fiona-1.8.13-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "e281063a16f4c7158049d6cb3ad73bb2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17927399, "upload_time": "2019-12-05T15:30:44", "upload_time_iso_8601": "2019-12-05T15:30:44.577478Z", "url": "https://files.pythonhosted.org/packages/7b/fd/265a636d7a096acbfa610b4d82425f2fe52ef07b0699f38b94a26184ed11/Fiona-1.8.13-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9125569c52dbda777389ebe6add018eb", "sha256": "5567efdba15eea935c581db94f3980ecbccecb4a7a5cd79651c8aed41c70a0fa" }, "downloads": -1, "filename": "Fiona-1.8.13-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9125569c52dbda777389ebe6add018eb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11832471, "upload_time": "2019-12-05T15:25:59", "upload_time_iso_8601": "2019-12-05T15:25:59.556127Z", "url": "https://files.pythonhosted.org/packages/50/f7/9899f8a9a2e38601472fe1079ce5088f58833221c8b8507d8b5eafd5404a/Fiona-1.8.13-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5937605e3c35fe9d7d776f72933ccc8", "sha256": "9347c2b8950575014ec233f6191e52d03ef68a5bb759a53a621b095610650a50" }, "downloads": -1, "filename": "Fiona-1.8.13-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "e5937605e3c35fe9d7d776f72933ccc8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17869546, "upload_time": "2019-12-05T15:31:50", "upload_time_iso_8601": "2019-12-05T15:31:50.452641Z", "url": "https://files.pythonhosted.org/packages/b2/9a/3cb5728fca91a642fdb1107dcb30c97ecffe25c841a7a4cfece680fd802a/Fiona-1.8.13-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43d7c03666f0437b31722d61e02b4d91", "sha256": "0742177422d20f72e69e499886f96e1cbf5ce0c9752f8320a05eddcb0f1c576a" }, "downloads": -1, "filename": "Fiona-1.8.13-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "43d7c03666f0437b31722d61e02b4d91", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11831766, "upload_time": "2019-12-05T15:26:43", "upload_time_iso_8601": "2019-12-05T15:26:43.422097Z", "url": "https://files.pythonhosted.org/packages/eb/b5/973cb6d5e6c2d3bdc71411e78b388387c04c658c76d73aee63db8da7eb58/Fiona-1.8.13-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02859c5189d76847be08895bfedb712e", "sha256": "83314cf2cbe50df24c290d241681964adf6fe9c0ba33a0a0f980a5f44008296b" }, "downloads": -1, "filename": "Fiona-1.8.13-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "02859c5189d76847be08895bfedb712e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11745523, "upload_time": "2019-12-05T15:23:46", "upload_time_iso_8601": "2019-12-05T15:23:46.980372Z", "url": "https://files.pythonhosted.org/packages/86/fd/880797d4448b28ea9fdca072abd4b4e266d87b984e979618cd6a6c9512b9/Fiona-1.8.13-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4209c8b6fabb5e8bae1fda17af27c703", "sha256": "f0adf55192ac715c1ac7a19ff1aacd667ffe251df0e09b9a6feeddce45849f17" }, "downloads": -1, "filename": "Fiona-1.8.13-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4209c8b6fabb5e8bae1fda17af27c703", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11813321, "upload_time": "2019-12-05T15:27:28", "upload_time_iso_8601": "2019-12-05T15:27:28.361798Z", "url": "https://files.pythonhosted.org/packages/75/2e/bbc6ce8ff34367f50a1ab173ee0d4d73473ef0d314b47a40357b12927d14/Fiona-1.8.13-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4f7e9e066045eabd4df0cee6a6087ec", "sha256": "5ec34898c8b983a723fb4e949dd3e0ed7e691c303e51f6bfd61e52ac9ac813ae" }, "downloads": -1, "filename": "Fiona-1.8.13.tar.gz", "has_sig": false, "md5_digest": "a4f7e9e066045eabd4df0cee6a6087ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1161029, "upload_time": "2019-12-05T15:31:58", "upload_time_iso_8601": "2019-12-05T15:31:58.050777Z", "url": "https://files.pythonhosted.org/packages/be/04/31d0a6f03943b1684f32c9b861be40c1fd282468fa6bd54ddf4a774e6b0f/Fiona-1.8.13.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.13.post1": [ { "comment_text": "", "digests": { "md5": "2c86ec59678c2ffb8be487646f28024a", "sha256": "6d6200a64f0f6fad431a767dd2da62706bf9f683be77bb157b6d0459bb263b7f" }, "downloads": -1, "filename": "Fiona-1.8.13.post1-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2c86ec59678c2ffb8be487646f28024a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13877472, "upload_time": "2020-02-22T23:43:32", "upload_time_iso_8601": "2020-02-22T23:43:32.812293Z", "url": "https://files.pythonhosted.org/packages/0f/c3/a69fb6d728dac89115521e3902c983407984ea92d33db099a76e87ae33e9/Fiona-1.8.13.post1-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93e14de69e1cd945a36fc947711a2e17", "sha256": "1c9c6e883e82298293042f7b7f51a5680f50d5a3bb1a61ad179b2d5f7f4d6952" }, "downloads": -1, "filename": "Fiona-1.8.13.post1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "93e14de69e1cd945a36fc947711a2e17", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14676138, "upload_time": "2020-02-22T23:39:05", "upload_time_iso_8601": "2020-02-22T23:39:05.853354Z", "url": "https://files.pythonhosted.org/packages/7d/3f/98f46f69bb14fe3811b446f8a54ff1ed54e53b07bb9dce3aae68252e5600/Fiona-1.8.13.post1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b13961fb6a5a0631b7c89cf2f3f0b67", "sha256": "781d29c21714da4c1c0f118b56bef936a1a935fead8878c22ab57a0d3875e412" }, "downloads": -1, "filename": "Fiona-1.8.13.post1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9b13961fb6a5a0631b7c89cf2f3f0b67", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13898761, "upload_time": "2020-02-22T23:44:26", "upload_time_iso_8601": "2020-02-22T23:44:26.525879Z", "url": "https://files.pythonhosted.org/packages/05/31/753f64ec0c8832e013d6b19ae7cdc9e17b982c3fdac712a11ff6b1a85f8b/Fiona-1.8.13.post1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85f452a74559a9129a41452050ce401d", "sha256": "7598ed3ce7a88941a2eab5ffa90b39f8f44113355c39abcbda6920eecdba26b4" }, "downloads": -1, "filename": "Fiona-1.8.13.post1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "85f452a74559a9129a41452050ce401d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14690738, "upload_time": "2020-02-22T23:40:00", "upload_time_iso_8601": "2020-02-22T23:40:00.331676Z", "url": "https://files.pythonhosted.org/packages/e8/22/6db5a18850507984e44c69094808ebb5859314751d33e0087829831a16b8/Fiona-1.8.13.post1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08d3f14f91e3bfd76432e7aaab90e64a", "sha256": "3c236a8f9ddfc23ac746f4988526cbed73b43f8f86613a0001c62feb415daadc" }, "downloads": -1, "filename": "Fiona-1.8.13.post1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "08d3f14f91e3bfd76432e7aaab90e64a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13952326, "upload_time": "2020-02-22T23:45:17", "upload_time_iso_8601": "2020-02-22T23:45:17.695594Z", "url": "https://files.pythonhosted.org/packages/22/60/71a32e43ece4437c98b822f472034a1b97efda46c018c327b03b921947fa/Fiona-1.8.13.post1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6af40a6de3c514e92247b40f3d4e5352", "sha256": "b8ad562b77c76dbff5a9298e1032c87714f079fc80752ca7c9c85edef52039aa" }, "downloads": -1, "filename": "Fiona-1.8.13.post1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6af40a6de3c514e92247b40f3d4e5352", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14717830, "upload_time": "2020-02-22T23:40:53", "upload_time_iso_8601": "2020-02-22T23:40:53.953811Z", "url": "https://files.pythonhosted.org/packages/ec/20/4e63bc5c6e62df889297b382c3ccd4a7a488b00946aaaf81a118158c6f09/Fiona-1.8.13.post1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c5ca485df977ec7ffcad352a56fe404", "sha256": "923a64bded457adee795b4f926b8cbb87d58bbafaabded77bc1d47abb2bba5c6" }, "downloads": -1, "filename": "Fiona-1.8.13.post1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2c5ca485df977ec7ffcad352a56fe404", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13921925, "upload_time": "2020-02-22T23:46:08", "upload_time_iso_8601": "2020-02-22T23:46:08.183560Z", "url": "https://files.pythonhosted.org/packages/1c/63/447c1f527aad417c9a54327a3aa4a26be7914865bc78e35e981762552849/Fiona-1.8.13.post1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6b7967b37f5793b599e4a31401d1461", "sha256": "79c3b80e00c9d055d20aead5d74319f54cdd1384e0d9e1a9e67446da2d74d89c" }, "downloads": -1, "filename": "Fiona-1.8.13.post1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e6b7967b37f5793b599e4a31401d1461", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14717126, "upload_time": "2020-02-22T23:41:48", "upload_time_iso_8601": "2020-02-22T23:41:48.595007Z", "url": "https://files.pythonhosted.org/packages/7d/a1/5c945c1751d926b203bd46ea9b0f0631ccf6797b58dafd1a97592ecbc7bb/Fiona-1.8.13.post1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfbd80a25e567b4d55ddd72546065893", "sha256": "c6e99bf596c2322e134833490611a612a8cce35a39c4c6499b7df919e24b482b" }, "downloads": -1, "filename": "Fiona-1.8.13.post1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "dfbd80a25e567b4d55ddd72546065893", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 13964713, "upload_time": "2020-02-22T23:35:25", "upload_time_iso_8601": "2020-02-22T23:35:25.038668Z", "url": "https://files.pythonhosted.org/packages/d4/35/cf907dc36290247419e59b4fd0525f2c26ef1a7a6e50e5a068213314be13/Fiona-1.8.13.post1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fd2c890c165e0d7184a76a611955140", "sha256": "6d30d755e9041a3380d85c1b2e09003f657c03a749fb02a3d36b191296f57f5d" }, "downloads": -1, "filename": "Fiona-1.8.13.post1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0fd2c890c165e0d7184a76a611955140", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14698669, "upload_time": "2020-02-22T23:42:42", "upload_time_iso_8601": "2020-02-22T23:42:42.188913Z", "url": "https://files.pythonhosted.org/packages/a1/fe/57853b79d4512db556f8c8c4820ec78553fe14b66c3854bfcb53763357d8/Fiona-1.8.13.post1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "446c05c0117842a8fbf55eb5d1aa2143", "sha256": "1a432bf9fd56f089256c010da009c90d4a795c531a848132c965052185336600" }, "downloads": -1, "filename": "Fiona-1.8.13.post1.tar.gz", "has_sig": false, "md5_digest": "446c05c0117842a8fbf55eb5d1aa2143", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1161268, "upload_time": "2020-02-22T23:35:33", "upload_time_iso_8601": "2020-02-22T23:35:33.206294Z", "url": "https://files.pythonhosted.org/packages/6d/42/f4a7cac53b28fa70e9a93d0e89a24d33e14826dad6644b699362ad84dde0/Fiona-1.8.13.post1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.14": [ { "comment_text": "", "digests": { "md5": "be8ee3656c61e71538f49fa8f3bafb76", "sha256": "b7266f5409655100c2abccab0e64d542e083523253a9765655fd96b41e25e6a0" }, "downloads": -1, "filename": "Fiona-1.8.14-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "be8ee3656c61e71538f49fa8f3bafb76", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14709376, "upload_time": "2020-09-01T01:55:39", "upload_time_iso_8601": "2020-09-01T01:55:39.704236Z", "url": "https://files.pythonhosted.org/packages/66/ba/7eb01ed73f1b2769b0265dffa42317b8467802d2a4e48677ef67921a6021/Fiona-1.8.14-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a737a76162b637772741e93c8c8916b3", "sha256": "17358422e9f18b112ad2099e2b818dc74f2aaebf43bd306bef3ab9853c5d632e" }, "downloads": -1, "filename": "Fiona-1.8.14-cp35-cp35m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "a737a76162b637772741e93c8c8916b3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13957612, "upload_time": "2020-09-01T01:57:01", "upload_time_iso_8601": "2020-09-01T01:57:01.708876Z", "url": "https://files.pythonhosted.org/packages/ef/cd/8f17e2d258db6e8bcddf24710fa60b745b97ffdedf8ca8311c986dab2e6d/Fiona-1.8.14-cp35-cp35m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74c0e6c7d26f236a2f00a581923ae2cc", "sha256": "e28b8041f0409f209ac964eba33ca536850871639db26c18183d603c6176d8c7" }, "downloads": -1, "filename": "Fiona-1.8.14-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "74c0e6c7d26f236a2f00a581923ae2cc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14722852, "upload_time": "2020-09-01T01:55:56", "upload_time_iso_8601": "2020-09-01T01:55:56.160154Z", "url": "https://files.pythonhosted.org/packages/e4/5a/7cefce3092a0f41d4fd34c75205a8a0c1ec73f1789d3c9dc0897eca8c2c9/Fiona-1.8.14-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6facdb1dabe608c2459479d7041d9141", "sha256": "56866efb3f7b258daf78a2a4aa4a1095af226f6bf7f2a04627d6b0c90d60b650" }, "downloads": -1, "filename": "Fiona-1.8.14-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6facdb1dabe608c2459479d7041d9141", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14010994, "upload_time": "2020-09-01T01:57:19", "upload_time_iso_8601": "2020-09-01T01:57:19.176594Z", "url": "https://files.pythonhosted.org/packages/c9/b9/e309fd6cbaf6f5d79a81f2c0a32edefc04e72584f7e3cefb4ab6c03e1cd9/Fiona-1.8.14-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f6c9e0602e7c394582389013b34fcb4", "sha256": "071417f75cfe02d969b094cf1c13442a8d3667ec845c2a512425a6dd00fe0f8e" }, "downloads": -1, "filename": "Fiona-1.8.14-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7f6c9e0602e7c394582389013b34fcb4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14748063, "upload_time": "2020-09-01T01:56:12", "upload_time_iso_8601": "2020-09-01T01:56:12.211989Z", "url": "https://files.pythonhosted.org/packages/35/72/7de5a2179b75242c69a97ef62b8b569197253e3ff85fe70ade62936608fe/Fiona-1.8.14-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdfbfbc3cddac338048b923278b08603", "sha256": "ec078f493acc29ba3b6b33573bb0bfd7b44555778c646378c24f35ef79b1053e" }, "downloads": -1, "filename": "Fiona-1.8.14-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bdfbfbc3cddac338048b923278b08603", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13979423, "upload_time": "2020-09-01T01:57:36", "upload_time_iso_8601": "2020-09-01T01:57:36.499010Z", "url": "https://files.pythonhosted.org/packages/64/6c/baea884b0176fb0b9de2a04ceb3cbdc3b19b5234c0974a689fb1ea54261a/Fiona-1.8.14-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f63060a8c3ffcd4b6cbecab768a5f59", "sha256": "10f7d8ae56ffa820b690a0d0556c0c473fd80a173910e60a0584af15897f4156" }, "downloads": -1, "filename": "Fiona-1.8.14-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7f63060a8c3ffcd4b6cbecab768a5f59", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14747817, "upload_time": "2020-09-01T01:56:28", "upload_time_iso_8601": "2020-09-01T01:56:28.384398Z", "url": "https://files.pythonhosted.org/packages/7e/a1/1e7577eb8c2e3a2f998e44c6b2be791be69e74e6f47b347c4c0b1d9f876e/Fiona-1.8.14-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "faaec36aa4a8af736a7f966d23350f97", "sha256": "a4b48e583d1556d5ec5a0c69e75a8e11067428afa08f1e3ceef17913b011a72e" }, "downloads": -1, "filename": "Fiona-1.8.14-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "faaec36aa4a8af736a7f966d23350f97", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14015521, "upload_time": "2020-09-01T01:57:52", "upload_time_iso_8601": "2020-09-01T01:57:52.107460Z", "url": "https://files.pythonhosted.org/packages/9b/67/e1cc90fb2aff50b0836d3f74f6c156648cbb4fd03cfdb655672f41e876ad/Fiona-1.8.14-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75edf3b20bfb3612564b19d8654d6831", "sha256": "0333a089d31385043e4e5be4dd0201bf290560cfe20258c0bf0fb0e0ca029bf5" }, "downloads": -1, "filename": "Fiona-1.8.14-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "75edf3b20bfb3612564b19d8654d6831", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14722232, "upload_time": "2020-09-01T01:56:44", "upload_time_iso_8601": "2020-09-01T01:56:44.573803Z", "url": "https://files.pythonhosted.org/packages/a0/fc/d46300eecdf4ebca9de8cc213db961307fb7d1ac5122b6023334a509ea07/Fiona-1.8.14-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b38714dea3ff02f8962da0f137390e61", "sha256": "6eac038206c89d2cf5f99ea38b81cc228dc21eac5f47870a9a32d453b0007f4d" }, "downloads": -1, "filename": "Fiona-1.8.14.tar.gz", "has_sig": false, "md5_digest": "b38714dea3ff02f8962da0f137390e61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1274781, "upload_time": "2020-09-01T01:58:22", "upload_time_iso_8601": "2020-09-01T01:58:22.466421Z", "url": "https://files.pythonhosted.org/packages/5c/fd/5ec54f2d9b3d5dd23dd443fad5630d6b872e2664814c68b856c47e0d65af/Fiona-1.8.14.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.15": [ { "comment_text": "", "digests": { "md5": "ff8ea4742e66a4b0488b9e643b8a682f", "sha256": "cf4090cfc0fae7e386b9af7a84ee95393e3f8c2187e148bea2a317814bd0c584" }, "downloads": -1, "filename": "Fiona-1.8.15-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ff8ea4742e66a4b0488b9e643b8a682f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14710324, "upload_time": "2020-09-04T00:05:43", "upload_time_iso_8601": "2020-09-04T00:05:43.838154Z", "url": "https://files.pythonhosted.org/packages/b5/b0/e9c331b69ca92ccb0451cc4db6820cb204a95b039d2f62c06b3f88e83d4c/Fiona-1.8.15-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11028bc1bf9bcab503944952b3305bd0", "sha256": "e7a77e8a65f216345411aa31246dea547a20167110db92554f0b002642540525" }, "downloads": -1, "filename": "Fiona-1.8.15-cp35-cp35m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "11028bc1bf9bcab503944952b3305bd0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13958445, "upload_time": "2020-09-04T00:06:33", "upload_time_iso_8601": "2020-09-04T00:06:33.245948Z", "url": "https://files.pythonhosted.org/packages/a3/66/59c483f78b4bd1c8ff7e24eea8d29cfa243047e6accdc637dda7b6deb49e/Fiona-1.8.15-cp35-cp35m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4333d190aca2b43eb04bf4d4ccb6803b", "sha256": "2a35818799fb95834e36834f8015197ee7dbbaf5a9a3888b67a79be519564e0a" }, "downloads": -1, "filename": "Fiona-1.8.15-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4333d190aca2b43eb04bf4d4ccb6803b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14722902, "upload_time": "2020-09-04T00:05:53", "upload_time_iso_8601": "2020-09-04T00:05:53.768830Z", "url": "https://files.pythonhosted.org/packages/48/e4/836ed9a03b5a5bcf560c359ba5c6c708c28b4cc1f67e18cd8b34acdf376b/Fiona-1.8.15-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46cfb40641e8211664cb7e6a3b8f6783", "sha256": "5a9b379d2e3dab8b145ca0fe5ae56ae915c7afd0893b4659e393ab2ac74b52f0" }, "downloads": -1, "filename": "Fiona-1.8.15-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "46cfb40641e8211664cb7e6a3b8f6783", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14011694, "upload_time": "2020-09-04T00:06:42", "upload_time_iso_8601": "2020-09-04T00:06:42.559261Z", "url": "https://files.pythonhosted.org/packages/2c/8d/4165ac291225a1b700c9c9f9ed0c5b3ec8525e8804d9744fdd9ff7135047/Fiona-1.8.15-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42464ca6852b25ea693f7ad6ff217ae7", "sha256": "9f8c111a4ddad913cc8c48a3664ef81299b56e04d9a4fa71ab0e9909df1c15e4" }, "downloads": -1, "filename": "Fiona-1.8.15-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "42464ca6852b25ea693f7ad6ff217ae7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14749529, "upload_time": "2020-09-04T00:06:03", "upload_time_iso_8601": "2020-09-04T00:06:03.840382Z", "url": "https://files.pythonhosted.org/packages/85/52/4ea26c566c401b2a7337549a42141a6552cf71744d970114e59126b05ed6/Fiona-1.8.15-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55f8ce2719435e33dd5f204986ba80df", "sha256": "6d9997aa61fcc742f11448962c0fc6cd20c8c5773188996a37ccb784a5759228" }, "downloads": -1, "filename": "Fiona-1.8.15-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "55f8ce2719435e33dd5f204986ba80df", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13979924, "upload_time": "2020-09-04T00:06:52", "upload_time_iso_8601": "2020-09-04T00:06:52.318556Z", "url": "https://files.pythonhosted.org/packages/1d/00/7754cfb71472e69d9c60a3ae388e77cea8fb5cf1a287884839effb19c668/Fiona-1.8.15-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46a3bc828e06c8aa69fe7efaa437f209", "sha256": "4390e27527941d6233878565413bbb8198d0964115ffa06ef3bb0740cb9048e5" }, "downloads": -1, "filename": "Fiona-1.8.15-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "46a3bc828e06c8aa69fe7efaa437f209", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14749614, "upload_time": "2020-09-04T00:06:13", "upload_time_iso_8601": "2020-09-04T00:06:13.702956Z", "url": "https://files.pythonhosted.org/packages/5c/0a/30a31f3e5203983723819c7e9edf868a5c58fdd73f87889d9778c5a61218/Fiona-1.8.15-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e0964f571f08f26bd8ffb0ad890c9ec", "sha256": "c98ef6eb1056e646ed1a79f1c86ccefdc5d8d9614952d02231a47f21c32006ee" }, "downloads": -1, "filename": "Fiona-1.8.15-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6e0964f571f08f26bd8ffb0ad890c9ec", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14015766, "upload_time": "2020-09-04T00:07:01", "upload_time_iso_8601": "2020-09-04T00:07:01.685089Z", "url": "https://files.pythonhosted.org/packages/0c/1a/72b797024b428393b45dbbb31e49a35a674b239f1ed2f925071bc13f3ada/Fiona-1.8.15-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5123572514f0e36511029f7108a0c57e", "sha256": "ee8458857ce2a2b44c42c7918fd4518331df906d3f1571ec2f89821a8473267f" }, "downloads": -1, "filename": "Fiona-1.8.15-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5123572514f0e36511029f7108a0c57e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14722139, "upload_time": "2020-09-04T00:06:23", "upload_time_iso_8601": "2020-09-04T00:06:23.994795Z", "url": "https://files.pythonhosted.org/packages/6f/a2/8d84e3b9da3136c4e5b25ce41474a492f9ac3dd042f446ffb88c643b781d/Fiona-1.8.15-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ad97af719a870853b5583cae785edd0", "sha256": "3b1c9b5c834fae2fe947cfaea176db890bc6750d1a6ba9f54d969c19ffcd191e" }, "downloads": -1, "filename": "Fiona-1.8.15.tar.gz", "has_sig": false, "md5_digest": "3ad97af719a870853b5583cae785edd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1271304, "upload_time": "2020-09-04T00:07:04", "upload_time_iso_8601": "2020-09-04T00:07:04.639013Z", "url": "https://files.pythonhosted.org/packages/55/2f/17450ec2c8fcc720a8a3e4d9a383499508475c7cfb90f7eca9fb585ac598/Fiona-1.8.15.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.16": [ { "comment_text": "", "digests": { "md5": "e86a1ce45a0b297cbaec21afeb710e17", "sha256": "a645af260f15de29f8924cce33f2af18b64fbef4a7ab654fe1caa8590f14e11a" }, "downloads": -1, "filename": "Fiona-1.8.16-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e86a1ce45a0b297cbaec21afeb710e17", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14711066, "upload_time": "2020-09-05T13:49:33", "upload_time_iso_8601": "2020-09-05T13:49:33.730538Z", "url": "https://files.pythonhosted.org/packages/b1/93/39fc4183b3252e14cf209577637c10070339b1c55bbcfe0dbe44116bb46e/Fiona-1.8.16-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e6d7b76cf32fe1a27c11b7a4c8e5552", "sha256": "cb28f94b92cdd07124907535a49dd7cd85ff0e2ee21b78f67a5b254b8cc4e8fa" }, "downloads": -1, "filename": "Fiona-1.8.16-cp35-cp35m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "5e6d7b76cf32fe1a27c11b7a4c8e5552", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13961185, "upload_time": "2020-09-05T13:50:23", "upload_time_iso_8601": "2020-09-05T13:50:23.621256Z", "url": "https://files.pythonhosted.org/packages/ac/34/8efdc267434a3e0e4953978298cd6f4ef1a4397da288221b454e91182d15/Fiona-1.8.16-cp35-cp35m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "badba7aecd8e75dd07ff5135ae918cc2", "sha256": "6a6b703aece9c794e5bac4d95512161c7b1fba27c1105c5d9ae66ee9cecba770" }, "downloads": -1, "filename": "Fiona-1.8.16-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "badba7aecd8e75dd07ff5135ae918cc2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14725001, "upload_time": "2020-09-05T13:49:43", "upload_time_iso_8601": "2020-09-05T13:49:43.822437Z", "url": "https://files.pythonhosted.org/packages/87/7b/ec7d4523f949b9adfd740817fb298f7b393bfe80cc97474fbe5f923af432/Fiona-1.8.16-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afae37aaf0bd2f86f3015be46c0feacc", "sha256": "27d369d82454314d9cfb6a0d2cebc2aacbda7c6931d75ccd90febe4ae2c22c5a" }, "downloads": -1, "filename": "Fiona-1.8.16-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "afae37aaf0bd2f86f3015be46c0feacc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14014534, "upload_time": "2020-09-05T13:50:32", "upload_time_iso_8601": "2020-09-05T13:50:32.708040Z", "url": "https://files.pythonhosted.org/packages/66/04/9ea265fa251394f729856f526bbb3a06ed667a1ada936eb494c00d8a3a4a/Fiona-1.8.16-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f65670298acd61ea8b782088c0b97d12", "sha256": "8704c6167f4e6dfb890930a045e833ccb24f9bc3e7db09201a9a0796f02eb607" }, "downloads": -1, "filename": "Fiona-1.8.16-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f65670298acd61ea8b782088c0b97d12", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14753408, "upload_time": "2020-09-05T13:49:53", "upload_time_iso_8601": "2020-09-05T13:49:53.462290Z", "url": "https://files.pythonhosted.org/packages/df/64/401a83297189682c7202f3da666bc1dd19054a7b03c8cd16b94c7ef37a5f/Fiona-1.8.16-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67e5cc5a00ce84866b17123aa33b8851", "sha256": "2f79c638e3024ac3ba68b1120727d777e60fa833f589b2151e8863e9bfeecacb" }, "downloads": -1, "filename": "Fiona-1.8.16-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "67e5cc5a00ce84866b17123aa33b8851", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13981276, "upload_time": "2020-09-05T13:50:41", "upload_time_iso_8601": "2020-09-05T13:50:41.609990Z", "url": "https://files.pythonhosted.org/packages/9e/52/c19e8ee531122cfa916348a9776b44bb71e8aed94cabb0932c9856adcfcc/Fiona-1.8.16-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c757437273362fb6b7690cc4fcdfd137", "sha256": "c419749b23748a099620bd0e8bf0f9e146ba77647684a1d3c62b8aecd984e65d" }, "downloads": -1, "filename": "Fiona-1.8.16-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c757437273362fb6b7690cc4fcdfd137", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14751248, "upload_time": "2020-09-05T13:50:03", "upload_time_iso_8601": "2020-09-05T13:50:03.862148Z", "url": "https://files.pythonhosted.org/packages/ab/da/4492d497dfc1a4e3ec7d47b5eea89ee8edba7b8ac800a2b35c888739b8ad/Fiona-1.8.16-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f79c9aaf38aa190d7f0dbd7fdba7f80", "sha256": "3f03a9e539f5592f0d68be506a555afe102404948bb515ae69648248fff3f38e" }, "downloads": -1, "filename": "Fiona-1.8.16-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4f79c9aaf38aa190d7f0dbd7fdba7f80", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14017523, "upload_time": "2020-09-05T13:50:51", "upload_time_iso_8601": "2020-09-05T13:50:51.750477Z", "url": "https://files.pythonhosted.org/packages/35/b8/12a7004772da26dedbc17d7b578fa00c998e6458230b8c5fce20217928f2/Fiona-1.8.16-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "918552b6d3afff56575adc3a36820d78", "sha256": "2e9a42d3b1c7439e225bfd00c5bd5135e5506b9d2dc28b48fd916c2c506b404e" }, "downloads": -1, "filename": "Fiona-1.8.16-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "918552b6d3afff56575adc3a36820d78", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14724327, "upload_time": "2020-09-05T13:50:13", "upload_time_iso_8601": "2020-09-05T13:50:13.820728Z", "url": "https://files.pythonhosted.org/packages/a6/6c/7fa2df2df4626951547116809381bd6ed28901f088ad000b9f327bde2f4b/Fiona-1.8.16-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3026249ffce4d0335efe7bfabe4aa9ac", "sha256": "fd6dfb65959becc916e9f6928618bfd59c16cdbc413ece0fbac61489cd11255f" }, "downloads": -1, "filename": "Fiona-1.8.16.tar.gz", "has_sig": false, "md5_digest": "3026249ffce4d0335efe7bfabe4aa9ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1273449, "upload_time": "2020-09-05T13:50:54", "upload_time_iso_8601": "2020-09-05T13:50:54.522790Z", "url": "https://files.pythonhosted.org/packages/1e/60/dfc6115a11338d8aa96cacd8c60635223d9c97d61d556c90acc5dfd663fa/Fiona-1.8.16.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.17": [ { "comment_text": "", "digests": { "md5": "a1389ee08c0a25a0238837053edd65dd", "sha256": "2563d9a9f21390a7376556c82d9cef90a20a362949a9c7cb66f4ce63d90b66cd" }, "downloads": -1, "filename": "Fiona-1.8.17-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a1389ee08c0a25a0238837053edd65dd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14710300, "upload_time": "2020-09-10T13:59:27", "upload_time_iso_8601": "2020-09-10T13:59:27.256659Z", "url": "https://files.pythonhosted.org/packages/e6/e7/13e804970c9b0bfd14afa1075d98c460c30297da6944332a298f3f028198/Fiona-1.8.17-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "890c704c1ddf6e53c113162e3526572e", "sha256": "5558d925d67f5b08d0bdb3d58f3611b2e9d4f070cb9b026bbdd52b6d487d5e03" }, "downloads": -1, "filename": "Fiona-1.8.17-cp35-cp35m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "890c704c1ddf6e53c113162e3526572e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13961533, "upload_time": "2020-09-10T14:00:18", "upload_time_iso_8601": "2020-09-10T14:00:18.126791Z", "url": "https://files.pythonhosted.org/packages/7d/e6/871437996371b1fbdd925b7dab1d871641850ef714a9a19900da9d895370/Fiona-1.8.17-cp35-cp35m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ea54afad3cfe2d57f360374f3419b5e", "sha256": "fcfd8b67403de9b1cc53c045c72542e9f30cb15e617c89c41b928046a9b27daa" }, "downloads": -1, "filename": "Fiona-1.8.17-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8ea54afad3cfe2d57f360374f3419b5e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14725656, "upload_time": "2020-09-10T13:59:38", "upload_time_iso_8601": "2020-09-10T13:59:38.489675Z", "url": "https://files.pythonhosted.org/packages/2f/99/13ea0f0bcde28704eb1d8e2ba8c39288a2e468fa7cba285aec73ff4cafac/Fiona-1.8.17-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea4e346be77ac4ff4f2fc31280e288d7", "sha256": "4743fd04e3c1d88619e3c1e1266b826427c4e3fcf1286abbda8d3480028781bf" }, "downloads": -1, "filename": "Fiona-1.8.17-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ea4e346be77ac4ff4f2fc31280e288d7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14014807, "upload_time": "2020-09-10T14:00:27", "upload_time_iso_8601": "2020-09-10T14:00:27.210970Z", "url": "https://files.pythonhosted.org/packages/16/4d/d9f6d026777ad52b77ba5f6f4a4b261eee625c08c785a2e65f133dd3f0e8/Fiona-1.8.17-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40e492dbb3f2c1ed1c287318c4ee22af", "sha256": "84131992cc664d531c93d1d4860c4b7ceac0516a2f31b9cd71823889c21fa67d" }, "downloads": -1, "filename": "Fiona-1.8.17-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "40e492dbb3f2c1ed1c287318c4ee22af", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14751076, "upload_time": "2020-09-10T13:59:48", "upload_time_iso_8601": "2020-09-10T13:59:48.646821Z", "url": "https://files.pythonhosted.org/packages/36/8b/e8b2c11bed5373c8e98edb85ce891b09aa1f4210fd451d0fb3696b7695a2/Fiona-1.8.17-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6551dda924b638c13437148cca92e220", "sha256": "d38a6ef59087b5a20ad7298608c5392e37705ff14d27b44435e04072bbf6632c" }, "downloads": -1, "filename": "Fiona-1.8.17-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6551dda924b638c13437148cca92e220", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13981497, "upload_time": "2020-09-10T14:00:37", "upload_time_iso_8601": "2020-09-10T14:00:37.319259Z", "url": "https://files.pythonhosted.org/packages/f9/be/a9f3f26036cc7f1e819773e1d43930338926124aa2c8c797bc0526da9f9f/Fiona-1.8.17-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce50716e5f7523b4c94adaf9629476e6", "sha256": "7f101957734898d2ad694be8d2bdd3f3e4f722387d3972c89dcedcae6b6c4bb7" }, "downloads": -1, "filename": "Fiona-1.8.17-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ce50716e5f7523b4c94adaf9629476e6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14750748, "upload_time": "2020-09-10T13:59:58", "upload_time_iso_8601": "2020-09-10T13:59:58.754778Z", "url": "https://files.pythonhosted.org/packages/90/e9/e35ca922b080c408521ed4fa2fe6e1019ef7a450e577167362c1306ca503/Fiona-1.8.17-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e021f097e52e80a34598d2b1b3491c3b", "sha256": "c9adb0c4245aec2d642727e027b79b862be4ffa13bdcc65b7ea5f9405cec492c" }, "downloads": -1, "filename": "Fiona-1.8.17-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e021f097e52e80a34598d2b1b3491c3b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14017823, "upload_time": "2020-09-10T14:00:46", "upload_time_iso_8601": "2020-09-10T14:00:46.697971Z", "url": "https://files.pythonhosted.org/packages/1a/81/cc931fc39fa2c221f6da1fc9d2c25fd785877b091f5cfd9db1bb27745656/Fiona-1.8.17-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f4d10c30be9b2105a2b49e09ebae38a", "sha256": "cfeed61eb411ddc30f5048c43f3dfc0c03a97603dfa2bdc2ee16d5d063ff24b4" }, "downloads": -1, "filename": "Fiona-1.8.17-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6f4d10c30be9b2105a2b49e09ebae38a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14725002, "upload_time": "2020-09-10T14:00:08", "upload_time_iso_8601": "2020-09-10T14:00:08.163200Z", "url": "https://files.pythonhosted.org/packages/a1/90/6aea66d6aa6bcb8c1a849e6281a588d32d4063d80396310be401ead78a06/Fiona-1.8.17-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87a80f9143b06d69f5f193495484999e", "sha256": "716201c21246587f374785bec6d6a20a984fe1f6c2b0e83bf15127eb8f724d0c" }, "downloads": -1, "filename": "Fiona-1.8.17.tar.gz", "has_sig": false, "md5_digest": "87a80f9143b06d69f5f193495484999e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1273993, "upload_time": "2020-09-10T14:00:49", "upload_time_iso_8601": "2020-09-10T14:00:49.934786Z", "url": "https://files.pythonhosted.org/packages/88/62/69347ba2c41b526e1953c4cb66d51170b2869808863c03af202ba0121670/Fiona-1.8.17.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.18": [ { "comment_text": "", "digests": { "md5": "19013fa293c7161e5ea89acd2cc323b7", "sha256": "c64cc0bab040c3a2aec12edd2e1407e3b52609117d9a9a471e3d25172abb1e5e" }, "downloads": -1, "filename": "Fiona-1.8.18-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "19013fa293c7161e5ea89acd2cc323b7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14721618, "upload_time": "2020-11-17T18:32:17", "upload_time_iso_8601": "2020-11-17T18:32:17.928152Z", "url": "https://files.pythonhosted.org/packages/7d/e1/4911799187b5a58d90dc989020bac88f74c0ce41e0310be7515be2588abb/Fiona-1.8.18-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d4e901a4c9cfbbaff556240971a290f", "sha256": "8891d25bcb795eec2294390b56426fded566bcc8ed3730dac7e7a61cde71f1b5" }, "downloads": -1, "filename": "Fiona-1.8.18-cp35-cp35m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "3d4e901a4c9cfbbaff556240971a290f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14762204, "upload_time": "2020-11-17T18:33:09", "upload_time_iso_8601": "2020-11-17T18:33:09.971675Z", "url": "https://files.pythonhosted.org/packages/c9/d5/9208358d1ead96476bf16b846f0ae93ffee38c3f1e2ee7aff5f22c4989f4/Fiona-1.8.18-cp35-cp35m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4b1108a500bd8ef66601d93a1e23bea", "sha256": "9fdaaebd5b1b2dd59a0bce9f8ca3e3fba3ef86346be603985590773e4822a543" }, "downloads": -1, "filename": "Fiona-1.8.18-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b4b1108a500bd8ef66601d93a1e23bea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14733562, "upload_time": "2020-11-17T18:32:28", "upload_time_iso_8601": "2020-11-17T18:32:28.606185Z", "url": "https://files.pythonhosted.org/packages/29/25/c457b865090f603ba20847fdf02be7c7d7a548690eee809ead3381fe8b37/Fiona-1.8.18-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8a27ac9cc17eb9e5ecd71c273445ad4", "sha256": "8a818fa6cd1ae7ef3b3061ca8f52b694557d2fcf303d7c5431dd961ea09a5ccf" }, "downloads": -1, "filename": "Fiona-1.8.18-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e8a27ac9cc17eb9e5ecd71c273445ad4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14819915, "upload_time": "2020-11-17T18:33:20", "upload_time_iso_8601": "2020-11-17T18:33:20.214639Z", "url": "https://files.pythonhosted.org/packages/ce/14/c436970b31c5b0e0a6b576eb29712ca4fb11335fac5997ea6758410b3397/Fiona-1.8.18-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9911bc1866ba2fd19d0f6f2b3ed33d13", "sha256": "e34612996121a66559fac9013fd30d8200ed17df54c71edf63461a8b6f519cf5" }, "downloads": -1, "filename": "Fiona-1.8.18-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9911bc1866ba2fd19d0f6f2b3ed33d13", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14762891, "upload_time": "2020-11-17T18:32:39", "upload_time_iso_8601": "2020-11-17T18:32:39.108651Z", "url": "https://files.pythonhosted.org/packages/37/94/4910fd55246c1d963727b03885ead6ef1cd3748a465f7b0239ab25dfc9a3/Fiona-1.8.18-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd1f3bdf622072448650536b0e9767ae", "sha256": "c0ec331f9cf43bb3399d41a04f8b7ee5ebddea93de3e780fba98f3bf75b39eb3" }, "downloads": -1, "filename": "Fiona-1.8.18-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bd1f3bdf622072448650536b0e9767ae", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14781908, "upload_time": "2020-11-17T18:33:30", "upload_time_iso_8601": "2020-11-17T18:33:30.151946Z", "url": "https://files.pythonhosted.org/packages/e2/e7/be804c22a21678d79753662e1a10330654c3b748d9f880fcabfa1130943e/Fiona-1.8.18-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a353f58444f34faae68f2f740d5e104", "sha256": "67df21101e185bbb611846138a3094ee3196b746aa336be3db3a64d7971b8fed" }, "downloads": -1, "filename": "Fiona-1.8.18-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1a353f58444f34faae68f2f740d5e104", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14760705, "upload_time": "2020-11-17T18:32:49", "upload_time_iso_8601": "2020-11-17T18:32:49.385789Z", "url": "https://files.pythonhosted.org/packages/47/c2/67d1d0acbaaee3b03e5e22e3b96c33219cb5dd392531c9ff9cee7c2eb3e4/Fiona-1.8.18-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41b0d15d75a58352a2a8fe586645f3a1", "sha256": "b5a77bcd113dfa2424ff97190b3dc907640777615490e55777e8042a5b84ed78" }, "downloads": -1, "filename": "Fiona-1.8.18-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "41b0d15d75a58352a2a8fe586645f3a1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14825951, "upload_time": "2020-11-17T18:33:40", "upload_time_iso_8601": "2020-11-17T18:33:40.807026Z", "url": "https://files.pythonhosted.org/packages/29/17/fc88580dbcf2083a8b9a5cadbdb1aaebd3bdc762d3cdd1072f6cb4875e5a/Fiona-1.8.18-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ef82a52cd7de01af0cac9427ed54e83", "sha256": "a3de7c1da06bc036dcd8954fa30e089587af335d4e549539169b1de9fe8badba" }, "downloads": -1, "filename": "Fiona-1.8.18-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1ef82a52cd7de01af0cac9427ed54e83", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14734279, "upload_time": "2020-11-17T18:32:59", "upload_time_iso_8601": "2020-11-17T18:32:59.364645Z", "url": "https://files.pythonhosted.org/packages/09/d4/2bd7a925a5026a27dc932cef7bd025b08a5e3e8c10c6d60fce9d2b7f2c5d/Fiona-1.8.18-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffcc7897a83d91420874b5baa3bcfcf6", "sha256": "1c26f38bfbcd51e710c361f26db605ccf2b5f2a7967e0f4a88683cac3845c947" }, "downloads": -1, "filename": "Fiona-1.8.18-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ffcc7897a83d91420874b5baa3bcfcf6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 14732145, "upload_time": "2020-11-26T16:12:38", "upload_time_iso_8601": "2020-11-26T16:12:38.454983Z", "url": "https://files.pythonhosted.org/packages/26/30/b008d2c34be871a831b46360d36e157d8d7eb23bb55cf16fbcbf94636a93/Fiona-1.8.18-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d2b52b454ae232009f46f6cda88fcf7", "sha256": "b732ece0ff8886a29c439723a3e1fc382718804bb057519d537a81308854967a" }, "downloads": -1, "filename": "Fiona-1.8.18.tar.gz", "has_sig": false, "md5_digest": "4d2b52b454ae232009f46f6cda88fcf7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1286269, "upload_time": "2020-11-17T18:33:43", "upload_time_iso_8601": "2020-11-17T18:33:43.939595Z", "url": "https://files.pythonhosted.org/packages/9f/e8/401cdaa58d862a25c4b3365acf7d2bd7ac77191e3dc9acdcdac0eff20ff0/Fiona-1.8.18.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.19": [ { "comment_text": "", "digests": { "md5": "d5833e5e5b509720863975c8f276b460", "sha256": "4e54e9b176f42aa1243dbc9f89509866dc0242cffdde40948d0055041bc80735" }, "downloads": -1, "filename": "Fiona-1.8.19-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d5833e5e5b509720863975c8f276b460", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19326397, "upload_time": "2021-04-07T21:57:31", "upload_time_iso_8601": "2021-04-07T21:57:31.751386Z", "url": "https://files.pythonhosted.org/packages/62/1a/dda1a5bfe5dffdd3e8f02a97b0b46e8df840a06f2f5725bcf4430798e00b/Fiona-1.8.19-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e99bc03ab8435f062c5362d5bb663bfc", "sha256": "dd6ce1f64b535ad923d72a6e08eff3becb75d8f416e51c221c06c4fe49b86e3b" }, "downloads": -1, "filename": "Fiona-1.8.19-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e99bc03ab8435f062c5362d5bb663bfc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15298403, "upload_time": "2021-04-07T21:56:49", "upload_time_iso_8601": "2021-04-07T21:56:49.594521Z", "url": "https://files.pythonhosted.org/packages/a6/45/85a48737bf6e8d1e5c20e80bf3ce104172a391c7a876490cdb82cfc2f7bd/Fiona-1.8.19-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bed4e0481d48abf019a540b26b32cfd", "sha256": "553036b0891d5a8747759b7e16708e816e0dbb55322f392df7ebcb777133ef78" }, "downloads": -1, "filename": "Fiona-1.8.19-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9bed4e0481d48abf019a540b26b32cfd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19288745, "upload_time": "2021-04-07T21:57:43", "upload_time_iso_8601": "2021-04-07T21:57:43.905950Z", "url": "https://files.pythonhosted.org/packages/cf/44/c5092bd97103c0cd2d5bc7dda09659d8138627f15c1c820a004d773641a9/Fiona-1.8.19-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b202f708ae6f9bf3a640b212e3ff9278", "sha256": "e4a59f0d9044a4aeb2d8f098888a5c117997e45106b3382badc395d28b32d533" }, "downloads": -1, "filename": "Fiona-1.8.19-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b202f708ae6f9bf3a640b212e3ff9278", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15295471, "upload_time": "2021-04-07T21:56:59", "upload_time_iso_8601": "2021-04-07T21:56:59.902296Z", "url": "https://files.pythonhosted.org/packages/ea/2a/404b22883298a3efe9c6ef8d67acbf2c38443fa366ee9cd4cd34e17626ea/Fiona-1.8.19-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87eb69dd68766dca7c8c471adc02295c", "sha256": "658ce97ccd4022d4de75d2f68a087e9e74d5a894a2f8635fbb74d1a6bd9ddd49" }, "downloads": -1, "filename": "Fiona-1.8.19-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "87eb69dd68766dca7c8c471adc02295c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 19299422, "upload_time": "2021-04-07T21:57:55", "upload_time_iso_8601": "2021-04-07T21:57:55.920251Z", "url": "https://files.pythonhosted.org/packages/db/bb/1a3f687bf392cf28e1223eb5bece0a4a56de2dce69719df2f4b6cfb7fa0b/Fiona-1.8.19-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4df29bece6b435671e3dd4ff59ea011", "sha256": "c0e509661ed89f831218a17ba46a3d978be6f07491889d9b434888cfe646768f" }, "downloads": -1, "filename": "Fiona-1.8.19-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b4df29bece6b435671e3dd4ff59ea011", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15269882, "upload_time": "2021-04-07T21:57:10", "upload_time_iso_8601": "2021-04-07T21:57:10.260241Z", "url": "https://files.pythonhosted.org/packages/40/c1/8eceb54e2556a6cf8509214e1a7c234c505f45e5b0e0492d3cdc09f6f8d6/Fiona-1.8.19-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7928d02aa0eda63d10cf7808c6f13203", "sha256": "7728aa64f2955cf4b4cc15edbe4a49b423557b586fb3d2b25543ff297289be7f" }, "downloads": -1, "filename": "Fiona-1.8.19-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7928d02aa0eda63d10cf7808c6f13203", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 19304118, "upload_time": "2021-04-26T15:53:35", "upload_time_iso_8601": "2021-04-26T15:53:35.320181Z", "url": "https://files.pythonhosted.org/packages/81/9a/5c0684c427bdd3723e6d7addc1de90f09dc45391ad26bdc0e94ffaa859ce/Fiona-1.8.19-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "844c0362f7c27f7cf7870b1e8dfa661f", "sha256": "6155f3be8ba00591898b1cdde06bef20901b25a4d3c2b4cf842c278a5169e65a" }, "downloads": -1, "filename": "Fiona-1.8.19-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "844c0362f7c27f7cf7870b1e8dfa661f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15266832, "upload_time": "2021-04-07T21:57:19", "upload_time_iso_8601": "2021-04-07T21:57:19.980189Z", "url": "https://files.pythonhosted.org/packages/6d/14/20add0e6d12ab1f0d6c1909ee3588a75cd5c4661240d4b3ca5416c653d25/Fiona-1.8.19-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cab8212a812e73d0dd51489b260ef88", "sha256": "b9059e0b29c2e9e6b817e53f941e77e1aca7075f986005d38db307067b60458f" }, "downloads": -1, "filename": "Fiona-1.8.19.tar.gz", "has_sig": false, "md5_digest": "0cab8212a812e73d0dd51489b260ef88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1286561, "upload_time": "2021-04-07T21:57:59", "upload_time_iso_8601": "2021-04-07T21:57:59.189479Z", "url": "https://files.pythonhosted.org/packages/a0/d9/6042aeb073d11341f7726de0586ff71c13117c34959dcf07bd4ee6d4b93e/Fiona-1.8.19.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "690f682e45dc89d974adcf0b0586e475", "sha256": "924c5a62014657433e6d3ec0bad255ba334a700ad4870ae24095a678d238b270" }, "downloads": -1, "filename": "Fiona-1.8.2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "690f682e45dc89d974adcf0b0586e475", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24383260, "upload_time": "2018-11-19T21:57:10", "upload_time_iso_8601": "2018-11-19T21:57:10.070276Z", "url": "https://files.pythonhosted.org/packages/79/e4/2ad2c8576bec9178b95b1240001287ff094d00c53225cbcda123e25f9b91/Fiona-1.8.2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a52279dc15c8400027a7c8f12c63b6d4", "sha256": "c8eaf337ae7d5eb12ba6602c3ff767072ecbb82333cc071ef8ef07b1b77c9e7f" }, "downloads": -1, "filename": "Fiona-1.8.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a52279dc15c8400027a7c8f12c63b6d4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17814556, "upload_time": "2018-11-19T21:55:55", "upload_time_iso_8601": "2018-11-19T21:55:55.688995Z", "url": "https://files.pythonhosted.org/packages/e7/b8/bbb2295d41ea69a488861dfba566b43ae255634565d8d0ccb163d992bc30/Fiona-1.8.2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57448aaa770237fa2386c574460a0092", "sha256": "65535b306fd4643e6e739277388a2c4b6f74ae2ea14257d3eb9a83be0619fb15" }, "downloads": -1, "filename": "Fiona-1.8.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "57448aaa770237fa2386c574460a0092", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24352632, "upload_time": "2018-11-19T21:57:22", "upload_time_iso_8601": "2018-11-19T21:57:22.801724Z", "url": "https://files.pythonhosted.org/packages/3e/dc/e4e2bb31cee31b929ba3d137e34dc619c4302d1f1c33f55df672c9f8ec0b/Fiona-1.8.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dcd2b14ec6ca1e93828299c3829e47e6", "sha256": "c6d554551aeac9a8b6cef92e58523b5512c3db830f29431b0dd314c6aec5747a" }, "downloads": -1, "filename": "Fiona-1.8.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dcd2b14ec6ca1e93828299c3829e47e6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17828976, "upload_time": "2018-11-19T21:56:27", "upload_time_iso_8601": "2018-11-19T21:56:27.827950Z", "url": "https://files.pythonhosted.org/packages/67/c9/06a6e7182b027b52e2db870264828373caf2ea26ce6d7d27fd57a34d4388/Fiona-1.8.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2079bc252c4952c870a27ad58ea37ae", "sha256": "f8252f637b9997ddbd33293398e672431223828d87421355db792937d94e0fe3" }, "downloads": -1, "filename": "Fiona-1.8.2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a2079bc252c4952c870a27ad58ea37ae", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24410494, "upload_time": "2018-11-19T21:57:35", "upload_time_iso_8601": "2018-11-19T21:57:35.372571Z", "url": "https://files.pythonhosted.org/packages/58/e1/3580253ef6f628d936c40465ba708d04ca870fec2da7efae493e45ef2588/Fiona-1.8.2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a007afa979ab81852b6521014aa13d4", "sha256": "25bd3ba5b603a9d7acf4ac5d706f5f531ce79b97fa20b9b96642dfcd20249e93" }, "downloads": -1, "filename": "Fiona-1.8.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2a007afa979ab81852b6521014aa13d4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17833070, "upload_time": "2018-11-19T21:56:38", "upload_time_iso_8601": "2018-11-19T21:56:38.061412Z", "url": "https://files.pythonhosted.org/packages/cc/28/f1a7e7195aeba041598af616e8de5deacae13881a0cad355b11805fef6fa/Fiona-1.8.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e59fa4fbdd8de29ac25b273082b3b26", "sha256": "e2a7a0df6bd7701e1ee696798d720487ded064e0a5312f0b149d64d1e703862a" }, "downloads": -1, "filename": "Fiona-1.8.2-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "3e59fa4fbdd8de29ac25b273082b3b26", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24528660, "upload_time": "2018-11-19T21:57:49", "upload_time_iso_8601": "2018-11-19T21:57:49.145862Z", "url": "https://files.pythonhosted.org/packages/01/26/07903e9dd47783be710197882c43479eff63995758236f969c52d0a6a56e/Fiona-1.8.2-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e20fc191e4a4dfa375e3160f32e525cd", "sha256": "d1e29331eef4b3bc386c703c7fe21698ba826a79dbf09902ea524ff7b07e5d30" }, "downloads": -1, "filename": "Fiona-1.8.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e20fc191e4a4dfa375e3160f32e525cd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17865974, "upload_time": "2018-11-19T21:56:48", "upload_time_iso_8601": "2018-11-19T21:56:48.094460Z", "url": "https://files.pythonhosted.org/packages/d2/fd/7176a0c31a5d915b09190832f9d96c4da95bd57f9d2d4ebab26e102d8d85/Fiona-1.8.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b61f83704582578cb5bdeed0b4a5be89", "sha256": "3d18259528af2e2f12dee31071b060003d2e20d1bdfdf99232e781e54e4d81e1" }, "downloads": -1, "filename": "Fiona-1.8.2-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b61f83704582578cb5bdeed0b4a5be89", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24467217, "upload_time": "2018-11-19T21:58:01", "upload_time_iso_8601": "2018-11-19T21:58:01.606599Z", "url": "https://files.pythonhosted.org/packages/5c/80/af242cdb2f8e6efb21d14afad71438b3ab3cebaa58397b4e254e098395af/Fiona-1.8.2-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6efb254608ed6305df7a6546a1cda2d3", "sha256": "05b36e2e5e58d84f18f83ebc8c38fe05f8c0030e3759dc8b5f8455cfe07dda25" }, "downloads": -1, "filename": "Fiona-1.8.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6efb254608ed6305df7a6546a1cda2d3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17863311, "upload_time": "2018-11-19T21:56:58", "upload_time_iso_8601": "2018-11-19T21:56:58.058110Z", "url": "https://files.pythonhosted.org/packages/bf/64/d69995fd1aff613ecf8b1c9217533b6791b00623fe28e4d7884d36880d97/Fiona-1.8.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fae1f673df4f443f61217b1e9230d57c", "sha256": "4c6419b7ac29136708029f6a44b4ccd458735a4d241016c7b1bab41685c08d8f" }, "downloads": -1, "filename": "Fiona-1.8.2.tar.gz", "has_sig": false, "md5_digest": "fae1f673df4f443f61217b1e9230d57c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1153332, "upload_time": "2018-11-19T21:58:19", "upload_time_iso_8601": "2018-11-19T21:58:19.217611Z", "url": "https://files.pythonhosted.org/packages/25/50/0466d5d83e1859c5ca38351ee932d64cc5635f9d4dad522879e58f4b0018/Fiona-1.8.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.20": [ { "comment_text": "", "digests": { "md5": "4c386e9aecbe57572b319fd6b936c3ec", "sha256": "02880556540e36ad6aac97687799d9b3093c354787a47bc0e73026c7fc15f1b3" }, "downloads": -1, "filename": "Fiona-1.8.20-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4c386e9aecbe57572b319fd6b936c3ec", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19343635, "upload_time": "2021-05-31T23:04:33", "upload_time_iso_8601": "2021-05-31T23:04:33.312956Z", "url": "https://files.pythonhosted.org/packages/33/f7/c56ea1253890520ae77b0265a138191057bd0990e9224725443d7065b9c7/Fiona-1.8.20-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "77762fe97f41f7d15e4259cbeb17837f", "sha256": "3f668c471fa2f8c9c0a9ca83639cb2c8dcc93edc3d93d43dba2f9e8da38ad53e" }, "downloads": -1, "filename": "Fiona-1.8.20-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "77762fe97f41f7d15e4259cbeb17837f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15405822, "upload_time": "2021-05-31T23:03:48", "upload_time_iso_8601": "2021-05-31T23:03:48.924749Z", "url": "https://files.pythonhosted.org/packages/ed/75/f0bc3be93d860fae56e7916d062a67b39bf10e7b124361eb353d13116263/Fiona-1.8.20-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "460a72c4a6e6c35d3dc5796fddc1c37d", "sha256": "54f81039e913d0f88728ef23edf5a69038dec94dea54f4c799f972ba8e2a7d40" }, "downloads": -1, "filename": "Fiona-1.8.20-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "460a72c4a6e6c35d3dc5796fddc1c37d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19305941, "upload_time": "2021-05-31T23:04:46", "upload_time_iso_8601": "2021-05-31T23:04:46.256629Z", "url": "https://files.pythonhosted.org/packages/8c/77/2fa45a9b69ed6846745eec6ca977eea509ff59b7b758ecf24fcc5545a620/Fiona-1.8.20-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba6ce7ed644374cbac1e70b01bbfea22", "sha256": "328340a448bed5c43d119f61f760368a04d13a302c59d2fccb051a3ff021f4b8" }, "downloads": -1, "filename": "Fiona-1.8.20-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ba6ce7ed644374cbac1e70b01bbfea22", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15402864, "upload_time": "2021-05-31T23:03:59", "upload_time_iso_8601": "2021-05-31T23:03:59.390073Z", "url": "https://files.pythonhosted.org/packages/9c/fc/9807326c37a6bfb2393ae3e1cca147aa74844562c4d5daa782d6e97ad2bc/Fiona-1.8.20-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3606aa1b0b0deabf9a8b3b24274061fe", "sha256": "03f910380dbe684730b59b817aa030e6e9a3ee79211b66c6db2d1c8fe6ea12de" }, "downloads": -1, "filename": "Fiona-1.8.20-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3606aa1b0b0deabf9a8b3b24274061fe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 19316734, "upload_time": "2021-05-31T23:04:59", "upload_time_iso_8601": "2021-05-31T23:04:59.442829Z", "url": "https://files.pythonhosted.org/packages/95/25/56c17f50764afa79e83895bcce12ac61ccb0bc2f8b5a97edd919a8180d81/Fiona-1.8.20-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "726c81f14a21dfd162da6509858ae211", "sha256": "bef100ebd82afb9a4d67096216e82611b82ca9341330e4805832d7ff8c9bc1f7" }, "downloads": -1, "filename": "Fiona-1.8.20-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "726c81f14a21dfd162da6509858ae211", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15377292, "upload_time": "2021-05-31T23:04:09", "upload_time_iso_8601": "2021-05-31T23:04:09.948785Z", "url": "https://files.pythonhosted.org/packages/3a/5f/fb9390ee7e6a5e01c76f5206883de33657ac38f8de0693be4a1484e93475/Fiona-1.8.20-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d5a4e360e9fbb64b64ce615e4eb7849", "sha256": "5e1cef608c6de9039eaa65b395024096e3189ab0559a5a328c68c4690c3302ce" }, "downloads": -1, "filename": "Fiona-1.8.20-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7d5a4e360e9fbb64b64ce615e4eb7849", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 19320201, "upload_time": "2021-05-31T23:05:12", "upload_time_iso_8601": "2021-05-31T23:05:12.437342Z", "url": "https://files.pythonhosted.org/packages/d4/b3/9d56012dc79dc6eedc8a7374fa8fa7d13a9fdbe12b8a475ff6465faee39b/Fiona-1.8.20-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9f3c470407d961dafadd6843aa1b203", "sha256": "e72e4a5b84ec410be531d4fe4c1a5c87c6c0e92d01116c145c0f1b33f81c8080" }, "downloads": -1, "filename": "Fiona-1.8.20-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b9f3c470407d961dafadd6843aa1b203", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15374315, "upload_time": "2021-05-31T23:04:21", "upload_time_iso_8601": "2021-05-31T23:04:21.164616Z", "url": "https://files.pythonhosted.org/packages/b3/22/5a02085005d63d195cbab64ef6de689db5a0c8f787938c4deebe9551caca/Fiona-1.8.20-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2886be04987048e096863af7127330d7", "sha256": "a70502d2857b82f749c09cb0dea3726787747933a2a1599b5ab787d74e3c143b" }, "downloads": -1, "filename": "Fiona-1.8.20.tar.gz", "has_sig": false, "md5_digest": "2886be04987048e096863af7127330d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1286810, "upload_time": "2021-05-31T23:05:15", "upload_time_iso_8601": "2021-05-31T23:05:15.538626Z", "url": "https://files.pythonhosted.org/packages/ec/f7/093890341a7e8fbfcdfa04caf4dfb588ebab32c13ceaa6a3819da79ea106/Fiona-1.8.20.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.21": [ { "comment_text": "", "digests": { "md5": "27203bdab7aa4c410134a547a4e6d62b", "sha256": "39c656421e25b4d0d73d0b6acdcbf9848e71f3d9b74f44c27d2d516d463409ae" }, "downloads": -1, "filename": "Fiona-1.8.21-cp310-cp310-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "27203bdab7aa4c410134a547a4e6d62b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 18457013, "upload_time": "2022-02-07T17:17:02", "upload_time_iso_8601": "2022-02-07T17:17:02.145087Z", "url": "https://files.pythonhosted.org/packages/73/34/479504f1421a4b97a249d942e4559acbb910840e061cea7befc9fe1b5f1a/Fiona-1.8.21-cp310-cp310-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd41271cab1b3ddbd73e803a66413083", "sha256": "43b1d2e45506e56cf3a9f59ba5d6f7981f3f75f4725d1e6cb9a33ba856371ebd" }, "downloads": -1, "filename": "Fiona-1.8.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bd41271cab1b3ddbd73e803a66413083", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 16620093, "upload_time": "2022-02-07T17:17:17", "upload_time_iso_8601": "2022-02-07T17:17:17.366367Z", "url": "https://files.pythonhosted.org/packages/b1/81/d9c234f1d6af61ebf17386ed46a093ffd772b2775b914f52c5b19d64beb2/Fiona-1.8.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b00d76c4b76e156a932fdf7e830328b", "sha256": "315e186cb880a8128e110312eb92f5956bbc54d7152af999d3483b463758d6f9" }, "downloads": -1, "filename": "Fiona-1.8.21-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "1b00d76c4b76e156a932fdf7e830328b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18444279, "upload_time": "2022-02-11T16:32:31", "upload_time_iso_8601": "2022-02-11T16:32:31.072162Z", "url": "https://files.pythonhosted.org/packages/26/6e/eb5c2e94beb1bdc4d55d82f5723cc717aa47cddb13d3297d5528329e06b3/Fiona-1.8.21-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f99cc047e1e0164a15f8bf84da107d20", "sha256": "9fb2407623c4f44732a33b3f056f8c58c54152b51f0324bf8f10945e711eb549" }, "downloads": -1, "filename": "Fiona-1.8.21-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f99cc047e1e0164a15f8bf84da107d20", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 16601737, "upload_time": "2022-02-11T16:32:41", "upload_time_iso_8601": "2022-02-11T16:32:41.688118Z", "url": "https://files.pythonhosted.org/packages/a1/b9/cc0b4aa43307e6d8a0318c4a0775a2899377a3a0b470ba2a0889269b07e6/Fiona-1.8.21-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4e35a9eee191d24bbb216eb625bc8bf", "sha256": "b69054ed810eb7339d7effa88589afca48003206d7627d0b0b149715fc3fde41" }, "downloads": -1, "filename": "Fiona-1.8.21-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f4e35a9eee191d24bbb216eb625bc8bf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 18440192, "upload_time": "2022-02-07T17:17:34", "upload_time_iso_8601": "2022-02-07T17:17:34.783289Z", "url": "https://files.pythonhosted.org/packages/a1/81/70ce7f722fb853d060d1de463ae1525664912372dd80d58b856aa41a54ee/Fiona-1.8.21-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf24df287ea046925a1acf94aaa7807a", "sha256": "11532ccfda1073d3f5f558e4bb78d45b268e8680fd6e14993a394c564ddbd069" }, "downloads": -1, "filename": "Fiona-1.8.21-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bf24df287ea046925a1acf94aaa7807a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 16705790, "upload_time": "2022-02-07T17:17:52", "upload_time_iso_8601": "2022-02-07T17:17:52.710931Z", "url": "https://files.pythonhosted.org/packages/31/55/76eb77b38b38806088768c804f9bbfbf739d05f2f7613b759fed39209395/Fiona-1.8.21-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b07fc298e5cc7bd5b61594f357ca8db", "sha256": "3789523c811809a6e2e170cf9c437631f959f4c7a868f024081612d30afab468" }, "downloads": -1, "filename": "Fiona-1.8.21-cp38-cp38-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8b07fc298e5cc7bd5b61594f357ca8db", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 18452415, "upload_time": "2022-02-07T17:18:12", "upload_time_iso_8601": "2022-02-07T17:18:12.548069Z", "url": "https://files.pythonhosted.org/packages/d3/7c/42a277446d65cf7b7b3be8649fdbd768cfb909cae6f04bde7d588eb452b1/Fiona-1.8.21-cp38-cp38-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "582b6a765f1de393f95da409a6783539", "sha256": "085f18d943097ac3396f3f9664ac1ae04ad0ff272f54829f03442187f01b6116" }, "downloads": -1, "filename": "Fiona-1.8.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "582b6a765f1de393f95da409a6783539", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 16619890, "upload_time": "2022-02-07T17:18:30", "upload_time_iso_8601": "2022-02-07T17:18:30.555919Z", "url": "https://files.pythonhosted.org/packages/95/5c/6c6d6a7b604595ecb93d31c018e44a075462d2d69e687722fbb8630a2fc8/Fiona-1.8.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "214abbada4811591c416ac1ffc394a0e", "sha256": "388acc9fa07ba7858d508dfe826d4b04d813818bced16c4049de19cc7ca322ef" }, "downloads": -1, "filename": "Fiona-1.8.21-cp39-cp39-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "214abbada4811591c416ac1ffc394a0e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 18456511, "upload_time": "2022-02-07T17:18:47", "upload_time_iso_8601": "2022-02-07T17:18:47.280467Z", "url": "https://files.pythonhosted.org/packages/23/bd/29e62b2f516327155615aa404cd22bac4c8c873737792c98b73164c76467/Fiona-1.8.21-cp39-cp39-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af6eb4af032619b8d2d6705999123a15", "sha256": "40b4eaf5b88407421d6c9e707520abd2ff16d7cd43efb59cd398aa41d2de332c" }, "downloads": -1, "filename": "Fiona-1.8.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "af6eb4af032619b8d2d6705999123a15", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 16619800, "upload_time": "2022-02-07T17:19:02", "upload_time_iso_8601": "2022-02-07T17:19:02.377478Z", "url": "https://files.pythonhosted.org/packages/06/96/a9cc68b713a4ef5f2c2c988ea1faed66eca9dc6eb239bc72e2a49779610a/Fiona-1.8.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e380d39de437fc81f8d60fd403672112", "sha256": "3a0edca2a7a070db405d71187214a43d2333a57b4097544a3fcc282066a58bfc" }, "downloads": -1, "filename": "Fiona-1.8.21.tar.gz", "has_sig": false, "md5_digest": "e380d39de437fc81f8d60fd403672112", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1040639, "upload_time": "2022-02-07T17:19:06", "upload_time_iso_8601": "2022-02-07T17:19:06.166343Z", "url": "https://files.pythonhosted.org/packages/67/5c/4e028e84a1f0cb3f8a994217cf2366360ca984dfc1433f6171de527d0dca/Fiona-1.8.21.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "b0e2df83e61deb8cd09e85f5813f71b0", "sha256": "4bb030b5ef623396e1b53f21562de34c31cca18dfdbb33c76c97625afa7b6e66" }, "downloads": -1, "filename": "Fiona-1.8.3-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b0e2df83e61deb8cd09e85f5813f71b0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24378826, "upload_time": "2018-11-30T23:27:44", "upload_time_iso_8601": "2018-11-30T23:27:44.685921Z", "url": "https://files.pythonhosted.org/packages/59/25/3c740aca9b78a19cd64ea6a3c834270cc698982d0173f679156920f19518/Fiona-1.8.3-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7cf1f8ffc33bc617c5defdc5e8bbb06", "sha256": "ff631c21b34d7728d52aa3c38c4c2f8dcd5fb20133c32143dd16f6cbb0a0a02d" }, "downloads": -1, "filename": "Fiona-1.8.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d7cf1f8ffc33bc617c5defdc5e8bbb06", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17812949, "upload_time": "2018-11-30T23:21:57", "upload_time_iso_8601": "2018-11-30T23:21:57.628719Z", "url": "https://files.pythonhosted.org/packages/b8/48/9b824f19e350a183e011688c456742e50473a3f9a411910f4368dbc69492/Fiona-1.8.3-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12bfe6baa44b165e7284ce3b8d7d0803", "sha256": "19347c8bf3d0b8f8cdc75e3e96eb7808b2f402f7033580eaf8c56732386a7f29" }, "downloads": -1, "filename": "Fiona-1.8.3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "12bfe6baa44b165e7284ce3b8d7d0803", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24348799, "upload_time": "2018-11-30T23:29:12", "upload_time_iso_8601": "2018-11-30T23:29:12.622493Z", "url": "https://files.pythonhosted.org/packages/ce/00/11843f2dca0ea511b0ce9df11768135d3a8bd61a374df479fc1a9ba81b0c/Fiona-1.8.3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0401cd07bf59cfd3fe11d23259d5a52e", "sha256": "a3116502395c309eed51b55b691fac01c89ba73e80bf344daf11884b80766881" }, "downloads": -1, "filename": "Fiona-1.8.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0401cd07bf59cfd3fe11d23259d5a52e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17824740, "upload_time": "2018-11-30T23:23:01", "upload_time_iso_8601": "2018-11-30T23:23:01.998567Z", "url": "https://files.pythonhosted.org/packages/d7/49/6e8632e33e4acd991d78a80b44a7a761c0df915975e63c09be6204ae7cb6/Fiona-1.8.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59e9419d9186f5e1d1d9db7b68304354", "sha256": "808e524b2358037d6b9bdb5f9ae403c71cb0666512e7ececa5dfb4fbad70eb6b" }, "downloads": -1, "filename": "Fiona-1.8.3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "59e9419d9186f5e1d1d9db7b68304354", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24407157, "upload_time": "2018-11-30T23:30:42", "upload_time_iso_8601": "2018-11-30T23:30:42.467884Z", "url": "https://files.pythonhosted.org/packages/d9/21/12974e77ac6f5fa1d4f98453eefbd8bda383a964c68b003e89859501ab19/Fiona-1.8.3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48d63c952e697f290f4387646016b2e3", "sha256": "facb330738c4dffd3386e7dd490e33b20fed0ab8115ee7ef28285b1f51623c43" }, "downloads": -1, "filename": "Fiona-1.8.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "48d63c952e697f290f4387646016b2e3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17831556, "upload_time": "2018-11-30T23:24:05", "upload_time_iso_8601": "2018-11-30T23:24:05.802463Z", "url": "https://files.pythonhosted.org/packages/f2/65/a4b81b5e45abab4320822c70f3556c7376e65448764558de6ba4990c1104/Fiona-1.8.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7a393cd698b410dd5b12aa4c9d7caec", "sha256": "92a342cc385a9020a456515286b1c2dc1f4cb2b8cd651c21b756689c22d8b01f" }, "downloads": -1, "filename": "Fiona-1.8.3-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f7a393cd698b410dd5b12aa4c9d7caec", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24525336, "upload_time": "2018-11-30T23:32:10", "upload_time_iso_8601": "2018-11-30T23:32:10.390404Z", "url": "https://files.pythonhosted.org/packages/25/8f/1877c9fd7eff95a7aa596720aa6beba55125efd6d6f88d1baf48288f4d42/Fiona-1.8.3-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9cdd701f1391d0a6c125ba66cb5254f8", "sha256": "b648183b1be4ab282782ee32774fcb59a4d62f6289a926c87df67ef93f509e58" }, "downloads": -1, "filename": "Fiona-1.8.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9cdd701f1391d0a6c125ba66cb5254f8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17864457, "upload_time": "2018-11-30T23:25:10", "upload_time_iso_8601": "2018-11-30T23:25:10.071208Z", "url": "https://files.pythonhosted.org/packages/cd/0e/a90ca53b62db4ead4d4bc9443468a130c391195ff896d6d485a19305be93/Fiona-1.8.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88e6adf047d7b6d1c76ddcba2c71f46c", "sha256": "86f461a3f26a2122b437a1669c3de7a4ebe990c39e3fca6dfe4b7d0650acb936" }, "downloads": -1, "filename": "Fiona-1.8.3-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "88e6adf047d7b6d1c76ddcba2c71f46c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24462392, "upload_time": "2018-11-30T23:20:53", "upload_time_iso_8601": "2018-11-30T23:20:53.218458Z", "url": "https://files.pythonhosted.org/packages/c1/08/3d54415b8b5f7ab1ef64e29b24e98c096d473c5be65d25e1e8503515a4cd/Fiona-1.8.3-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7cebe7c1dcc4ce8dc6e7e6b0fb813195", "sha256": "63e17b801acff62a615ca1825accde643076ad0a53b49b18768365a3d9918468" }, "downloads": -1, "filename": "Fiona-1.8.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7cebe7c1dcc4ce8dc6e7e6b0fb813195", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17862799, "upload_time": "2018-11-30T23:26:15", "upload_time_iso_8601": "2018-11-30T23:26:15.602620Z", "url": "https://files.pythonhosted.org/packages/3e/c0/c2171f200fd144883ed208c1752a0979d2b8593f8d8965b8fc623bb3bc96/Fiona-1.8.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33e8f7cf5943693353a27470dff3d540", "sha256": "3e831100a23c3b6cd32b98baf0c9e2119d909b44a5cf4533d3625f61dcf2d2b1" }, "downloads": -1, "filename": "Fiona-1.8.3.tar.gz", "has_sig": false, "md5_digest": "33e8f7cf5943693353a27470dff3d540", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1148017, "upload_time": "2018-11-30T23:34:44", "upload_time_iso_8601": "2018-11-30T23:34:44.947617Z", "url": "https://files.pythonhosted.org/packages/46/d1/fcdb32513a03abfde0d97fd9782ce0f8cc0540fa6c6ce783e87b94064964/Fiona-1.8.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "aed60c3cee82586f4f7f8f87edc40e4b", "sha256": "553b87b5069c0a9cf80d5b2ee7976b080dc0a6a32161703e2bf8ab3bf4ecb6c1" }, "downloads": -1, "filename": "Fiona-1.8.4-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "aed60c3cee82586f4f7f8f87edc40e4b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24382894, "upload_time": "2018-12-11T02:06:03", "upload_time_iso_8601": "2018-12-11T02:06:03.454295Z", "url": "https://files.pythonhosted.org/packages/af/51/72e16c1506c8f71cf57db355b17e8eeca0ea1455a0aca09d11cf3d40b2af/Fiona-1.8.4-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df8f8b55e94f7c41f438c9f4cc2aab3f", "sha256": "d36e5d2ceda136727b144967a7e73146bbc6eab3bf8b9e994182124c2a8e557a" }, "downloads": -1, "filename": "Fiona-1.8.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "df8f8b55e94f7c41f438c9f4cc2aab3f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17816123, "upload_time": "2018-12-11T02:00:18", "upload_time_iso_8601": "2018-12-11T02:00:18.603983Z", "url": "https://files.pythonhosted.org/packages/6b/f9/a194b42c2065cb14087da8b365c8d3dc8510d8096610d0b40ec60be308df/Fiona-1.8.4-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "820922792c5d0819327d5201c08cdb8b", "sha256": "746fb1f4a126a72821ad3f292a445413de73f5f22c01530d9bdf0b053662e716" }, "downloads": -1, "filename": "Fiona-1.8.4-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "820922792c5d0819327d5201c08cdb8b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24353418, "upload_time": "2018-12-11T02:07:29", "upload_time_iso_8601": "2018-12-11T02:07:29.731364Z", "url": "https://files.pythonhosted.org/packages/1b/44/5d3ebf83b6bd7a1bf7a081f39cb3439a84604851ab7b1247dc3e2aaf057a/Fiona-1.8.4-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c0f9db85ada2a0cf5603ba8d804b8a3", "sha256": "241c3c9e6337e4bf5fa358547ac0c5113606efa860af990e47faa17adc2e4c8c" }, "downloads": -1, "filename": "Fiona-1.8.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2c0f9db85ada2a0cf5603ba8d804b8a3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17827046, "upload_time": "2018-12-11T02:01:23", "upload_time_iso_8601": "2018-12-11T02:01:23.873861Z", "url": "https://files.pythonhosted.org/packages/72/55/42724f54a3608325bd4e09669c4b69eca8328d73402a9320cd9a531fd83a/Fiona-1.8.4-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "adc153df2d9ce93f3fe69ab258033b83", "sha256": "0959c6f121bb5908d32541c3577d134733e77fad2182575fdcb63ac5ce8d5ba5" }, "downloads": -1, "filename": "Fiona-1.8.4-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "adc153df2d9ce93f3fe69ab258033b83", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24410086, "upload_time": "2018-12-11T02:08:56", "upload_time_iso_8601": "2018-12-11T02:08:56.813640Z", "url": "https://files.pythonhosted.org/packages/db/67/f43c2dbda5deeb2f1a46e9d5d281937a46c13d022cd355de0b194cbfdc54/Fiona-1.8.4-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99aa643ba68514a5449fb6f8621b8a28", "sha256": "7aa78df0e7c967d52f7f06ceb0eb55cf18b8a4f1fce5d505f556b78140f0215c" }, "downloads": -1, "filename": "Fiona-1.8.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "99aa643ba68514a5449fb6f8621b8a28", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17833804, "upload_time": "2018-12-11T02:02:28", "upload_time_iso_8601": "2018-12-11T02:02:28.132571Z", "url": "https://files.pythonhosted.org/packages/34/63/515cf665f926ae57d789b23c4aae6f4df4425c1494e67d479ccecb2a87ec/Fiona-1.8.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fdb839428f8ef0e92d0b50ca2c93ee3a", "sha256": "66926d9140981a8f085c4eae0001a3f340b14c444453d596ab25e74a16a8a479" }, "downloads": -1, "filename": "Fiona-1.8.4-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "fdb839428f8ef0e92d0b50ca2c93ee3a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24528935, "upload_time": "2018-12-11T02:10:32", "upload_time_iso_8601": "2018-12-11T02:10:32.740515Z", "url": "https://files.pythonhosted.org/packages/d8/5e/8740d4e451a1b023f289e2834ae2d64e1dd7ef72be70bf265727b5d84a5e/Fiona-1.8.4-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbc847faa79543504f2ed72333be4c28", "sha256": "97ec00eb8d00735cf9c8932f444784cb3d3d4f27bf07edc854449b14091a2c73" }, "downloads": -1, "filename": "Fiona-1.8.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bbc847faa79543504f2ed72333be4c28", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17866763, "upload_time": "2018-12-11T02:03:32", "upload_time_iso_8601": "2018-12-11T02:03:32.375611Z", "url": "https://files.pythonhosted.org/packages/51/d8/2a97aea07eed6675187c42411bfca30816dfdd6831c125c123bac74f0465/Fiona-1.8.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1b81aed599769155d37f5511984a04e", "sha256": "e759667317d0360e607c79bcdbd80dc34367afe236ba5d2b1d91c99022ce4f0d" }, "downloads": -1, "filename": "Fiona-1.8.4-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d1b81aed599769155d37f5511984a04e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24465368, "upload_time": "2018-12-11T01:59:13", "upload_time_iso_8601": "2018-12-11T01:59:13.843027Z", "url": "https://files.pythonhosted.org/packages/33/2e/6863cdb1222e9241bad23357101b090b4604d58c495781af0f903c479658/Fiona-1.8.4-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98b6c9b0ede056cfe8619a1c71cbe5fe", "sha256": "b54d71f41bbf97906293070e894a52b8a4da2842f79d6f5996a476af19b660b5" }, "downloads": -1, "filename": "Fiona-1.8.4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "98b6c9b0ede056cfe8619a1c71cbe5fe", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17865580, "upload_time": "2018-12-11T02:04:36", "upload_time_iso_8601": "2018-12-11T02:04:36.796710Z", "url": "https://files.pythonhosted.org/packages/b8/55/fdcd9a45b39a4fe50d79041d1194c2ebefcc7ef44958d54ad2b815129f02/Fiona-1.8.4-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "484057b0ba9555e8b0c3fb26226cb557", "sha256": "aec9ab2e3513c9503ec123b1a8573bee55fc6a66e2ac07088c3376bf6738a424" }, "downloads": -1, "filename": "Fiona-1.8.4.tar.gz", "has_sig": false, "md5_digest": "484057b0ba9555e8b0c3fb26226cb557", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1134081, "upload_time": "2018-12-11T02:15:41", "upload_time_iso_8601": "2018-12-11T02:15:41.211808Z", "url": "https://files.pythonhosted.org/packages/3a/16/84960540e9fce61d767fd2f0f1d95f4c63e99ab5d8fddc308e8b51b059b8/Fiona-1.8.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.5": [ { "comment_text": "", "digests": { "md5": "eb47a7d6f12de5ecb1f186424cfed26d", "sha256": "dfdd7a94581c2cfc7543be42d5faa50c6facf0a98fff975245a49108be4d8294" }, "downloads": -1, "filename": "Fiona-1.8.5-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "eb47a7d6f12de5ecb1f186424cfed26d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24394677, "upload_time": "2019-03-16T05:09:07", "upload_time_iso_8601": "2019-03-16T05:09:07.444345Z", "url": "https://files.pythonhosted.org/packages/56/3a/f758c27704164e7bcfc8a591c5a814fb6e16b0d4a6835b1b5f48fd897145/Fiona-1.8.5-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f02518e8b77a2af364086895c004de8", "sha256": "ded96a79af0eb5726e3980709aadc04066a3aca3709236cb47872fa826cf8fa6" }, "downloads": -1, "filename": "Fiona-1.8.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4f02518e8b77a2af364086895c004de8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17831627, "upload_time": "2019-03-16T05:02:24", "upload_time_iso_8601": "2019-03-16T05:02:24.021489Z", "url": "https://files.pythonhosted.org/packages/35/19/b4c0d5cf6ad5990d9bc56ab754f5193247a9bdc9f9a94f6360639e13a1a3/Fiona-1.8.5-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "feb212365a8386af94e32b044a93ebe0", "sha256": "8685ac826e97f5b0875c70993856fe776fbf7ae3e9ab8a145861867b5b6ebbc8" }, "downloads": -1, "filename": "Fiona-1.8.5-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "feb212365a8386af94e32b044a93ebe0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24376830, "upload_time": "2019-03-16T05:10:34", "upload_time_iso_8601": "2019-03-16T05:10:34.724259Z", "url": "https://files.pythonhosted.org/packages/a0/35/223ee31320eb40b142768030705ba6c1b4c7be16b6cc829023dc89b053a5/Fiona-1.8.5-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8313af97ad5e43a3931a2f9032935c0b", "sha256": "97f32058ba87b1766ef30eb783719242658dc002ac0d291de58979140a5fb74f" }, "downloads": -1, "filename": "Fiona-1.8.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8313af97ad5e43a3931a2f9032935c0b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17839040, "upload_time": "2019-03-16T05:04:28", "upload_time_iso_8601": "2019-03-16T05:04:28.353069Z", "url": "https://files.pythonhosted.org/packages/d0/56/ec636671609cfa9809afc671ef9847bb308c804a6460f1237aaa05b85e21/Fiona-1.8.5-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "527849a3c1b2edaeb8ac262a536afb2e", "sha256": "c97841faf5ff164ac099da95b85431877d08be22769af632ed4e03bcbe8cdd0a" }, "downloads": -1, "filename": "Fiona-1.8.5-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "527849a3c1b2edaeb8ac262a536afb2e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24433739, "upload_time": "2019-03-16T05:12:01", "upload_time_iso_8601": "2019-03-16T05:12:01.615812Z", "url": "https://files.pythonhosted.org/packages/81/55/8de28d7a8ae38009a695fdec75e97509193de73b2e78a6b14c7ba1e6ba7b/Fiona-1.8.5-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f8e7ea6098658b61d39aaefac040fc3", "sha256": "b149943f47b6cdb18414f1d39ee7632c59960f481fde47f9024f309b8dcb4d18" }, "downloads": -1, "filename": "Fiona-1.8.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1f8e7ea6098658b61d39aaefac040fc3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17848275, "upload_time": "2019-03-16T05:05:32", "upload_time_iso_8601": "2019-03-16T05:05:32.556522Z", "url": "https://files.pythonhosted.org/packages/bb/ee/27c3b152b861042484e8704fb32bedca327c11de6a341aadcaf9799dc979/Fiona-1.8.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b893deba5a6c631efb47d7f030e13ab2", "sha256": "86b0e22a29ff12451858b183736980dbce67d7f32ad6f8927d9b52a04345a7d7" }, "downloads": -1, "filename": "Fiona-1.8.5-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b893deba5a6c631efb47d7f030e13ab2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24552025, "upload_time": "2019-03-16T05:14:52", "upload_time_iso_8601": "2019-03-16T05:14:52.882392Z", "url": "https://files.pythonhosted.org/packages/ee/8c/867eac90fff1b0ab58d1660aa3de33de28191f93d3ec2ebd939f23b90b74/Fiona-1.8.5-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba7a258e127078f9a72fcdc7f834ba44", "sha256": "8a0d6a974f73bcc72a2feb14a7885a8624f395f99c665972aaf7ac7fc91ab581" }, "downloads": -1, "filename": "Fiona-1.8.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ba7a258e127078f9a72fcdc7f834ba44", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17878032, "upload_time": "2019-03-16T05:06:36", "upload_time_iso_8601": "2019-03-16T05:06:36.835427Z", "url": "https://files.pythonhosted.org/packages/26/69/076724360f91decbc46087f16186dcd380e09362effc4e2bec73afc6ead4/Fiona-1.8.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f78be5881d0c3c30d190df3761bd0757", "sha256": "06af4d892a50d605af6b12c66b7fc13bf9b9bc3b773756f280e471356d459cd4" }, "downloads": -1, "filename": "Fiona-1.8.5-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f78be5881d0c3c30d190df3761bd0757", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24488418, "upload_time": "2019-03-16T05:01:19", "upload_time_iso_8601": "2019-03-16T05:01:19.734542Z", "url": "https://files.pythonhosted.org/packages/2d/dc/3e78395df4ce7811b9fa0906168849b941f368a28ae60c21bb091f1d1d7f/Fiona-1.8.5-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13171a623ee86acc789121d36e5c2f0f", "sha256": "32ea7669b0c6b746fceb320e277a2f0088b7fdb9b2e1692dce5cb6bd587a7cf6" }, "downloads": -1, "filename": "Fiona-1.8.5-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "13171a623ee86acc789121d36e5c2f0f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17876818, "upload_time": "2019-03-16T05:07:41", "upload_time_iso_8601": "2019-03-16T05:07:41.251300Z", "url": "https://files.pythonhosted.org/packages/c3/28/3b2c9efe25c64e06c552d227123e9b52b84787bce26d5114f5e09f94289d/Fiona-1.8.5-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44775e5fa5c05e5f8e424d4813ea32b7", "sha256": "4f5cc2d449edbbf693c83e24cdada72de7c41297383d16fcc92387eb445e9d35" }, "downloads": -1, "filename": "Fiona-1.8.5.tar.gz", "has_sig": false, "md5_digest": "44775e5fa5c05e5f8e424d4813ea32b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1712882, "upload_time": "2019-03-16T05:19:38", "upload_time_iso_8601": "2019-03-16T05:19:38.322919Z", "url": "https://files.pythonhosted.org/packages/7b/af/1c2c83c4a8363a4ce9fea817b1910b5e071bed012e18257faa2a0ab3cfe7/Fiona-1.8.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.6": [ { "comment_text": "", "digests": { "md5": "0612e4fd6918368df03e9063eff652f5", "sha256": "cb9081003e8585a284365b28cff61343541405263fd4e1c79f3baec7321b8b3f" }, "downloads": -1, "filename": "Fiona-1.8.6-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0612e4fd6918368df03e9063eff652f5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24395303, "upload_time": "2019-03-19T05:40:17", "upload_time_iso_8601": "2019-03-19T05:40:17.657738Z", "url": "https://files.pythonhosted.org/packages/07/0a/0cc7ee91a355cd84c3cd03f25391b4e11735f7c69f316f759ae7c92b1f9d/Fiona-1.8.6-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a2b6fc94c0428b2f12ad17be594e213", "sha256": "1783c3abceccca318fac3d5bfd4305bc31c94fbb5abdc60e96b0ccedaa263857" }, "downloads": -1, "filename": "Fiona-1.8.6-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1a2b6fc94c0428b2f12ad17be594e213", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17831865, "upload_time": "2019-03-19T05:34:26", "upload_time_iso_8601": "2019-03-19T05:34:26.611927Z", "url": "https://files.pythonhosted.org/packages/ad/c7/271908d7cb5fe45f8af1473687807f1510975294b37a84bcbbb8abebfc0a/Fiona-1.8.6-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d892ef6127ef530ff22539e2da9e503f", "sha256": "2e1ba6e87f9a63962af4c4c44152f9f49245c29fd90ce1c4bb19bddbb31e22f4" }, "downloads": -1, "filename": "Fiona-1.8.6-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d892ef6127ef530ff22539e2da9e503f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24377740, "upload_time": "2019-03-19T05:41:44", "upload_time_iso_8601": "2019-03-19T05:41:44.155342Z", "url": "https://files.pythonhosted.org/packages/96/f6/dbdb7a3533f63917fadca163fda6c2644fa8b3a2d1d26402ca9533752311/Fiona-1.8.6-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d0ad810a42f3282c657801fdffbcd34", "sha256": "6c2b665ad369768cde426def664a9af46263152731b4a9493380a337f6c5a79e" }, "downloads": -1, "filename": "Fiona-1.8.6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8d0ad810a42f3282c657801fdffbcd34", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17839071, "upload_time": "2019-03-19T05:35:31", "upload_time_iso_8601": "2019-03-19T05:35:31.315192Z", "url": "https://files.pythonhosted.org/packages/2f/9a/068246e29a5d33c347b03fd2dcd4e10cd9e7d05b366fcaccd378768151ae/Fiona-1.8.6-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b3d04ea7f9ac2b578714eb5bae72a46", "sha256": "8e361b3cf00a472570fdd25ad39c722f1b3fda03fc4de1d35aac2b5da39bcdb3" }, "downloads": -1, "filename": "Fiona-1.8.6-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8b3d04ea7f9ac2b578714eb5bae72a46", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24434095, "upload_time": "2019-03-19T05:43:11", "upload_time_iso_8601": "2019-03-19T05:43:11.408766Z", "url": "https://files.pythonhosted.org/packages/89/8a/897f510d560ca739cc2247f278a5c94c7108cd78cda4543346afd2ff2b4e/Fiona-1.8.6-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b3cc8ca6075925ed6e9ccd6d4d57358", "sha256": "ee2bbe5640f68342b6746a0ba733e25ee221106368558be6cd73dd08fc6fbe04" }, "downloads": -1, "filename": "Fiona-1.8.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8b3cc8ca6075925ed6e9ccd6d4d57358", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17849031, "upload_time": "2019-03-19T05:36:43", "upload_time_iso_8601": "2019-03-19T05:36:43.078799Z", "url": "https://files.pythonhosted.org/packages/4f/e2/841f27ccf7a00095c251554642025f64c44fbe2a121b2f33a76e9fbff2b2/Fiona-1.8.6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87b797ce4c2740fc9bac329006053a1a", "sha256": "1353a0c7d03f96b0755d13bc0277b0b6a79585f94981e1ae6452c55958431b2b" }, "downloads": -1, "filename": "Fiona-1.8.6-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "87b797ce4c2740fc9bac329006053a1a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24552218, "upload_time": "2019-03-19T05:44:38", "upload_time_iso_8601": "2019-03-19T05:44:38.182784Z", "url": "https://files.pythonhosted.org/packages/4e/5e/dd1c598b5574249f8ea22ae4224d445ef45e4b4bb919cd2388c31caf42b0/Fiona-1.8.6-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7bf3dfac2a8c84d58fc64b080ecdb79b", "sha256": "22dfc9d82adae78567b2a242f297915aeb7727cde06a3d762252e5393af959c5" }, "downloads": -1, "filename": "Fiona-1.8.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7bf3dfac2a8c84d58fc64b080ecdb79b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17878402, "upload_time": "2019-03-19T05:37:47", "upload_time_iso_8601": "2019-03-19T05:37:47.177643Z", "url": "https://files.pythonhosted.org/packages/89/4a/193cd6a75e51062c85f4e1cd6f312b3bbda6e26ba7510f152ef5016f0b16/Fiona-1.8.6-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4ffcc053b5a06a72c3fb782afda21f0", "sha256": "7ebfdce0be685aa44c31529d57cdea232c2386ad305c11a329f91c7613dbd2f4" }, "downloads": -1, "filename": "Fiona-1.8.6-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d4ffcc053b5a06a72c3fb782afda21f0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24489077, "upload_time": "2019-03-19T05:33:22", "upload_time_iso_8601": "2019-03-19T05:33:22.596075Z", "url": "https://files.pythonhosted.org/packages/fc/75/7dd85bc9311f2b234e0ab0eba286da0dc2bf5af78106bd1aba519c06e62f/Fiona-1.8.6-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce7e7c963966bbc9ee5a8694e116fd42", "sha256": "e3bfabe62c4081c88c47aa10c6165ecfefaa7c9aa5406496b75ff364757a0bbe" }, "downloads": -1, "filename": "Fiona-1.8.6-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ce7e7c963966bbc9ee5a8694e116fd42", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17876808, "upload_time": "2019-03-19T05:38:51", "upload_time_iso_8601": "2019-03-19T05:38:51.260897Z", "url": "https://files.pythonhosted.org/packages/1b/01/1ff66b7ffc6b9b0abb9505a0fc169208e25adcce9bd5f37e0756a93ab5f4/Fiona-1.8.6-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f28d611a1da771e87bab9accf6587e87", "sha256": "fa31dfe8855b9cd0b128b47a4df558f1b8eda90d2181bff1dd9854e5556efb3e" }, "downloads": -1, "filename": "Fiona-1.8.6.tar.gz", "has_sig": false, "md5_digest": "f28d611a1da771e87bab9accf6587e87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1713605, "upload_time": "2019-03-19T05:44:47", "upload_time_iso_8601": "2019-03-19T05:44:47.442130Z", "url": "https://files.pythonhosted.org/packages/41/9d/63696e7b1de42aad294d4781199a408bec593d8fdb80a2b4a788c911a33b/Fiona-1.8.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.7": [ { "comment_text": "", "digests": { "md5": "be6c2d139cfa4fc179d8f9c7bbc1e2bf", "sha256": "81c246060c4298f4b11fd3bfe5d9ad3b8cc86ffac6a90b1af02588a802bd0169" }, "downloads": -1, "filename": "Fiona-1.8.7-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "be6c2d139cfa4fc179d8f9c7bbc1e2bf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 16874869, "upload_time": "2019-09-24T23:20:35", "upload_time_iso_8601": "2019-09-24T23:20:35.653801Z", "url": "https://files.pythonhosted.org/packages/5f/71/6680ff06cfce8587326f0ba3447d93d0851a5b66f84081d10b5b84169508/Fiona-1.8.7-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ef3f425cbaa62576be2cc720f9c0d5e", "sha256": "32b29845406265dd1f5da2b7557e1cbaea85cfd893370f59d944f0f18db23179" }, "downloads": -1, "filename": "Fiona-1.8.7-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9ef3f425cbaa62576be2cc720f9c0d5e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11808328, "upload_time": "2019-09-24T23:17:19", "upload_time_iso_8601": "2019-09-24T23:17:19.066926Z", "url": "https://files.pythonhosted.org/packages/0e/1b/e44d11b176f90895579d09cc4e926f7f0e4e4227cbaf2bacae66307207ea/Fiona-1.8.7-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4064e1150c83181d56dca4da60703cf", "sha256": "52989c89d6cb13c6eb9d536200b007d4be85ebddfe3e45d0de899b66551f5c1a" }, "downloads": -1, "filename": "Fiona-1.8.7-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "e4064e1150c83181d56dca4da60703cf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 16913594, "upload_time": "2019-09-24T23:21:38", "upload_time_iso_8601": "2019-09-24T23:21:38.418783Z", "url": "https://files.pythonhosted.org/packages/c1/c8/5b7d4b5648e325c470e85cc4ecc9c51bf9a34fd7dd1661a5e5bd4a49efa7/Fiona-1.8.7-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e313262276d37353a78722fc068fe43", "sha256": "e4424b00eb2f9c9c06bcf8329a139ec33346848ff5fc5cb504b5855d5c8c8fca" }, "downloads": -1, "filename": "Fiona-1.8.7-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4e313262276d37353a78722fc068fe43", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11825508, "upload_time": "2019-09-24T23:18:04", "upload_time_iso_8601": "2019-09-24T23:18:04.587252Z", "url": "https://files.pythonhosted.org/packages/75/9f/aca641a4f756350d7e134b38dcb05721bd29c70f49806f7ea0604c17f23b/Fiona-1.8.7-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5289c1ebe45866b7937b3188fabfce9", "sha256": "eac171ef62c74f1d8169c4263df9cca3c2a187ab851f7b9eba3acd7ddf1366e8" }, "downloads": -1, "filename": "Fiona-1.8.7-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c5289c1ebe45866b7937b3188fabfce9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17032578, "upload_time": "2019-09-24T23:22:41", "upload_time_iso_8601": "2019-09-24T23:22:41.490783Z", "url": "https://files.pythonhosted.org/packages/65/47/1bdd836d39b5a4212f638c36d65e23d821e3b03a8bc8f81882d92757e981/Fiona-1.8.7-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0944e48ff4b955ea10fbefb4badc96a2", "sha256": "b3eb1e4cd56c8292863b2cdf67a5626d74633d5c84cc6489ecc13e963dda1b0a" }, "downloads": -1, "filename": "Fiona-1.8.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0944e48ff4b955ea10fbefb4badc96a2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11854922, "upload_time": "2019-09-24T23:18:49", "upload_time_iso_8601": "2019-09-24T23:18:49.026491Z", "url": "https://files.pythonhosted.org/packages/e3/74/71a62d424fcb2106f579cafd14414c67075b2de99acc9ee4dcc1cd28409a/Fiona-1.8.7-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "114638c9cf27112c064643d10da37079", "sha256": "8dc58faaee7d6b503a36c8a4fbb4a90cfb46d15ce4dc5cdf8e6765b725e548e0" }, "downloads": -1, "filename": "Fiona-1.8.7-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "114638c9cf27112c064643d10da37079", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 16969378, "upload_time": "2019-09-24T23:23:44", "upload_time_iso_8601": "2019-09-24T23:23:44.598793Z", "url": "https://files.pythonhosted.org/packages/b0/3d/3a15ce18e47debb0701c6a572111e3c83824eafad53b0c901965513bb7ab/Fiona-1.8.7-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9c71150777520115830949c9a84bcbb", "sha256": "c3e955500de9aaa2a2c83147a1fee293010c25702392c066826f55a084c5239f" }, "downloads": -1, "filename": "Fiona-1.8.7-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d9c71150777520115830949c9a84bcbb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11853297, "upload_time": "2019-09-24T23:19:33", "upload_time_iso_8601": "2019-09-24T23:19:33.290783Z", "url": "https://files.pythonhosted.org/packages/c3/09/a91486996803b74f01b3827fe5627d469b42ea14e8f8b423222663e0a212/Fiona-1.8.7-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "256a613c4666cb32128257d096f2b8db", "sha256": "a55a23615bad3e142d4e4cda97bb5de83c778a80049222e9dffae93c13b5cf93" }, "downloads": -1, "filename": "Fiona-1.8.7.tar.gz", "has_sig": false, "md5_digest": "256a613c4666cb32128257d096f2b8db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1717499, "upload_time": "2019-09-24T23:34:08", "upload_time_iso_8601": "2019-09-24T23:34:08.599090Z", "url": "https://files.pythonhosted.org/packages/78/62/daafd070aebefa639df247705b97f13f7cfad43895581b5cae41bd886709/Fiona-1.8.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.8": [ { "comment_text": "", "digests": { "md5": "411382650a0eb32438a0546f42b4a995", "sha256": "659b0d66149ddcd324754495f8f4c6d5aefa92eebeb31fd82622b1c12b0d4443" }, "downloads": -1, "filename": "Fiona-1.8.8-1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "411382650a0eb32438a0546f42b4a995", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17872550, "upload_time": "2019-09-27T01:04:32", "upload_time_iso_8601": "2019-09-27T01:04:32.630480Z", "url": "https://files.pythonhosted.org/packages/3e/31/e2898a64589b347c1c010e094a3b18bb0a1ef116c56612eab84a1ea5db3a/Fiona-1.8.8-1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6ca47e98e0701c315db668af106a985", "sha256": "82760cfeffabd443eb7ada2a2c64d9a6eab3e14e7c25b1ff90186ba80a3ca625" }, "downloads": -1, "filename": "Fiona-1.8.8-1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d6ca47e98e0701c315db668af106a985", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11808027, "upload_time": "2019-09-27T00:57:05", "upload_time_iso_8601": "2019-09-27T00:57:05.461688Z", "url": "https://files.pythonhosted.org/packages/65/9c/192ddb75c1f8f2bde9968653135026b4d1380c7afbc45f7e74d0420e2f30/Fiona-1.8.8-1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4b79282dc372008ae5d7e86890c5264", "sha256": "8e8ce2f233b90d4faf03ed12c9826ab0193992c49685a0b9cf381e9fbfca8fa5" }, "downloads": -1, "filename": "Fiona-1.8.8-1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d4b79282dc372008ae5d7e86890c5264", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17911364, "upload_time": "2019-09-27T01:05:38", "upload_time_iso_8601": "2019-09-27T01:05:38.977082Z", "url": "https://files.pythonhosted.org/packages/22/e7/547e06a089b43a8009920bca30742e819a32f4d7d4fca2326cb08876b8be/Fiona-1.8.8-1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8660de49d6081c9e20ede926e94742e1", "sha256": "40e5a59029fb6b51824e7d2ab7b4d7de5f84c5c43ab189ec930e7aa7b7f6e278" }, "downloads": -1, "filename": "Fiona-1.8.8-1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8660de49d6081c9e20ede926e94742e1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11825475, "upload_time": "2019-09-27T01:01:56", "upload_time_iso_8601": "2019-09-27T01:01:56.370542Z", "url": "https://files.pythonhosted.org/packages/49/36/37870f7bc3c5d1281781754262cd28c1b645a152eba9b636c50447785d68/Fiona-1.8.8-1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1fb6c482b711dc25b1e09e446e4c922", "sha256": "bbc6ba0ec3f6fc208b3f50df14374d5796258cfc30436fe3de312ed62d8f6223" }, "downloads": -1, "filename": "Fiona-1.8.8-1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d1fb6c482b711dc25b1e09e446e4c922", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18029384, "upload_time": "2019-09-27T01:06:46", "upload_time_iso_8601": "2019-09-27T01:06:46.065555Z", "url": "https://files.pythonhosted.org/packages/5c/0f/be6c292d752eb057df369d303e8b21c014524475502798c315a266a84015/Fiona-1.8.8-1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05c75e302946992947adbd65f6446167", "sha256": "035414ebae4d2a55f61bda0bc55467c223504aad1826152122c8eafc4ba87819" }, "downloads": -1, "filename": "Fiona-1.8.8-1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "05c75e302946992947adbd65f6446167", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11855090, "upload_time": "2019-09-27T01:02:41", "upload_time_iso_8601": "2019-09-27T01:02:41.344517Z", "url": "https://files.pythonhosted.org/packages/1e/cf/a1f22d87223cb4f48beecf4de6eb59e5261a7d0d073489bbe7cfe6514ae3/Fiona-1.8.8-1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b073df0d07d9425eb7626c28f65920e", "sha256": "2bc68b11580352a10a92da734dc09bd12348e45188d94416788681430ff0f02a" }, "downloads": -1, "filename": "Fiona-1.8.8-1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "3b073df0d07d9425eb7626c28f65920e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17966287, "upload_time": "2019-09-27T01:07:52", "upload_time_iso_8601": "2019-09-27T01:07:52.208459Z", "url": "https://files.pythonhosted.org/packages/5c/f8/e2dd421f10642aec1e012934f09b496c601bbf3e12e7ec863040a35658fd/Fiona-1.8.8-1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5de757db13dbe9a99e4004da9467f4b7", "sha256": "8431aa3d790c5b509c4532ddb9a783df34d02a4e7b3175e5e75d058c09f81a90" }, "downloads": -1, "filename": "Fiona-1.8.8-1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5de757db13dbe9a99e4004da9467f4b7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11853313, "upload_time": "2019-09-27T01:03:26", "upload_time_iso_8601": "2019-09-27T01:03:26.426631Z", "url": "https://files.pythonhosted.org/packages/70/49/b9ee1f53e5b8eaf312ed7134bb3ac947a9997f71ec84ef966598ee4bc6fd/Fiona-1.8.8-1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a9ce262f9d349e505c12c818f3a39a1", "sha256": "711c3be73203b37812992089445a1e4e9d3d6b64e667389f7b15406e15a91e83" }, "downloads": -1, "filename": "Fiona-1.8.8.tar.gz", "has_sig": false, "md5_digest": "5a9ce262f9d349e505c12c818f3a39a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1717633, "upload_time": "2019-09-25T13:45:38", "upload_time_iso_8601": "2019-09-25T13:45:38.869165Z", "url": "https://files.pythonhosted.org/packages/94/7f/e288db1ad63d759d494c30caae34f865e0c6927588c490705e91b7134193/Fiona-1.8.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.9": [ { "comment_text": "", "digests": { "md5": "f8064af98e3ec25d1bf15ea4f4842a67", "sha256": "01ceabb54698a6054c9ca156169c38471b4f77737742264fad9655ccf12c2154" }, "downloads": -1, "filename": "Fiona-1.8.9-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f8064af98e3ec25d1bf15ea4f4842a67", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17876255, "upload_time": "2019-10-21T22:53:32", "upload_time_iso_8601": "2019-10-21T22:53:32.510782Z", "url": "https://files.pythonhosted.org/packages/b1/94/5686531c52c26f22b78530c2af3ae75d0b5860a3d1e7d2f9b1621a125451/Fiona-1.8.9-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "571fd5991b50fec18a41efe31b3b63c7", "sha256": "e9b1cf808280f46f006448453cf42067716a3d071140eca60204596a371ef64b" }, "downloads": -1, "filename": "Fiona-1.8.9-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "571fd5991b50fec18a41efe31b3b63c7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11809253, "upload_time": "2019-10-21T22:53:08", "upload_time_iso_8601": "2019-10-21T22:53:08.409823Z", "url": "https://files.pythonhosted.org/packages/21/62/aec4996eca78dd2c41e75f858c32d886b1eccb4f4fef9f398f828cc7ed99/Fiona-1.8.9-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bda544903e8b8d1671b9b84c707fb93", "sha256": "a29c87d7264828b349456e8b6fecb533d4cd4bc74711dc65fb0445c355f04679" }, "downloads": -1, "filename": "Fiona-1.8.9-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8bda544903e8b8d1671b9b84c707fb93", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17914125, "upload_time": "2019-10-21T22:53:38", "upload_time_iso_8601": "2019-10-21T22:53:38.918209Z", "url": "https://files.pythonhosted.org/packages/cb/d2/28923cbee626bdb62078955eb60d865a4a6188acf7bd7c1fb664b2f38286/Fiona-1.8.9-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9238b5d7bd2a48c0c1de95218de59a09", "sha256": "a2ffe0a250036043561bfdcf1075fd446a49ad8e3fabc0eece8542af923de290" }, "downloads": -1, "filename": "Fiona-1.8.9-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9238b5d7bd2a48c0c1de95218de59a09", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11826373, "upload_time": "2019-10-21T22:53:15", "upload_time_iso_8601": "2019-10-21T22:53:15.300142Z", "url": "https://files.pythonhosted.org/packages/96/1d/d160e44f349222c9355f6b396f4b33b923dc184922d08e9ca54b74de0493/Fiona-1.8.9-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e092f64abf507f631fb13c59e5830ae4", "sha256": "1e5dd891e4e8407b9098854f1c264be7cc0a2894dabed869dfee4a24820b1fa3" }, "downloads": -1, "filename": "Fiona-1.8.9-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "e092f64abf507f631fb13c59e5830ae4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18032054, "upload_time": "2019-10-21T22:53:44", "upload_time_iso_8601": "2019-10-21T22:53:44.986537Z", "url": "https://files.pythonhosted.org/packages/1b/78/eb449f57f689bb2a01e6f9bfb7be349ea7ed8d63422b9ba5719704d9dd99/Fiona-1.8.9-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "053867a8762e91601034337739e84941", "sha256": "14428f916b47eb58c1b132817fdf3c2becd85142c46949a81413be75cbc5909c" }, "downloads": -1, "filename": "Fiona-1.8.9-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "053867a8762e91601034337739e84941", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11856292, "upload_time": "2019-10-21T22:53:20", "upload_time_iso_8601": "2019-10-21T22:53:20.722788Z", "url": "https://files.pythonhosted.org/packages/d5/82/1cbf60e3c2e84d2cb264397c9ce8c97ad7e828433e01df663a163c982d78/Fiona-1.8.9-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eef0172a8c9e35f01a66911e33c0e9df", "sha256": "f547bab48f78f178762195406f0d4cf76bd19b2402a11804e9e002edcce35422" }, "downloads": -1, "filename": "Fiona-1.8.9-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "eef0172a8c9e35f01a66911e33c0e9df", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17969196, "upload_time": "2019-10-21T22:53:50", "upload_time_iso_8601": "2019-10-21T22:53:50.866535Z", "url": "https://files.pythonhosted.org/packages/c0/6c/5e18a6e46e125df2cfa8d542168dee83fa994a05ccc15e9cf87feb4e3836/Fiona-1.8.9-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57bb8909c58301b5e66dcb8cb11eb5bd", "sha256": "cb0534d025d46cfde7de0321016b72e7273f20d03286f7ec1511713267f002a7" }, "downloads": -1, "filename": "Fiona-1.8.9-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "57bb8909c58301b5e66dcb8cb11eb5bd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11855319, "upload_time": "2019-10-21T22:53:26", "upload_time_iso_8601": "2019-10-21T22:53:26.658660Z", "url": "https://files.pythonhosted.org/packages/35/a0/2ec452759013c534a08d7f2114207611efcfaf4b28f5f6cf224a9d60d935/Fiona-1.8.9-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40cd7fa7aa2f20d5c6e2b9eed4d0bbdb", "sha256": "4dd6e2f5327c1174143c7c8594a75d373bc72f2c9a2a6daee312c3186a128add" }, "downloads": -1, "filename": "Fiona-1.8.9.tar.gz", "has_sig": false, "md5_digest": "40cd7fa7aa2f20d5c6e2b9eed4d0bbdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1214494, "upload_time": "2019-10-21T22:54:27", "upload_time_iso_8601": "2019-10-21T22:54:27.547176Z", "url": "https://files.pythonhosted.org/packages/ad/92/dcbd8c54d697c22f299b5af63b6df3acfbd06c6d72e249614c05be99337c/Fiona-1.8.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.9.post1": [ { "comment_text": "", "digests": { "md5": "ae2354a5ff1e1f202a5d8697d1a4826f", "sha256": "1a7b4ad5ad630f4b3dacf9a260f23f5bed60216662d3ae212e6025998d514fe2" }, "downloads": -1, "filename": "Fiona-1.8.9.post1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ae2354a5ff1e1f202a5d8697d1a4826f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17876443, "upload_time": "2019-10-22T16:13:57", "upload_time_iso_8601": "2019-10-22T16:13:57.145843Z", "url": "https://files.pythonhosted.org/packages/82/b0/beff25e477b4bc3f619dfb8f64329cd7b3b269603b46bc242c89956d8084/Fiona-1.8.9.post1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e116ca5a8f340f0631610bc76b1aad0", "sha256": "60d2b0f7c0c51a7319bc133cb0c89eeeb8993304cd601b04bccbe7a7b82df572" }, "downloads": -1, "filename": "Fiona-1.8.9.post1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9e116ca5a8f340f0631610bc76b1aad0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11809378, "upload_time": "2019-10-22T16:13:35", "upload_time_iso_8601": "2019-10-22T16:13:35.062600Z", "url": "https://files.pythonhosted.org/packages/a3/28/b9308c76a8512782af5889e5369178d69531bdc291d895025ec13cd1ffd3/Fiona-1.8.9.post1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "539a2cccd0b49d13d15f53ea9980305f", "sha256": "f5e3172d84eedf37c1283a75b2251089c9400b1afce3f018887e01068dcee67d" }, "downloads": -1, "filename": "Fiona-1.8.9.post1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "539a2cccd0b49d13d15f53ea9980305f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17914304, "upload_time": "2019-10-22T16:14:02", "upload_time_iso_8601": "2019-10-22T16:14:02.843966Z", "url": "https://files.pythonhosted.org/packages/72/50/c800ba27f712a0828e8381c736ee653d699e8cc2ae321b10217e3e37f490/Fiona-1.8.9.post1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99f4ec3e432974eb2cfc26ab58868222", "sha256": "b1f922f429e531e6422959f1de97cd38f66019d448c4abdd70c073d1cb003581" }, "downloads": -1, "filename": "Fiona-1.8.9.post1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "99f4ec3e432974eb2cfc26ab58868222", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11826495, "upload_time": "2019-10-22T16:13:40", "upload_time_iso_8601": "2019-10-22T16:13:40.568804Z", "url": "https://files.pythonhosted.org/packages/bd/f1/192f2497a766ea4349b0e093763a81bd3f6e729566417fbd80f0edb85756/Fiona-1.8.9.post1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b30ab8696cc7e975e413996981eec21", "sha256": "8f0c265ca5ce82bda73f00858a93972a7df9360d321af794f9ed324e397224b0" }, "downloads": -1, "filename": "Fiona-1.8.9.post1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "7b30ab8696cc7e975e413996981eec21", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18032096, "upload_time": "2019-10-22T16:14:08", "upload_time_iso_8601": "2019-10-22T16:14:08.491096Z", "url": "https://files.pythonhosted.org/packages/ce/c5/dc69aeb09e65daae55982c4018dae2ac499558b4a7d97256a4d687e80ca4/Fiona-1.8.9.post1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ba9cf38c5822aeb378775bf778c88c6", "sha256": "4f065606a15184547f1cb4a41abb780755e902d3cce22e3170178f3c2d4e12e8" }, "downloads": -1, "filename": "Fiona-1.8.9.post1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9ba9cf38c5822aeb378775bf778c88c6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11856418, "upload_time": "2019-10-22T16:13:45", "upload_time_iso_8601": "2019-10-22T16:13:45.784770Z", "url": "https://files.pythonhosted.org/packages/27/af/dfd264a98fab2da979f9d2172537def59c2ee38457a368eba8235ec89a39/Fiona-1.8.9.post1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "103fd81c1550f6aac1214a9f92ed5de7", "sha256": "dd319b9b1e16fc6f9af8dcee6aec9ec05c4c21ba44265a2ebc11c22378e87630" }, "downloads": -1, "filename": "Fiona-1.8.9.post1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "103fd81c1550f6aac1214a9f92ed5de7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17969304, "upload_time": "2019-10-22T16:14:14", "upload_time_iso_8601": "2019-10-22T16:14:14.312007Z", "url": "https://files.pythonhosted.org/packages/67/bb/837e9e2b1563c051333992fba918d725faa932b6012dbf7f10036505d2e3/Fiona-1.8.9.post1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "937d8c4b92c7e43d3a4f8a9e5051fd0f", "sha256": "f6c66311d81abd06875fc0c6119a47e59c0c9205b4c6dc307cb3d98e6da60e89" }, "downloads": -1, "filename": "Fiona-1.8.9.post1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "937d8c4b92c7e43d3a4f8a9e5051fd0f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11855443, "upload_time": "2019-10-22T16:13:51", "upload_time_iso_8601": "2019-10-22T16:13:51.168871Z", "url": "https://files.pythonhosted.org/packages/50/82/a348630d2119f150ca6906bd580d8027af55d518d74e123e37be2b674213/Fiona-1.8.9.post1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87c31c039ce0cd4268b2b3f8f7e4856e", "sha256": "d5e0ea0b8addffe9cba4cb59e2bd495b015230e7a1b1597974f5048211930199" }, "downloads": -1, "filename": "Fiona-1.8.9.post1.tar.gz", "has_sig": false, "md5_digest": "87c31c039ce0cd4268b2b3f8f7e4856e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1214688, "upload_time": "2019-10-22T16:14:33", "upload_time_iso_8601": "2019-10-22T16:14:33.031192Z", "url": "https://files.pythonhosted.org/packages/0e/a4/d9dd7399be809d3990f5000fb6ae43189ea26ae88be1bed3a4c9ddc1becc/Fiona-1.8.9.post1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.9.post2": [ { "comment_text": "", "digests": { "md5": "5490e71965ee3308a8711d5e59a499bf", "sha256": "764e07073e89813527d6f254d753d9447346ce86db8df8ff7fad217bc7666a91" }, "downloads": -1, "filename": "Fiona-1.8.9.post2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5490e71965ee3308a8711d5e59a499bf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17876506, "upload_time": "2019-10-22T23:13:39", "upload_time_iso_8601": "2019-10-22T23:13:39.761416Z", "url": "https://files.pythonhosted.org/packages/a6/b1/d537d98a3c86f87c00f528458a6842a6b06f95428325a0ad72a9dbe4f34a/Fiona-1.8.9.post2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69bd1d348ca688002624586fcf012049", "sha256": "76b8ef2ba114d653a18ea7e87dc577309b77a13a1ea8dd21a09f85adf24f4b75" }, "downloads": -1, "filename": "Fiona-1.8.9.post2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "69bd1d348ca688002624586fcf012049", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11809435, "upload_time": "2019-10-22T23:13:17", "upload_time_iso_8601": "2019-10-22T23:13:17.885001Z", "url": "https://files.pythonhosted.org/packages/74/e4/cdb3cc813b9f4c017a124d5198b56b67a2999d0f159fc36ed695c65b9b1b/Fiona-1.8.9.post2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80ddd7d617da8fdcbd1ccc737b709395", "sha256": "408677e6bc8e1102419092eb1d87f9b00ce785bb03d89515da497c9009281f22" }, "downloads": -1, "filename": "Fiona-1.8.9.post2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "80ddd7d617da8fdcbd1ccc737b709395", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17914413, "upload_time": "2019-10-22T23:13:44", "upload_time_iso_8601": "2019-10-22T23:13:44.950891Z", "url": "https://files.pythonhosted.org/packages/dc/d2/5cb35364f4326149b0dae308448edcbde2184345de6ea496f94e1a74af7c/Fiona-1.8.9.post2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5c6a5a0dd8e76626e74b656d2c5b749", "sha256": "16c3fcb0e5e4e73a12a08d2d1361650afc97da09516f4128c57d1ed3a3ea023a" }, "downloads": -1, "filename": "Fiona-1.8.9.post2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a5c6a5a0dd8e76626e74b656d2c5b749", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11826554, "upload_time": "2019-10-22T23:13:23", "upload_time_iso_8601": "2019-10-22T23:13:23.144187Z", "url": "https://files.pythonhosted.org/packages/91/53/d0656f74100237e4eb84b068168e12301c2bc931ee2efd5fdcb50cbf3964/Fiona-1.8.9.post2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e89b7485ef30d43c6edaf9aa49d0ebbd", "sha256": "7445b5be2224c773392ba91422620ac8754deee631b9ebed4b6311d9d564fe46" }, "downloads": -1, "filename": "Fiona-1.8.9.post2-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "e89b7485ef30d43c6edaf9aa49d0ebbd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18032110, "upload_time": "2019-10-22T23:13:50", "upload_time_iso_8601": "2019-10-22T23:13:50.689759Z", "url": "https://files.pythonhosted.org/packages/a3/86/fa92567b56b2d8a0e8b57d334b2b543b64285cb8746e35f9b8d61365ca6e/Fiona-1.8.9.post2-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b01eb033c20c7e7398b974b24501736d", "sha256": "95d79fbb59f308135caa9520a49687933d938249890a31960e7e0ec4ebd955d2" }, "downloads": -1, "filename": "Fiona-1.8.9.post2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b01eb033c20c7e7398b974b24501736d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11856473, "upload_time": "2019-10-22T23:13:28", "upload_time_iso_8601": "2019-10-22T23:13:28.322321Z", "url": "https://files.pythonhosted.org/packages/19/80/09aa6ba5e4ed3f07ddbd2204634b119cb50ae613aa182c6ee7daff3adc9b/Fiona-1.8.9.post2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0a93afe1c5683d879660bcc5862eeb6", "sha256": "24fef046144ed1cf4527f822e5864f7a3e851cc93f9f709fb1b13314eac284b7" }, "downloads": -1, "filename": "Fiona-1.8.9.post2-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c0a93afe1c5683d879660bcc5862eeb6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17969306, "upload_time": "2019-10-22T23:13:55", "upload_time_iso_8601": "2019-10-22T23:13:55.942826Z", "url": "https://files.pythonhosted.org/packages/0d/a1/46bddb57b2161df03614099d5709ee11d6b1d5f08d2a1e34f5974da8a3f9/Fiona-1.8.9.post2-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed3ecc1857502b5c3d53ddae365f86f1", "sha256": "c11e3330614f868e1e70aebfff3e9ee1e5e6fbfd08d711ac2d68261af4a0b0f9" }, "downloads": -1, "filename": "Fiona-1.8.9.post2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ed3ecc1857502b5c3d53ddae365f86f1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11855499, "upload_time": "2019-10-22T23:13:33", "upload_time_iso_8601": "2019-10-22T23:13:33.923487Z", "url": "https://files.pythonhosted.org/packages/13/f4/f42e3736cb057ef89c28cafcdc1a67a9b23ef3fa480b798642d3bbc3e007/Fiona-1.8.9.post2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03e68e2d42b74e3ff9f7f9e2fd593403", "sha256": "210fb038b579fab38f35ddbdd31b9725f4d5099b3edfd4b87c983e5d47b79983" }, "downloads": -1, "filename": "Fiona-1.8.9.post2.tar.gz", "has_sig": false, "md5_digest": "03e68e2d42b74e3ff9f7f9e2fd593403", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1214921, "upload_time": "2019-10-22T23:15:15", "upload_time_iso_8601": "2019-10-22T23:15:15.353431Z", "url": "https://files.pythonhosted.org/packages/9b/52/45e75507660ce0e86176d0f59b659560f687e2c7e9ebf82a10e7dcd2d3b7/Fiona-1.8.9.post2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8a1": [ { "comment_text": "", "digests": { "md5": "5e8d0a167962f18f9f2f6be6e975db02", "sha256": "bfe74fc58ed95dd47f7ea1a121021641e232045363dee7e817979904eddcb267" }, "downloads": -1, "filename": "Fiona-1.8a1-cp27-cp27m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5e8d0a167962f18f9f2f6be6e975db02", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 18784138, "upload_time": "2017-11-06T18:17:26", "upload_time_iso_8601": "2017-11-06T18:17:26.260204Z", "url": "https://files.pythonhosted.org/packages/44/db/5943ebb89add652dd7dd12084873fdc771c11672d58459b03d3b9a093213/Fiona-1.8a1-cp27-cp27m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecf955c1b55a8afaecabf943d32d4805", "sha256": "511118f907d77c7dddf0017e8d790942daf73a3bb1cdd86df94cc7885bd80c12" }, "downloads": -1, "filename": "Fiona-1.8a1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ecf955c1b55a8afaecabf943d32d4805", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13299023, "upload_time": "2017-11-06T18:18:30", "upload_time_iso_8601": "2017-11-06T18:18:30.465783Z", "url": "https://files.pythonhosted.org/packages/23/5d/ed5d0906067b072b6fb4c01c522f8c34220c2ac22825b812dab04cf6e617/Fiona-1.8a1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4a398861177f43907713f183891ee0a", "sha256": "feec70c802baec46e295e8795ea86fd86e1159c35011966c518df3db0572eb02" }, "downloads": -1, "filename": "Fiona-1.8a1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b4a398861177f43907713f183891ee0a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13299066, "upload_time": "2017-11-06T18:19:25", "upload_time_iso_8601": "2017-11-06T18:19:25.040778Z", "url": "https://files.pythonhosted.org/packages/df/a8/623e03637986e1a9a19c1f9411e4235f4437cb10dee36612fd25ddd4de09/Fiona-1.8a1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20ecfa4dcd1fe552ea94c364d4c78a41", "sha256": "f4fd77d3046afe2b712b8f7e49402eb979b1165cc065987208495b7251f0c3e5" }, "downloads": -1, "filename": "Fiona-1.8a1-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "20ecfa4dcd1fe552ea94c364d4c78a41", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 18789272, "upload_time": "2017-11-06T18:20:43", "upload_time_iso_8601": "2017-11-06T18:20:43.082869Z", "url": "https://files.pythonhosted.org/packages/df/e4/7be9bff9c1dda4e7e9ff606826e9929541fe2803b059d1d90bc04b59552a/Fiona-1.8a1-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eaf889ca07e2615c51ca492be4bfe90b", "sha256": "3ebe15a79b65afb726cd23d8ed9fc0212ea842db0a372368e7b766e19aa53c94" }, "downloads": -1, "filename": "Fiona-1.8a1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eaf889ca07e2615c51ca492be4bfe90b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13474480, "upload_time": "2017-11-06T18:21:39", "upload_time_iso_8601": "2017-11-06T18:21:39.352190Z", "url": "https://files.pythonhosted.org/packages/c5/90/5af4099d4b5636a0e86264c2de08b84d72a191153f80db4c04bdf6769bfc/Fiona-1.8a1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "614666826c356a6b5eb26d6589aa77a6", "sha256": "21fe0e6caee02a39acdcd28e09e802c55f6772b11b3ba5bca2df29d4e07e2dfb" }, "downloads": -1, "filename": "Fiona-1.8a1-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "614666826c356a6b5eb26d6589aa77a6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 18761950, "upload_time": "2017-11-06T18:23:00", "upload_time_iso_8601": "2017-11-06T18:23:00.055268Z", "url": "https://files.pythonhosted.org/packages/39/e2/21df15cc780be8e6e20a5c12d5b2bf96d09804ef2e3dc0478c855fbf636c/Fiona-1.8a1-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b71ba3176eac43814f3e0fa540b01e71", "sha256": "057cd3265e1d8f112b15e10c84d402774c8c739a5273a38b2ba921373c052d80" }, "downloads": -1, "filename": "Fiona-1.8a1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b71ba3176eac43814f3e0fa540b01e71", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13457893, "upload_time": "2017-11-06T18:24:08", "upload_time_iso_8601": "2017-11-06T18:24:08.899630Z", "url": "https://files.pythonhosted.org/packages/f6/b5/5141bf506dce3ba13b718bb9ccfe5eb1d9c1ec8b7a2d46c2b482dbe50071/Fiona-1.8a1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e1a43ffa46b47182637e0eb2956b859", "sha256": "cfd78978b5a38ba499c251687048c3ad38af496de856b6af7e380a55b7dfdb6c" }, "downloads": -1, "filename": "Fiona-1.8a1-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8e1a43ffa46b47182637e0eb2956b859", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18759964, "upload_time": "2017-11-06T18:25:28", "upload_time_iso_8601": "2017-11-06T18:25:28.381520Z", "url": "https://files.pythonhosted.org/packages/ca/71/d8250dede4e7583a90906eb20d0d667654dabc0dde74d819edff98f505b6/Fiona-1.8a1-cp36-cp36m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0492db3d064473e4819067e479df0e2", "sha256": "4c32fd600d5f0428dc17e9ad895d8d15fc14761712817ec065b48b7a1865b6e0" }, "downloads": -1, "filename": "Fiona-1.8a1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d0492db3d064473e4819067e479df0e2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13510285, "upload_time": "2017-11-06T18:26:25", "upload_time_iso_8601": "2017-11-06T18:26:25.788343Z", "url": "https://files.pythonhosted.org/packages/4f/d5/fe812a6d1e9cf41688bda81d1fbc97f9d868c62dc4c90cb907ad08897d31/Fiona-1.8a1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d2d85cef66827faffe7e2cc50858e81", "sha256": "3702b90a6a0db731b76b6261ad9f0bf8611b2a60938f8277097962f173b19a9e" }, "downloads": -1, "filename": "Fiona-1.8a1.tar.gz", "has_sig": false, "md5_digest": "2d2d85cef66827faffe7e2cc50858e81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 647087, "upload_time": "2017-11-06T18:26:32", "upload_time_iso_8601": "2017-11-06T18:26:32.966085Z", "url": "https://files.pythonhosted.org/packages/27/1a/c363254e32b3d1b6a326d0bf35064be88d40d6c6515a848cdc2b78cc8d14/Fiona-1.8a1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8a2": [ { "comment_text": "", "digests": { "md5": "784e0e77402507f0b486dfd727c25422", "sha256": "99b60c221aa34ae381ec87579743ed90337d3804717effc5f5d3fd6c96e7c0dc" }, "downloads": -1, "filename": "Fiona-1.8a2-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "784e0e77402507f0b486dfd727c25422", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 21721013, "upload_time": "2018-07-24T20:27:47", "upload_time_iso_8601": "2018-07-24T20:27:47.106556Z", "url": "https://files.pythonhosted.org/packages/cd/d1/1217a06bc1d40ea8563d4bb7a2e10a7be04a1e515468ca9f7bee730da164/Fiona-1.8a2-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "420f4cceeaf965788677ed0272a4ac0c", "sha256": "ab0f2943540bc3bc313c1cbc792657be6e59625631a575f5d864b5dcb5b9bd8e" }, "downloads": -1, "filename": "Fiona-1.8a2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "420f4cceeaf965788677ed0272a4ac0c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15874090, "upload_time": "2018-07-24T20:28:53", "upload_time_iso_8601": "2018-07-24T20:28:53.479895Z", "url": "https://files.pythonhosted.org/packages/11/ae/c7ad263641c740caa1b93e9410ade5828a4323b4b274ce50cf7bf1210330/Fiona-1.8a2-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "651ce518ea2a6f4e616cd706a8a1a554", "sha256": "bf22846b38192f301bd62b025530dc8dac5f0380451c2e3476d710f09393d52f" }, "downloads": -1, "filename": "Fiona-1.8a2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "651ce518ea2a6f4e616cd706a8a1a554", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15874138, "upload_time": "2018-07-24T20:30:00", "upload_time_iso_8601": "2018-07-24T20:30:00.437213Z", "url": "https://files.pythonhosted.org/packages/13/fd/3d93ebbf1d4b4d9652bbf897a4ddd2190ad6733f97f823cd4d5defaadb19/Fiona-1.8a2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "683605409dbdb19ec78c219dd3307ae5", "sha256": "f5fbb23979c77f05dcdc687bc1812e33ef8d08805264363e82d40ff9e76756f6" }, "downloads": -1, "filename": "Fiona-1.8a2-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "683605409dbdb19ec78c219dd3307ae5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 21704271, "upload_time": "2018-07-24T20:31:40", "upload_time_iso_8601": "2018-07-24T20:31:40.098850Z", "url": "https://files.pythonhosted.org/packages/a4/78/2abb72745c262d7807daa4ab4e36e6351936c5fed1d896600c8c7beeaaa3/Fiona-1.8a2-cp34-cp34m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3cc77ad875269a618cf052d89ed8089d", "sha256": "0bd684284a8f344b5bcd3159946d0c6cd6a5988454163cf7f9a0df24f8af021a" }, "downloads": -1, "filename": "Fiona-1.8a2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3cc77ad875269a618cf052d89ed8089d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 16065380, "upload_time": "2018-07-24T20:32:39", "upload_time_iso_8601": "2018-07-24T20:32:39.433830Z", "url": "https://files.pythonhosted.org/packages/5e/05/704b9d5e87d3a8ff491c7c499cfcaa39a991b537f56c1fa9102b21da0322/Fiona-1.8a2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "501f4c49f5d4d469091cd71c366cd101", "sha256": "40257d9c4d55ab7d4144a5090036e515c3f58b93d2dbbddb62519bb71c3904c7" }, "downloads": -1, "filename": "Fiona-1.8a2-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "501f4c49f5d4d469091cd71c366cd101", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 21698924, "upload_time": "2018-07-24T20:33:57", "upload_time_iso_8601": "2018-07-24T20:33:57.758546Z", "url": "https://files.pythonhosted.org/packages/4c/9d/c0ae48ce7eebc73e472a8f28ecc63ae03f5c356895a05c1ebc2baad7289a/Fiona-1.8a2-cp35-cp35m-macosx_10_9_intel.macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "561aaff99ee4312b3af513e8a66b22d0", "sha256": "889277f3d2cb955d4c897e7ccfa7096bb3e8acea1c843272504045a6cbe34f80" }, "downloads": -1, "filename": "Fiona-1.8a2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "561aaff99ee4312b3af513e8a66b22d0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 16033088, "upload_time": "2018-07-24T20:35:11", "upload_time_iso_8601": "2018-07-24T20:35:11.285188Z", "url": "https://files.pythonhosted.org/packages/95/43/cd704868d0210efaf5268388a94445c1b63707668ad68ec69655dcce2fa6/Fiona-1.8a2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "731235386ee6cb3b72f9aaf0a669975c", "sha256": "c1b78dc4003cd68c9ceffa3a30f27bf55be451ccabbccd7a8dd979536a51d417" }, "downloads": -1, "filename": "Fiona-1.8a2-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "731235386ee6cb3b72f9aaf0a669975c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21732754, "upload_time": "2018-07-24T20:36:43", "upload_time_iso_8601": "2018-07-24T20:36:43.459417Z", "url": "https://files.pythonhosted.org/packages/96/7b/311ea3322605ab1cc4ac61a8aa5a87eb4bf927cded4a174d11dbe87b54f3/Fiona-1.8a2-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f9a13993fca6d1473c01a99e7c1a55d", "sha256": "123c87abcae8bd1f1cc6506f78f91d6f0e5c0d192da2c2082cf5149634beecbf" }, "downloads": -1, "filename": "Fiona-1.8a2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7f9a13993fca6d1473c01a99e7c1a55d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 16104691, "upload_time": "2018-07-24T20:38:07", "upload_time_iso_8601": "2018-07-24T20:38:07.950424Z", "url": "https://files.pythonhosted.org/packages/49/f1/8a048d3b9299999fb2be219fb46900a8caa89bf52cd5cd4f019498c1b989/Fiona-1.8a2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d1021cd41b4eabca65f42cc69008c79", "sha256": "5c3fd2ca963a869fa9dc13b3c268b92a065fca6cddc31fd78a8a9b62cdfda0b0" }, "downloads": -1, "filename": "Fiona-1.8a2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6d1021cd41b4eabca65f42cc69008c79", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21697391, "upload_time": "2018-07-24T20:39:33", "upload_time_iso_8601": "2018-07-24T20:39:33.217019Z", "url": "https://files.pythonhosted.org/packages/26/fb/de802020a98553c9c1be2c4abedd85897d22c2affa00db7983e9e08f9236/Fiona-1.8a2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1bc498488a6e9047f2631b1fcbd3ff3e", "sha256": "d54479be79464f8d752d637f3ba61f0e54af6c344ca7fd77bc9ec8a7dc903e73" }, "downloads": -1, "filename": "Fiona-1.8a2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1bc498488a6e9047f2631b1fcbd3ff3e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 16084281, "upload_time": "2018-07-24T20:40:45", "upload_time_iso_8601": "2018-07-24T20:40:45.744587Z", "url": "https://files.pythonhosted.org/packages/dc/2b/a6c4ded1844ea265b9b32b8cb515c1e0f501c07dbd2026688b1bb5629e2d/Fiona-1.8a2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45d57fb598af60daa40ad1315cccf45f", "sha256": "57c20d6b158d038f0173cb666733643f5f5a9ef2a1e19256afa7b4fe3678ef77" }, "downloads": -1, "filename": "Fiona-1.8a2.tar.gz", "has_sig": false, "md5_digest": "45d57fb598af60daa40ad1315cccf45f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 780470, "upload_time": "2018-07-24T20:40:51", "upload_time_iso_8601": "2018-07-24T20:40:51.497539Z", "url": "https://files.pythonhosted.org/packages/58/7d/86c612ed7b7603d0c314bb53d33da6a9bb48f56135b66f129b84e81d571a/Fiona-1.8a2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8a3": [ { "comment_text": "", "digests": { "md5": "bf6837e32485e1690f0753c6b9af2097", "sha256": "26a88954761dfd3ed65439288a6ed5e1902df8fd8a45dbb0a18b90e494aa8fa2" }, "downloads": -1, "filename": "Fiona-1.8a3-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "bf6837e32485e1690f0753c6b9af2097", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24372953, "upload_time": "2018-10-02T03:16:53", "upload_time_iso_8601": "2018-10-02T03:16:53.221640Z", "url": "https://files.pythonhosted.org/packages/e1/f0/5553d5936c4b5e0ad42821f706d9ba21c5f85d27dfea339146ecf38c3953/Fiona-1.8a3-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c8f4c56750da1cc67ece34a284e8ad3", "sha256": "6b43b9e30877bdfcd5bd4f88daacf1e591e16fcd113794c6344cbd644202ecbd" }, "downloads": -1, "filename": "Fiona-1.8a3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4c8f4c56750da1cc67ece34a284e8ad3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17705294, "upload_time": "2018-10-02T03:13:29", "upload_time_iso_8601": "2018-10-02T03:13:29.435552Z", "url": "https://files.pythonhosted.org/packages/db/f3/562d950ddf0c6a22e42fef94b6f148e9ff10d5724f6cb525f2f2e7d1ebb4/Fiona-1.8a3-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b21bb69a8f7454d57481ede2cea9c09d", "sha256": "b5afc26b251ca4b196bc95919b7bc7e71f56b9fcc6a7d956ee9d5d94fc7a18da" }, "downloads": -1, "filename": "Fiona-1.8a3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b21bb69a8f7454d57481ede2cea9c09d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24358227, "upload_time": "2018-10-02T03:17:40", "upload_time_iso_8601": "2018-10-02T03:17:40.240406Z", "url": "https://files.pythonhosted.org/packages/e7/68/3ce6cad7ea5304f037f607f66d88b3114681df3a20ea9859fa556bd50f20/Fiona-1.8a3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72f8c1fc7eac3fd7f564b43c559d7730", "sha256": "7d1c46ac994f69e249f0e1ad68047d3e8c51538d8f8f9a98d70950ee1abdaa46" }, "downloads": -1, "filename": "Fiona-1.8a3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "72f8c1fc7eac3fd7f564b43c559d7730", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24346926, "upload_time": "2018-10-02T03:20:01", "upload_time_iso_8601": "2018-10-02T03:20:01.122864Z", "url": "https://files.pythonhosted.org/packages/e2/8c/8f1915ad7e99e25f93d3ef5f1ad34c2f857cb6895030b3fe330b04b848f2/Fiona-1.8a3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9088f3c3758c3571b6ba66ef990379e2", "sha256": "e8b239e604f65e9a8abad32046c1a8ed44f5b666be6d4f795013e23ab8ce8fe4" }, "downloads": -1, "filename": "Fiona-1.8a3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9088f3c3758c3571b6ba66ef990379e2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17719925, "upload_time": "2018-10-02T03:13:40", "upload_time_iso_8601": "2018-10-02T03:13:40.277700Z", "url": "https://files.pythonhosted.org/packages/09/75/234d0984f9816b0bf9ec084dce5f56986f2a0703cb4a07aa99966006957a/Fiona-1.8a3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01d91344b0f5edb16d61fbcb8ad39803", "sha256": "9b1e01e13d6312b4d3026fd056173ed82d5bf23d144c0cce5fb9124ac1314df7" }, "downloads": -1, "filename": "Fiona-1.8a3-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "01d91344b0f5edb16d61fbcb8ad39803", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24385242, "upload_time": "2018-10-02T03:19:58", "upload_time_iso_8601": "2018-10-02T03:19:58.613295Z", "url": "https://files.pythonhosted.org/packages/bd/24/052d6511a1af5ff475b76dca9daf871c20198f054a4f5c5b9fdbf1d11718/Fiona-1.8a3-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dd84fe6ad24c04b63c29a9faa6c64bd", "sha256": "c1fdad6e82de2e0b72545684cb7efbb964a4612f6b6f88e96fcc32d84a029226" }, "downloads": -1, "filename": "Fiona-1.8a3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8dd84fe6ad24c04b63c29a9faa6c64bd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17732888, "upload_time": "2018-10-02T03:13:07", "upload_time_iso_8601": "2018-10-02T03:13:07.316666Z", "url": "https://files.pythonhosted.org/packages/b5/b6/1fbbf914be54700b7f98f4b0a2f4d4fc3b29cd06f221e77ff8d9385bbc58/Fiona-1.8a3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7046259d1ac0248277d710cfcbbc797", "sha256": "b738ee3d48fd126ad2b67fbebee5c1d942b8351cbc25fc146a45d95831109774" }, "downloads": -1, "filename": "Fiona-1.8a3-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a7046259d1ac0248277d710cfcbbc797", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24345015, "upload_time": "2018-10-02T03:20:51", "upload_time_iso_8601": "2018-10-02T03:20:51.049878Z", "url": "https://files.pythonhosted.org/packages/d4/76/0e1f3d46fd2a54fa49de5ba2ae1a4216b4230599798b9f7ceba39694df93/Fiona-1.8a3-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "adc753383f61dfc3ae21c08116ee2c79", "sha256": "a323dd0abacdfa0a27df2e0eebee626e35ae6f7cff7adbc4d5ee3adc0489203b" }, "downloads": -1, "filename": "Fiona-1.8a3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "adc753383f61dfc3ae21c08116ee2c79", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17733835, "upload_time": "2018-10-02T03:14:47", "upload_time_iso_8601": "2018-10-02T03:14:47.691325Z", "url": "https://files.pythonhosted.org/packages/9a/cb/b76e48d6ef00bc292931ac5ae1d409600df042b4962ca235d1115694d460/Fiona-1.8a3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7ceaf95b62052fe1fc9891e784dcc6f", "sha256": "383b92439b67d80d599831180a2155eb80b01d0c67ac0f70f70406ca25fb0212" }, "downloads": -1, "filename": "Fiona-1.8a3.tar.gz", "has_sig": false, "md5_digest": "f7ceaf95b62052fe1fc9891e784dcc6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1369080, "upload_time": "2018-10-02T03:21:35", "upload_time_iso_8601": "2018-10-02T03:21:35.151507Z", "url": "https://files.pythonhosted.org/packages/50/5e/f68227bede30931fb6ddf34e168886780f7b97732ad427eb61f3c1111fb3/Fiona-1.8a3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8b1": [ { "comment_text": "", "digests": { "md5": "85c3d03605430553e2a89c7f0d66960e", "sha256": "aef58c66dd228b0728631e6ed190a46d4ab5dbd75f92025fefad771e76594fd6" }, "downloads": -1, "filename": "Fiona-1.8b1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "85c3d03605430553e2a89c7f0d66960e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24333106, "upload_time": "2018-10-15T17:45:06", "upload_time_iso_8601": "2018-10-15T17:45:06.147312Z", "url": "https://files.pythonhosted.org/packages/d7/a2/41068eaea1e2dc7a4b2b63f63c4c29a294ca89a11568486e748337e92d59/Fiona-1.8b1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9b5a670a13f805d2db6b9c5a50f5a77", "sha256": "c2e4bfbcdb94f9bfb18c6d89ee879d7ebc6dcaedafe657b6f6a8108093a89079" }, "downloads": -1, "filename": "Fiona-1.8b1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d9b5a670a13f805d2db6b9c5a50f5a77", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17909339, "upload_time": "2018-10-15T17:39:19", "upload_time_iso_8601": "2018-10-15T17:39:19.466916Z", "url": "https://files.pythonhosted.org/packages/39/f9/aa6a0760f00bbab257033ef4fe14bc3556bc998c8c43598030fb8ad2de6c/Fiona-1.8b1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ed68613cba2b6c0ef5389eb1663f5d3", "sha256": "7afccda5a8a79c1301fbdfa8e449eb7f892aa2735b35264826ed03d59faccbbf" }, "downloads": -1, "filename": "Fiona-1.8b1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "9ed68613cba2b6c0ef5389eb1663f5d3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24306279, "upload_time": "2018-10-15T17:46:15", "upload_time_iso_8601": "2018-10-15T17:46:15.005803Z", "url": "https://files.pythonhosted.org/packages/93/d4/e41bf54bcd286266c0273d12006c25595d1e1b7d675cb26f4de8f0ddbcb0/Fiona-1.8b1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b752cfa6e062b6dc41107ae591a089ec", "sha256": "009b3f9f380346200c1310ca0968fec6362c365be34fc0ebd5057e9bb36d0acf" }, "downloads": -1, "filename": "Fiona-1.8b1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b752cfa6e062b6dc41107ae591a089ec", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17919843, "upload_time": "2018-10-15T17:40:35", "upload_time_iso_8601": "2018-10-15T17:40:35.125634Z", "url": "https://files.pythonhosted.org/packages/81/db/aba929e0fde01b7018416412120ad8876597eb6ce9448d816f340854f5b4/Fiona-1.8b1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1e4fd96b41e78601027e2f631f16c4f", "sha256": "45cdce0d8a60106858ac4dc02c1692f4b7e2d321effbc2915b27058971d82318" }, "downloads": -1, "filename": "Fiona-1.8b1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "e1e4fd96b41e78601027e2f631f16c4f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24358976, "upload_time": "2018-10-15T17:47:56", "upload_time_iso_8601": "2018-10-15T17:47:56.745504Z", "url": "https://files.pythonhosted.org/packages/eb/ce/0e952eeaaa9ff74751c6f47ee132a4f8d7db9c2fb063ffa12a607700a7d6/Fiona-1.8b1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44e5974296bbdc74bec54df32d6c431d", "sha256": "f8106cb01ef8240be26d2649fed5e3cb88cf75bba17b7adff5b0d97d4936056b" }, "downloads": -1, "filename": "Fiona-1.8b1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "44e5974296bbdc74bec54df32d6c431d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17927068, "upload_time": "2018-10-15T17:40:31", "upload_time_iso_8601": "2018-10-15T17:40:31.847069Z", "url": "https://files.pythonhosted.org/packages/61/78/d37dc555f74979b7cfca7e96bcfc43a7db4fcfe4d773b3efe95929fee225/Fiona-1.8b1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5cc3ee5810e640405169d9cb6ef2e84", "sha256": "7ff1a42bc86b85315a455e9a2e14bf8e176cf369a39228f3f10e400a3637e5cf" }, "downloads": -1, "filename": "Fiona-1.8b1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a5cc3ee5810e640405169d9cb6ef2e84", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24469504, "upload_time": "2018-10-15T17:47:50", "upload_time_iso_8601": "2018-10-15T17:47:50.383745Z", "url": "https://files.pythonhosted.org/packages/b4/e5/36ee607c74569d37600076397434c55b8900d39a41ed10b4292af1dc55fb/Fiona-1.8b1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3bfdfd7b85f3a8cbe6345602c670a88", "sha256": "b7f3241c247f8b4bd54487756ef755169222b2689f08952c2f70b40827d192c7" }, "downloads": -1, "filename": "Fiona-1.8b1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c3bfdfd7b85f3a8cbe6345602c670a88", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17956585, "upload_time": "2018-10-15T17:43:17", "upload_time_iso_8601": "2018-10-15T17:43:17.947711Z", "url": "https://files.pythonhosted.org/packages/fd/83/8729566ce1f72766c55acb12e0254d78807f01048dc0a6099e120bb86c01/Fiona-1.8b1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e7d83443f6d784044398f8b3d20cf4d", "sha256": "c37725ed333afc210cfa0c608b09a9817776304629e25afd65ea2faec2482ffd" }, "downloads": -1, "filename": "Fiona-1.8b1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "2e7d83443f6d784044398f8b3d20cf4d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24410869, "upload_time": "2018-10-15T17:40:42", "upload_time_iso_8601": "2018-10-15T17:40:42.645903Z", "url": "https://files.pythonhosted.org/packages/3f/c3/56317297edc9d0ec922921d706a18c7b1fb31dda6924997e683541d87d6f/Fiona-1.8b1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42fbc0411c6662cf3e7a1d311b310628", "sha256": "bdc20db94bb30cca547a1596e2a953eaab0d32d8fc39c471eb5360e71fcdf6fb" }, "downloads": -1, "filename": "Fiona-1.8b1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "42fbc0411c6662cf3e7a1d311b310628", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17955630, "upload_time": "2018-10-15T17:45:13", "upload_time_iso_8601": "2018-10-15T17:45:13.852070Z", "url": "https://files.pythonhosted.org/packages/1e/99/8b7e2442b7748b2c0503232c7cc2276df793b6fad1776eb46334873c0223/Fiona-1.8b1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54d65233c4faa0fd79085ea3d8e84843", "sha256": "856069ee6ad75e6fb6cffd5013c25182e50ab3e1e6b5da8aede7476577eb752c" }, "downloads": -1, "filename": "Fiona-1.8b1.tar.gz", "has_sig": false, "md5_digest": "54d65233c4faa0fd79085ea3d8e84843", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1210947, "upload_time": "2018-10-15T18:02:33", "upload_time_iso_8601": "2018-10-15T18:02:33.083316Z", "url": "https://files.pythonhosted.org/packages/31/a0/cde0ad2a8ee7e4737ed6c860b0b544fb8dc84026e028dda23de39c9c78a4/Fiona-1.8b1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8b2": [ { "comment_text": "", "digests": { "md5": "c29f953f84555d4c43f9e7a03e85f4fb", "sha256": "2d1ed83c9fa97600b24bdc09550197ff51aaf0cc4ba93b8c3d4a0d283b716179" }, "downloads": -1, "filename": "Fiona-1.8b2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c29f953f84555d4c43f9e7a03e85f4fb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24332264, "upload_time": "2018-10-24T17:47:46", "upload_time_iso_8601": "2018-10-24T17:47:46.869758Z", "url": "https://files.pythonhosted.org/packages/8f/72/f5edfddc6facb86ce28fcff8f2d51a1ea68a63152f6a0baa9609d52aa24a/Fiona-1.8b2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dc36d9b7e96dd6bc298a002a82cdf45", "sha256": "45626f58e9e34a674b6246b476cc74ec86aa68b15de9e1f66d0f2a0d028405db" }, "downloads": -1, "filename": "Fiona-1.8b2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8dc36d9b7e96dd6bc298a002a82cdf45", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17908868, "upload_time": "2018-10-24T17:42:32", "upload_time_iso_8601": "2018-10-24T17:42:32.642876Z", "url": "https://files.pythonhosted.org/packages/06/fa/d871fac529bf11e839f8d15998340b5643158f96f150db230e7ecbd8b204/Fiona-1.8b2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85a1a68585009f8ba618f0b26d1c6e92", "sha256": "b7b557781f59f70c3793ab9058cc58a64aa8e79d2db2cb101cfeaa12dfbddbb0" }, "downloads": -1, "filename": "Fiona-1.8b2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "85a1a68585009f8ba618f0b26d1c6e92", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24305637, "upload_time": "2018-10-24T17:48:14", "upload_time_iso_8601": "2018-10-24T17:48:14.371407Z", "url": "https://files.pythonhosted.org/packages/51/73/5d37050dcc00fca967429b44f3b76f05a439189b6daf8b4a5753634ed8cb/Fiona-1.8b2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b96d70269083310008f5137a5ff7a610", "sha256": "e14b246da69dc0ea8510fdb18d896295a01037e30784e4adea2c1e477de5c6f2" }, "downloads": -1, "filename": "Fiona-1.8b2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b96d70269083310008f5137a5ff7a610", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17920205, "upload_time": "2018-10-24T17:43:35", "upload_time_iso_8601": "2018-10-24T17:43:35.647593Z", "url": "https://files.pythonhosted.org/packages/36/f2/bce96e9c7c5f89f710e39f9e02748b79ebaa1da9930c7830da81afd4f907/Fiona-1.8b2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ffdcc7456b4cbeb8a77abd37a3b87da", "sha256": "0865a93ee317ef88eb3176ea37169f53e990e45b930b05a4107d61563a7408b4" }, "downloads": -1, "filename": "Fiona-1.8b2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "4ffdcc7456b4cbeb8a77abd37a3b87da", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24358603, "upload_time": "2018-10-24T18:34:20", "upload_time_iso_8601": "2018-10-24T18:34:20.600114Z", "url": "https://files.pythonhosted.org/packages/b9/d9/18caafb1e3d8d8da916ee71e23497976886100d36756b800a4d62ae775ce/Fiona-1.8b2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba0d0c936bb2a1314db85f24c0579506", "sha256": "5236c4e18c5b8455922318cc3a052da4885f93966e9e0afe61882e2fac3dfae9" }, "downloads": -1, "filename": "Fiona-1.8b2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ba0d0c936bb2a1314db85f24c0579506", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17926701, "upload_time": "2018-10-24T17:42:06", "upload_time_iso_8601": "2018-10-24T17:42:06.625682Z", "url": "https://files.pythonhosted.org/packages/71/26/0cb34f47dce03e8c4d1a1879d99724f31b71b5136c7f3d34757ba5563d4b/Fiona-1.8b2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "520e5c460202d07a03ac077e977c5b21", "sha256": "b45c5dd6e6c5f3daf19b02983c10410b3e43e1aeb1a0e20d69b5288b2994fb6f" }, "downloads": -1, "filename": "Fiona-1.8b2-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "520e5c460202d07a03ac077e977c5b21", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24468966, "upload_time": "2018-10-24T18:36:20", "upload_time_iso_8601": "2018-10-24T18:36:20.558266Z", "url": "https://files.pythonhosted.org/packages/12/db/e02d6666d40411491d2dc57424162ef19c92e931b005ea192a55d4ca2053/Fiona-1.8b2-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "715c04522cc3ac6e8fc5bc31d595cadb", "sha256": "47e1ce7689847e70211c76dbaa2790142ede33d79648b3d8462553373b52698a" }, "downloads": -1, "filename": "Fiona-1.8b2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "715c04522cc3ac6e8fc5bc31d595cadb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17956559, "upload_time": "2018-10-24T17:46:18", "upload_time_iso_8601": "2018-10-24T17:46:18.454963Z", "url": "https://files.pythonhosted.org/packages/1d/65/0cab015e9d5ef34b4f12b9140d4e3497947dd8f1be47fb7e6a9ea48ee908/Fiona-1.8b2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b18fea44bb2c0e9833637d0c820806ca", "sha256": "a332598080dfe8d0cfc6b1107a849718e30a1b95cf3452bf7b25beb07a92c9c7" }, "downloads": -1, "filename": "Fiona-1.8b2-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b18fea44bb2c0e9833637d0c820806ca", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24410220, "upload_time": "2018-10-24T17:43:14", "upload_time_iso_8601": "2018-10-24T17:43:14.134972Z", "url": "https://files.pythonhosted.org/packages/a0/29/732f19afc7401f06e92c1c23ca94ede415e5e34cbada068c67aa21faf9ad/Fiona-1.8b2-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b78dea4d74d95a4edfdfb048c048c6e5", "sha256": "78de8f9bceeb30707025eeb318d6fff3df4f8e9d19c6b3c088d1b0e2d347d52f" }, "downloads": -1, "filename": "Fiona-1.8b2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b78dea4d74d95a4edfdfb048c048c6e5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17954590, "upload_time": "2018-10-24T17:48:24", "upload_time_iso_8601": "2018-10-24T17:48:24.698018Z", "url": "https://files.pythonhosted.org/packages/1e/44/dd026bff9544273d2518629ea8b85135911d4eb1d53d97bff0fa7410b715/Fiona-1.8b2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c522f98ab180548afecb11eff5116242", "sha256": "b1131a78393c895e4030be359b26abb9cdfdc4adbd98d85aeba0ab1f83af532f" }, "downloads": -1, "filename": "Fiona-1.8b2.tar.gz", "has_sig": false, "md5_digest": "c522f98ab180548afecb11eff5116242", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1379374, "upload_time": "2018-10-24T18:46:37", "upload_time_iso_8601": "2018-10-24T18:46:37.312226Z", "url": "https://files.pythonhosted.org/packages/bb/1e/fa040ee0a82eb3163e69ddac73bd57c607a6f33f2e77ff2c14d29720daed/Fiona-1.8b2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8rc1": [ { "comment_text": "", "digests": { "md5": "8ddd6f588b1ffcdcfdd9dcac00fbf481", "sha256": "8b746943a3122816aeb2d2a9f7a01682f62a814a689e2b6911b9edb02a949406" }, "downloads": -1, "filename": "Fiona-1.8rc1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8ddd6f588b1ffcdcfdd9dcac00fbf481", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24332588, "upload_time": "2018-10-26T23:18:08", "upload_time_iso_8601": "2018-10-26T23:18:08.434240Z", "url": "https://files.pythonhosted.org/packages/b6/e6/8923f436f78ba275f1be74e69b9bfbbcd2801a9bbdd34d63641c1b238414/Fiona-1.8rc1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b4270428dc23cbeaab0d5a965815e31", "sha256": "cc169333c11d4e493b8cd58e927e507bd6a42863a34a2bd85938c57f2f070a36" }, "downloads": -1, "filename": "Fiona-1.8rc1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9b4270428dc23cbeaab0d5a965815e31", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17909195, "upload_time": "2018-10-26T23:12:18", "upload_time_iso_8601": "2018-10-26T23:12:18.137627Z", "url": "https://files.pythonhosted.org/packages/24/bf/a485e8282607f095cc6fd578a1d0ce1e66e740fcc2a51a9698affdfee485/Fiona-1.8rc1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42a65d286426120765b3dcbca65d78d9", "sha256": "45cb19184f9e151d72788ea3c578acac24b952a89903ded058b332a72417bca0" }, "downloads": -1, "filename": "Fiona-1.8rc1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "42a65d286426120765b3dcbca65d78d9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24305975, "upload_time": "2018-10-26T23:19:36", "upload_time_iso_8601": "2018-10-26T23:19:36.280628Z", "url": "https://files.pythonhosted.org/packages/f3/2b/557abb2ce0a96620062034663bdacfc70c745d90ccad063522f14bd752e2/Fiona-1.8rc1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c81582622e7fdcf35d11323c2cefed0", "sha256": "762f2f755a37c265166ba2896383d7602e005ad6201624a01db5fc708e7130dd" }, "downloads": -1, "filename": "Fiona-1.8rc1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7c81582622e7fdcf35d11323c2cefed0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 17920540, "upload_time": "2018-10-26T23:13:24", "upload_time_iso_8601": "2018-10-26T23:13:24.035993Z", "url": "https://files.pythonhosted.org/packages/7a/a8/c703bb557c4f6d4f1bd8acbb386c028d85778ba31f285236f74ae14715c7/Fiona-1.8rc1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb30942c5d8c4f905f8f44ecb22a472b", "sha256": "92ff320ac25fcefae5647a11806de3f262ef54abe7d72776dfd43019e0f4277d" }, "downloads": -1, "filename": "Fiona-1.8rc1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "cb30942c5d8c4f905f8f44ecb22a472b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24358929, "upload_time": "2018-10-26T23:21:03", "upload_time_iso_8601": "2018-10-26T23:21:03.359823Z", "url": "https://files.pythonhosted.org/packages/f8/63/6a68244665fe63b9178358264eaabbb643bd0136220317860d19a6875b67/Fiona-1.8rc1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24c346d2f61b6dea3957be87db9604db", "sha256": "ff48f9289bcb5efde55538f0911384f5ba85671724979f66787fb69f71bc7b7f" }, "downloads": -1, "filename": "Fiona-1.8rc1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "24c346d2f61b6dea3957be87db9604db", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 17927026, "upload_time": "2018-10-26T23:14:31", "upload_time_iso_8601": "2018-10-26T23:14:31.987432Z", "url": "https://files.pythonhosted.org/packages/03/3e/d10656656e462ce7ba46fe3c8525e77a6f31712f2852d5525d0e2d3efdcb/Fiona-1.8rc1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2810c03e0bcce94a62576fdfa52309ff", "sha256": "3fbb1764dd4278c01fe66ed2a987b70fbab9ac4aca3662469511421ae6a834bd" }, "downloads": -1, "filename": "Fiona-1.8rc1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "2810c03e0bcce94a62576fdfa52309ff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24469309, "upload_time": "2018-10-26T23:22:30", "upload_time_iso_8601": "2018-10-26T23:22:30.668400Z", "url": "https://files.pythonhosted.org/packages/4b/28/ac89051598e90f3247f3e8daa435e6a82ea07d56f8af690a411e6f7fd1f5/Fiona-1.8rc1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "416c742c9afc3446bc7cbebf5c813b97", "sha256": "7aa393851ff0dc266d5fc378f5e61ccddc4f0638a0b6e9dec67c11f2deb02ab0" }, "downloads": -1, "filename": "Fiona-1.8rc1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "416c742c9afc3446bc7cbebf5c813b97", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 17956886, "upload_time": "2018-10-26T23:15:37", "upload_time_iso_8601": "2018-10-26T23:15:37.466076Z", "url": "https://files.pythonhosted.org/packages/c2/92/98eec120ac5f55ce190f0d73bf56a327e7c77268004512319c7e6a4db8a0/Fiona-1.8rc1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54dd772c71590fb5c0352eeff380f11d", "sha256": "2a61e66d1a0dc713ef6570e25e02613f5247ac35e73608cd642f16eb669aff34" }, "downloads": -1, "filename": "Fiona-1.8rc1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "54dd772c71590fb5c0352eeff380f11d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24410552, "upload_time": "2018-10-26T23:11:13", "upload_time_iso_8601": "2018-10-26T23:11:13.388877Z", "url": "https://files.pythonhosted.org/packages/0d/1c/5484de7b7a138bb0d93fa95926f1c4daba413782758163e6916608af72f1/Fiona-1.8rc1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "381cdb6300a26fcc17f6aa16c895e26b", "sha256": "a2fa6493a269b90865c692174ca6ac93e5a7a3c57826ddaa4b31f44e92fc3c89" }, "downloads": -1, "filename": "Fiona-1.8rc1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "381cdb6300a26fcc17f6aa16c895e26b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 17954917, "upload_time": "2018-10-26T23:16:41", "upload_time_iso_8601": "2018-10-26T23:16:41.968452Z", "url": "https://files.pythonhosted.org/packages/82/61/853684e49aa82c11702e806b0604224af4935374a26f7e8c80e4b80c66a3/Fiona-1.8rc1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05000f6836a26a3240ae665942ed0f0d", "sha256": "55dcaf72766ee56ba9c539c16eb338567eebb80d7d90c3586c2653c80a4886f0" }, "downloads": -1, "filename": "Fiona-1.8rc1.tar.gz", "has_sig": false, "md5_digest": "05000f6836a26a3240ae665942ed0f0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1107828, "upload_time": "2018-10-26T23:26:39", "upload_time_iso_8601": "2018-10-26T23:26:39.224008Z", "url": "https://files.pythonhosted.org/packages/b2/8f/df59ae3babcb242f9558c9af4f1ebdcfeba92bd5ab777878efd1450cc18d/Fiona-1.8rc1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "27203bdab7aa4c410134a547a4e6d62b", "sha256": "39c656421e25b4d0d73d0b6acdcbf9848e71f3d9b74f44c27d2d516d463409ae" }, "downloads": -1, "filename": "Fiona-1.8.21-cp310-cp310-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "27203bdab7aa4c410134a547a4e6d62b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 18457013, "upload_time": "2022-02-07T17:17:02", "upload_time_iso_8601": "2022-02-07T17:17:02.145087Z", "url": "https://files.pythonhosted.org/packages/73/34/479504f1421a4b97a249d942e4559acbb910840e061cea7befc9fe1b5f1a/Fiona-1.8.21-cp310-cp310-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd41271cab1b3ddbd73e803a66413083", "sha256": "43b1d2e45506e56cf3a9f59ba5d6f7981f3f75f4725d1e6cb9a33ba856371ebd" }, "downloads": -1, "filename": "Fiona-1.8.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bd41271cab1b3ddbd73e803a66413083", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 16620093, "upload_time": "2022-02-07T17:17:17", "upload_time_iso_8601": "2022-02-07T17:17:17.366367Z", "url": "https://files.pythonhosted.org/packages/b1/81/d9c234f1d6af61ebf17386ed46a093ffd772b2775b914f52c5b19d64beb2/Fiona-1.8.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b00d76c4b76e156a932fdf7e830328b", "sha256": "315e186cb880a8128e110312eb92f5956bbc54d7152af999d3483b463758d6f9" }, "downloads": -1, "filename": "Fiona-1.8.21-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "1b00d76c4b76e156a932fdf7e830328b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18444279, "upload_time": "2022-02-11T16:32:31", "upload_time_iso_8601": "2022-02-11T16:32:31.072162Z", "url": "https://files.pythonhosted.org/packages/26/6e/eb5c2e94beb1bdc4d55d82f5723cc717aa47cddb13d3297d5528329e06b3/Fiona-1.8.21-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f99cc047e1e0164a15f8bf84da107d20", "sha256": "9fb2407623c4f44732a33b3f056f8c58c54152b51f0324bf8f10945e711eb549" }, "downloads": -1, "filename": "Fiona-1.8.21-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f99cc047e1e0164a15f8bf84da107d20", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 16601737, "upload_time": "2022-02-11T16:32:41", "upload_time_iso_8601": "2022-02-11T16:32:41.688118Z", "url": "https://files.pythonhosted.org/packages/a1/b9/cc0b4aa43307e6d8a0318c4a0775a2899377a3a0b470ba2a0889269b07e6/Fiona-1.8.21-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4e35a9eee191d24bbb216eb625bc8bf", "sha256": "b69054ed810eb7339d7effa88589afca48003206d7627d0b0b149715fc3fde41" }, "downloads": -1, "filename": "Fiona-1.8.21-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f4e35a9eee191d24bbb216eb625bc8bf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 18440192, "upload_time": "2022-02-07T17:17:34", "upload_time_iso_8601": "2022-02-07T17:17:34.783289Z", "url": "https://files.pythonhosted.org/packages/a1/81/70ce7f722fb853d060d1de463ae1525664912372dd80d58b856aa41a54ee/Fiona-1.8.21-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf24df287ea046925a1acf94aaa7807a", "sha256": "11532ccfda1073d3f5f558e4bb78d45b268e8680fd6e14993a394c564ddbd069" }, "downloads": -1, "filename": "Fiona-1.8.21-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bf24df287ea046925a1acf94aaa7807a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 16705790, "upload_time": "2022-02-07T17:17:52", "upload_time_iso_8601": "2022-02-07T17:17:52.710931Z", "url": "https://files.pythonhosted.org/packages/31/55/76eb77b38b38806088768c804f9bbfbf739d05f2f7613b759fed39209395/Fiona-1.8.21-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b07fc298e5cc7bd5b61594f357ca8db", "sha256": "3789523c811809a6e2e170cf9c437631f959f4c7a868f024081612d30afab468" }, "downloads": -1, "filename": "Fiona-1.8.21-cp38-cp38-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8b07fc298e5cc7bd5b61594f357ca8db", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 18452415, "upload_time": "2022-02-07T17:18:12", "upload_time_iso_8601": "2022-02-07T17:18:12.548069Z", "url": "https://files.pythonhosted.org/packages/d3/7c/42a277446d65cf7b7b3be8649fdbd768cfb909cae6f04bde7d588eb452b1/Fiona-1.8.21-cp38-cp38-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "582b6a765f1de393f95da409a6783539", "sha256": "085f18d943097ac3396f3f9664ac1ae04ad0ff272f54829f03442187f01b6116" }, "downloads": -1, "filename": "Fiona-1.8.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "582b6a765f1de393f95da409a6783539", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 16619890, "upload_time": "2022-02-07T17:18:30", "upload_time_iso_8601": "2022-02-07T17:18:30.555919Z", "url": "https://files.pythonhosted.org/packages/95/5c/6c6d6a7b604595ecb93d31c018e44a075462d2d69e687722fbb8630a2fc8/Fiona-1.8.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "214abbada4811591c416ac1ffc394a0e", "sha256": "388acc9fa07ba7858d508dfe826d4b04d813818bced16c4049de19cc7ca322ef" }, "downloads": -1, "filename": "Fiona-1.8.21-cp39-cp39-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "214abbada4811591c416ac1ffc394a0e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 18456511, "upload_time": "2022-02-07T17:18:47", "upload_time_iso_8601": "2022-02-07T17:18:47.280467Z", "url": "https://files.pythonhosted.org/packages/23/bd/29e62b2f516327155615aa404cd22bac4c8c873737792c98b73164c76467/Fiona-1.8.21-cp39-cp39-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af6eb4af032619b8d2d6705999123a15", "sha256": "40b4eaf5b88407421d6c9e707520abd2ff16d7cd43efb59cd398aa41d2de332c" }, "downloads": -1, "filename": "Fiona-1.8.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "af6eb4af032619b8d2d6705999123a15", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 16619800, "upload_time": "2022-02-07T17:19:02", "upload_time_iso_8601": "2022-02-07T17:19:02.377478Z", "url": "https://files.pythonhosted.org/packages/06/96/a9cc68b713a4ef5f2c2c988ea1faed66eca9dc6eb239bc72e2a49779610a/Fiona-1.8.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e380d39de437fc81f8d60fd403672112", "sha256": "3a0edca2a7a070db405d71187214a43d2333a57b4097544a3fcc282066a58bfc" }, "downloads": -1, "filename": "Fiona-1.8.21.tar.gz", "has_sig": false, "md5_digest": "e380d39de437fc81f8d60fd403672112", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1040639, "upload_time": "2022-02-07T17:19:06", "upload_time_iso_8601": "2022-02-07T17:19:06.166343Z", "url": "https://files.pythonhosted.org/packages/67/5c/4e028e84a1f0cb3f8a994217cf2366360ca984dfc1433f6171de527d0dca/Fiona-1.8.21.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }