{ "info": { "author": "TileDB, Inc.", "author_email": "help@tiledb.io", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: Linux", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. image:: https://github.com/TileDB-Inc/TileDB/raw/dev/doc/source/_static/tileDB_uppercase_600_112.png\n :target: https://tiledb.io\n :alt: TileDB logo\n :width: 400\n\n|\n\n.. image:: https://travis-ci.org/TileDB-Inc/TileDB-Py.svg?branch=dev\n :target: https://travis-ci.org/TileDB-Inc/TileDB-Py\n :alt: Travis status\n\n.. image:: https://readthedocs.com/projects/tiledb-inc-tiledb-py/badge/?version=latest\n :target: https://tiledb-inc-tiledb-py.readthedocs-hosted.com/en/latest/?badge=latest\n :alt: Documentation Status\n\n|\n\n**Array data management made fast and easy.**\n\n`TileDB `_ is an efficient multi-dimensional array management system which introduces a novel on-disk format that can effectively store dense and sparse array data with support for fast updates and reads. It also features excellent compression and an efficient parallel I/O system with high scalability.\n\n**TileDB-Py** is the official Python interface to TileDB.\n\nQuickstart\n----------\n\nFirst, install TileDB-Py with ``pip``::\n\n $ pip install tiledb\n\nThis may take a while, as the pip package will automatically download and build the native TileDB library in addition to the Python bindings.\n\nNext, save the `quickstart program `_ into a file and run it::\n\n $ wget https://raw.githubusercontent.com/TileDB-Inc/TileDB-Py/dev/examples/quickstart_dense.py\n $ python quickstart_dense.py\n [[2 3 4]\n [6 7 8]]\n\nThe dense quickstart program simply creates a dense array on disk, writes some simple data to it, and reads a slice of the data back, printing the slice to the console.\n\nDocumentation\n-------------\n\nThe full TileDB documentation can be found at ``_ and includes many tutorials and examples to get you started.\n\nThe latest Python API reference can be found at ``_.\n\nInstallation\n------------\n\nPip\n~~~\n\nA PyPI package is available which can be installed with Pip. This package will download and install the native TileDB library inside the site package if TileDB is not already installed on your system.\n\n::\n\n $ pip install tiledb\n\nNote: if the Numpy and Cython dependencies are not installed, pip will try to build them from source. This can take a **long** time and make the install appear to \"hang.\" Pass the ``-v`` flag to pip to monitor the build process.\n\nIf you wish to use a custom version of the TileDB library and the install location is not in the compiler search path, create a requirements.txt file that specifies the tiledb install path manually.\n\n::\n\n $ cat > tiledb_requirements.txt < --install-option=\"--tiledb=\"\n EOF\n $ pip install -r tiledb_requirements.txt\n\nDo not forget to put the built ``.so / .dylib / .dll`` on the dynamic linker path, otherwise TileDB-Py will fail to load the shared library upon import.\n\n\nConda Package\n~~~~~~~~~~~~~\n\nA pre-built Conda package is available that will install TileDB as well.\n\n::\n\n $ conda install -c conda-forge tiledb-py\n\nNote: Currently the pre-built TileDB conda package does not include the HDFS storage backend.\n\nInstalling From Source\n~~~~~~~~~~~~~~~~~~~~~~\n\nTileDB-Py Build Dependencies\n''''''''''''''''''''''''''''\n\n* Numpy\n* Cython\n* C++11 compiler\n* CMake\n\nTileDB-Py Runtime Dependencies\n''''''''''''''''''''''''''''''\n\n* Numpy\n\nLinux / OSX\n'''''''''''\n\nSimply execute the following commands::\n\n $ git clone https://github.com/TileDB-Inc/TileDB-Py.git\n $ cd TileDB-Py\n $ pip install -r requirements_dev.txt\n $ python setup.py build_ext --inplace\n $ python setup.py install\n\nIf you wish to use a custom version of the TileDB library and it is installed in a non-standard location, pass the path to ``setup.py`` with the ``--tiledb=`` flag.\nIf you want to pass extra compiler/linker flags during the C++ extension compilation step use ``--cxxflags=`` or ``--lflags=``.\n\n::\n\n $ python setup.py build_ext --inplace --tiledb=/home/tiledb/dist \n\nIf TileDB is installed in a non-standard location, you also need to make the dynamic linker aware of ``libtiledb``'s location.\nOtherwise when importing the ``tiledb`` module you will get an error that the built extension module cannot find\n``libtiledb``'s symbols::\n\n $ env LD_LIBRARY_PATH=\"/home/tiledb/dist/lib:$LD_LIBRARY_PATH\" python -m unittest -v\n\nFor macOS the linker environment variable is ``DYLD_LIBRARY_PATH``\n\nInstalling on Windows\n'''''''''''''''''''''\n\nIf you are building the extension on Windows, first install a Python distribution such as `Miniconda `_. You can then either build TileDB from source, or download the pre-built binaries.\n\nOnce you've installed Miniconda and TileDB, open the Miniconda command prompt and execute:\n\n::\n\n > cd TileDB-Py\n > conda install conda-build\n > conda install virtualenv\n > virtualenv venv\n > venv\\Scripts\\activate\n > pip install -r requirements_dev.txt\n > python setup.py build_ext --inplace --tiledb=C:\\path\\to\\TileDB\\\n > set PATH=%PATH%;C:\\path\\to\\TileDB\\bin\n > python -m unittest -v\n\nNote that if you built TileDB from source, then replace ``C:\\path\\to\\TileDB`` with ``C:\\path\\to\\TileDB\\dist``.\n\nDeveloping and testing TileDB-Py\n--------------------------------\n\nTileDB-Py includes a handy Conda environment definition file for setting up a test environment::\n\n $ conda env create -f environment.yml\n\nThis will create a ``tiledbpy`` conda environment with all the development library dependencies.\n\nThe easiest way to test / develop TileDB-Py across Python versions (2.7, 3.5, and 3.6),\nis using `tox `_.\nTileDB includes a tox.ini file, simply run ``tox`` in the toplevel source directory to run the test suite against multiple installed Python versions::\n\n $ tox\n\nYou can specify a particular Python version using the ``-e`` flag::\n\n $ tox -e py27\n\nIf TileDB is not installed in a global system location, you must specify the install path to tox::\n\n $ env TILEDB_PATH=/path/to/tiledb LD_LIBRARY_PATH=/path/to/tiledb/libdir:${LD_LIBRARY_PATH} tox\n\nYou can also run the unittests from the source folder without having the package installed. First build the package in place from the source directory::\n\n $ python setup.py build_ext --inplace\n\nTests can now be run using Python's unittest framework::\n\n $ python -m unittest -v\n\nDoctests can be run using the doctest module::\n\n $ python -m doctest -o NORMALIZE_WHITESPACE -f tiledb/libtiledb.pyx\n\nYou can also install a symlink named ``site-packages/tiledb.egg-link`` to the development folder of TileDB-Py with::\n\n $ pip install --editable .\n\nThis enables local changes to the current development repo to be reflected globally.\n\nBuilding TileDB-Py against libtiledb from conda\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTileDB core (`libtiledb`) is distributed as a separate conda package, [`tiledb`](https://anaconda.org/conda-forge/tiledb), which may be used for local builds of TileDB-Py:\n\n- activate the desired conda environment\n- run `conda install tiledb`\n- run `python setup.py build_ext --inplace --tiledb=$CONDA_PREFIX`\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/TileDB-Inc/TileDB-Py", "keywords": "", "license": "MIT", "maintainer": "TileDB, Inc.", "maintainer_email": "help@tiledb.io", "name": "tiledb", "package_url": "https://pypi.org/project/tiledb/", "platform": "any", "project_url": "https://pypi.org/project/tiledb/", "project_urls": { "Homepage": "https://github.com/TileDB-Inc/TileDB-Py" }, "release_url": "https://pypi.org/project/tiledb/0.4.4/", "requires_dist": [ "numpy (<=1.16)", "wheel (>=0.30)" ], "requires_python": "", "summary": "Pythonic interface to the TileDB array storage manager", "version": "0.4.4" }, "last_serial": 6001577, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "6e2cad23e01efc890835a5e033464d82", "sha256": "e6734e746d7ce13f826bdedf77be7fec8c960098fd2f2152608f6134e8957a42" }, "downloads": -1, "filename": "tiledb-0.1.1.tar.gz", "has_sig": false, "md5_digest": "6e2cad23e01efc890835a5e033464d82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75291, "upload_time": "2018-03-14T17:11:32", "url": "https://files.pythonhosted.org/packages/d9/35/247ae010341aae19ffdb757aabe2d450e331389fa3c8e261ffe11d515670/tiledb-0.1.1.tar.gz" } ], "0.1.1.dev2": [ { "comment_text": "", "digests": { "md5": "7945a54f4db45deee0ddf86e2bc7759a", "sha256": "1d2d2d5953a14d1c5e1fd50a680949c70eaad3751eebb7a5db9399349c1e9943" }, "downloads": -1, "filename": "tiledb-0.1.1.dev2.tar.gz", "has_sig": false, "md5_digest": "7945a54f4db45deee0ddf86e2bc7759a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43137, "upload_time": "2018-02-28T14:19:21", "url": "https://files.pythonhosted.org/packages/d0/50/662c8cdf07946ff370e78656197253a2413d86591a3afb3e21b61f588180/tiledb-0.1.1.dev2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "81d29440a023314f08c773de8629585f", "sha256": "59c2cd301bcbf8bf397ca8b1bde4a102d11e309ff25199c5a2dfb196cc96cd54" }, "downloads": -1, "filename": "tiledb-0.2.0.tar.gz", "has_sig": false, "md5_digest": "81d29440a023314f08c773de8629585f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54712, "upload_time": "2018-07-10T17:57:50", "url": "https://files.pythonhosted.org/packages/6f/e6/57eeec013884e7bc28fae38213fb2f1b0c0bbeba47c00a523663fed39ac5/tiledb-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "487c08b38486b2493ccd54a1c43985da", "sha256": "c77bbca6f8560f9e384dd0fbc3e8427e2b4cb77b515a3a6b3e03a72360ac09f7" }, "downloads": -1, "filename": "tiledb-0.2.1.tar.gz", "has_sig": false, "md5_digest": "487c08b38486b2493ccd54a1c43985da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55191, "upload_time": "2018-08-14T20:15:55", "url": "https://files.pythonhosted.org/packages/50/13/419f58c72fc80e0a0d2a11e5d60009fae43bf8b01925d80030db698c6ec4/tiledb-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "9b1eb366695d1a35004aa88b6d4144f3", "sha256": "eaf47b06e50674119803240852d5568ddcacbf5f88b3abd666bd9a2d68ec2fe2" }, "downloads": -1, "filename": "tiledb-0.3.0.tar.gz", "has_sig": false, "md5_digest": "9b1eb366695d1a35004aa88b6d4144f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61889, "upload_time": "2018-10-26T18:56:20", "url": "https://files.pythonhosted.org/packages/ff/f3/950bfd398d0860e9006340f34edfb77d4829021bf47819fef234018822ac/tiledb-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "d291f3d286a7c81ff4679f4ee67d2e01", "sha256": "87a1fbda5afaeac9c22e839d6c5801d96cbe018c8c9ba9f7f9df7df7de03a333" }, "downloads": -1, "filename": "tiledb-0.3.1.tar.gz", "has_sig": false, "md5_digest": "d291f3d286a7c81ff4679f4ee67d2e01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63301, "upload_time": "2019-02-20T21:47:39", "url": "https://files.pythonhosted.org/packages/26/22/8ecae48a57e67a76e213098de2514d2b5335c54d5434ccd03344dfbc7de3/tiledb-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "15012c08517c7da52c7a2fbf4b06d615", "sha256": "a2b36d8bf59a8ed4d9e8a3ee082e0e725c3f917ad903053c9ef306e0af883ca0" }, "downloads": -1, "filename": "tiledb-0.4.0.tar.gz", "has_sig": false, "md5_digest": "15012c08517c7da52c7a2fbf4b06d615", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68361, "upload_time": "2019-04-03T15:03:15", "url": "https://files.pythonhosted.org/packages/78/4f/fdd6b0c9849450d25c45fa44917c40c8323b48d2044e08540c61568d8e07/tiledb-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "f6b57908ff7f73b3d2e9460f3a354676", "sha256": "f440cf7e1a0e9151fa90d7eafb96a9492c6dbc5af9f442fc356ccbae13f9b7ea" }, "downloads": -1, "filename": "tiledb-0.4.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f6b57908ff7f73b3d2e9460f3a354676", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5640108, "upload_time": "2019-04-10T13:27:21", "url": "https://files.pythonhosted.org/packages/54/03/0cf2a5a3991b6b98e2869f9cf39fd0f892156f898a5a67fc6bd9734a1fb4/tiledb-0.4.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a7554ac410e816a6acde3a1bb0928df0", "sha256": "7db1cb14cb1b1832a8bffb9ed390df470a2ef966afb062dd326adc408a7cf98b" }, "downloads": -1, "filename": "tiledb-0.4.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a7554ac410e816a6acde3a1bb0928df0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5822524, "upload_time": "2019-04-10T13:27:23", "url": "https://files.pythonhosted.org/packages/53/3b/f3742e61f0941cfc5e9dc5b121bc1a19bae29a6465992617d4d327f659b7/tiledb-0.4.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "93068c23a8125e3687bd46c364f87688", "sha256": "1fb11c9b4b7cd802241290c2a705298d40b712dfd2c2a09b44099453a2af3eea" }, "downloads": -1, "filename": "tiledb-0.4.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "93068c23a8125e3687bd46c364f87688", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5905421, "upload_time": "2019-04-10T13:27:26", "url": "https://files.pythonhosted.org/packages/47/cd/45812245dfe1d753815ca18d216fb9747dc248d4741a3376ed4d3e3e60cb/tiledb-0.4.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7e00de37fae30714e59da1ab969ddc84", "sha256": "c6f0f652c12a40080cfadbbac3754ea15725039a7935d23b707ed1102726f826" }, "downloads": -1, "filename": "tiledb-0.4.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7e00de37fae30714e59da1ab969ddc84", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 5883426, "upload_time": "2019-04-10T13:27:28", "url": "https://files.pythonhosted.org/packages/6f/e9/3702142df0f80ef403389998dbaddac433e770081490faa2a734f5f0d58d/tiledb-0.4.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b3a10382757d408d9498dcb315fb59df", "sha256": "6b97d45a00cc12366a599a2196489fcbdd4c1fad17b198cbeec7a2754d44ad31" }, "downloads": -1, "filename": "tiledb-0.4.1.tar.gz", "has_sig": false, "md5_digest": "b3a10382757d408d9498dcb315fb59df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73597, "upload_time": "2019-04-10T02:24:17", "url": "https://files.pythonhosted.org/packages/a2/ad/d09588f0789a7b712966d0741db328bda69cbe54de73373a40d757cca48f/tiledb-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "d481151501b70ebbf9e04130f1ad2b9e", "sha256": "2dcc81d62e2e0274b726a67914780f375716a7803399bd62be04a2d155309704" }, "downloads": -1, "filename": "tiledb-0.4.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d481151501b70ebbf9e04130f1ad2b9e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5658784, "upload_time": "2019-05-20T20:29:50", "url": "https://files.pythonhosted.org/packages/73/aa/3cdc6a6229b36d38535f8c27739fda949c4e224c2c784d16a36d3933742a/tiledb-0.4.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dbb75cf75342ce34e66f2319c71e7113", "sha256": "5a411c022263f2c6999897ab07239dc981f946d02fb4113f91d33f5e2e4450a1" }, "downloads": -1, "filename": "tiledb-0.4.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dbb75cf75342ce34e66f2319c71e7113", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5843065, "upload_time": "2019-05-20T20:29:52", "url": "https://files.pythonhosted.org/packages/1d/ee/530549d55aa703f81bd7b6838ee7d4e892ee196345e460bf760a0d121732/tiledb-0.4.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "670866d6966bbf5382e7e10f8d516498", "sha256": "ad691cfd706acc4823e30ffc699b573f9d3aea29e5435b0b580552bfee543a8e" }, "downloads": -1, "filename": "tiledb-0.4.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "670866d6966bbf5382e7e10f8d516498", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5926019, "upload_time": "2019-05-20T20:29:55", "url": "https://files.pythonhosted.org/packages/c8/34/320e5686642b082b5a14f2b608e2c73c62983477d0a3e891a5b58cf75bf4/tiledb-0.4.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2569b2dc9109dfdc22f36f850d301ea7", "sha256": "c7c1c209e1701ef852b42ad647cd15bb99d01cb9c6742cd005b8fb720c6f012f" }, "downloads": -1, "filename": "tiledb-0.4.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2569b2dc9109dfdc22f36f850d301ea7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 5904107, "upload_time": "2019-05-20T20:29:58", "url": "https://files.pythonhosted.org/packages/03/90/b5771854c7b220869fab76c5d90ea4ecd6863221ff019a7c986f762b6157/tiledb-0.4.2-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3918fec7cf8af32ff948a81522566ef4", "sha256": "9d055d6b239ee11e836ea72e4b94208ecfd1214d84d065f4192d5261010c4c17" }, "downloads": -1, "filename": "tiledb-0.4.2.tar.gz", "has_sig": false, "md5_digest": "3918fec7cf8af32ff948a81522566ef4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76052, "upload_time": "2019-05-20T20:27:28", "url": "https://files.pythonhosted.org/packages/89/e5/d32ca4cef2af7578740fa07a9abe449ff740066a1a8bb013dee0282fe807/tiledb-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "0923550a6793a4a49a9dd01ba9b9bc2b", "sha256": "15be1d86e4a7746c5157c542f1e34939b0f1298aecb7835eea10480c5bda2afc" }, "downloads": -1, "filename": "tiledb-0.4.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0923550a6793a4a49a9dd01ba9b9bc2b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6425102, "upload_time": "2019-07-18T15:14:46", "url": "https://files.pythonhosted.org/packages/81/1a/e41f2853849a8ff025305e9c85f3a76fc638a4062fbda0739bb2ec52769c/tiledb-0.4.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9760981a11af459050372f1d03bbcbd4", "sha256": "6116c67d31e09bec3a3631a58de13083e7ff5216534b9b238f2a4920845cf3f1" }, "downloads": -1, "filename": "tiledb-0.4.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9760981a11af459050372f1d03bbcbd4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 6615927, "upload_time": "2019-07-18T15:14:49", "url": "https://files.pythonhosted.org/packages/b2/ee/16c944979ba8e49ddef38c39bd68604a7be9ec167428168b295ced109ffe/tiledb-0.4.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "61e6eb795a61dfb92aa88588bef190bc", "sha256": "34d4098f984275e60da121772edbdd206f6f41a4f340b296effb672a44ae7b42" }, "downloads": -1, "filename": "tiledb-0.4.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "61e6eb795a61dfb92aa88588bef190bc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 6696954, "upload_time": "2019-07-18T15:14:51", "url": "https://files.pythonhosted.org/packages/28/17/3dc01400dd49d9c38455ed8edd4c9e5f02c09ec81e84d812424fb0609b5e/tiledb-0.4.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b783215ae288ae64e7e537a48b28c5bd", "sha256": "2f3ffb1416512a54e3d438c127fd79a5386534080a4482071e4829cae2ff9f89" }, "downloads": -1, "filename": "tiledb-0.4.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b783215ae288ae64e7e537a48b28c5bd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 6677574, "upload_time": "2019-07-18T15:14:53", "url": "https://files.pythonhosted.org/packages/67/79/585bc6907e145a362ac5215390b6bf095a1de241edcd3436bdfc32b2fd8a/tiledb-0.4.3-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "793ece9b22e3b21fc1accb47b61a3a6d", "sha256": "79d8cac0cfd3e1d239b869ca5508df7348f35caf646955447b9997726485a300" }, "downloads": -1, "filename": "tiledb-0.4.3.tar.gz", "has_sig": false, "md5_digest": "793ece9b22e3b21fc1accb47b61a3a6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77851, "upload_time": "2019-07-18T14:54:58", "url": "https://files.pythonhosted.org/packages/85/1f/8cbaefe21078e5132d327a7ab0cda31dcb798090ba330358f18aff80d94d/tiledb-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "4f022a3ec4ea6171139b38e7c38a9edf", "sha256": "ae90f291926fa40bfc2353ee25e27d16ed67dbb8c4db219cb8117a468eaf0f03" }, "downloads": -1, "filename": "tiledb-0.4.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4f022a3ec4ea6171139b38e7c38a9edf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6704648, "upload_time": "2019-10-20T01:31:24", "url": "https://files.pythonhosted.org/packages/97/bc/3c374914ed379357e6f4f98e3b2ee20d76ce67c0fa3e6f8e4013ee0970a7/tiledb-0.4.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "20754ead244e9229aa2469fe98ddb8e2", "sha256": "979a4fee0ae366d693f0bcf203237b6d30be77b0a779e8899877637a9839ea3d" }, "downloads": -1, "filename": "tiledb-0.4.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "20754ead244e9229aa2469fe98ddb8e2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 6892189, "upload_time": "2019-10-20T01:31:27", "url": "https://files.pythonhosted.org/packages/b4/7f/0306cbe38381510ed183d476c500ec0665272e2c32af3bd8954a634ed5db/tiledb-0.4.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9004c504caf805df82707110e7b3906a", "sha256": "161d5ef1056d3de3f7f84543aaaa38c75aa3f303521075882caa93515f656a5a" }, "downloads": -1, "filename": "tiledb-0.4.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9004c504caf805df82707110e7b3906a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 6968505, "upload_time": "2019-10-20T01:31:30", "url": "https://files.pythonhosted.org/packages/6e/95/b2f30569cb0bd767c81bdf111317722828f3a95a90a7f4dc9eeb57fbc56d/tiledb-0.4.4-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5e8448710d60c0ead452233dd2ae4180", "sha256": "b24bc2d306fb030ef4b2483c3fcf7a9d9fdfe04f0c3aa45d0697ce49669ea0e0" }, "downloads": -1, "filename": "tiledb-0.4.4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5e8448710d60c0ead452233dd2ae4180", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 6944255, "upload_time": "2019-10-20T01:31:34", "url": "https://files.pythonhosted.org/packages/ac/1c/f339b897da51d8e464d256cf57622be3bf4ab18b03c5c143217ef1a57a88/tiledb-0.4.4-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4653df56d6d7a105776023733225edf8", "sha256": "ec8c9e07804af34e4db0a23503d0f58635b05e71252aff4a528560bebbb5bee4" }, "downloads": -1, "filename": "tiledb-0.4.4.tar.gz", "has_sig": false, "md5_digest": "4653df56d6d7a105776023733225edf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86395, "upload_time": "2019-10-20T01:31:36", "url": "https://files.pythonhosted.org/packages/56/be/abe841a7575801507d1fb15fc9ba1cf5f0d2d59e0d33badda10d692a97ce/tiledb-0.4.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4f022a3ec4ea6171139b38e7c38a9edf", "sha256": "ae90f291926fa40bfc2353ee25e27d16ed67dbb8c4db219cb8117a468eaf0f03" }, "downloads": -1, "filename": "tiledb-0.4.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4f022a3ec4ea6171139b38e7c38a9edf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6704648, "upload_time": "2019-10-20T01:31:24", "url": "https://files.pythonhosted.org/packages/97/bc/3c374914ed379357e6f4f98e3b2ee20d76ce67c0fa3e6f8e4013ee0970a7/tiledb-0.4.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "20754ead244e9229aa2469fe98ddb8e2", "sha256": "979a4fee0ae366d693f0bcf203237b6d30be77b0a779e8899877637a9839ea3d" }, "downloads": -1, "filename": "tiledb-0.4.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "20754ead244e9229aa2469fe98ddb8e2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 6892189, "upload_time": "2019-10-20T01:31:27", "url": "https://files.pythonhosted.org/packages/b4/7f/0306cbe38381510ed183d476c500ec0665272e2c32af3bd8954a634ed5db/tiledb-0.4.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9004c504caf805df82707110e7b3906a", "sha256": "161d5ef1056d3de3f7f84543aaaa38c75aa3f303521075882caa93515f656a5a" }, "downloads": -1, "filename": "tiledb-0.4.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9004c504caf805df82707110e7b3906a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 6968505, "upload_time": "2019-10-20T01:31:30", "url": "https://files.pythonhosted.org/packages/6e/95/b2f30569cb0bd767c81bdf111317722828f3a95a90a7f4dc9eeb57fbc56d/tiledb-0.4.4-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5e8448710d60c0ead452233dd2ae4180", "sha256": "b24bc2d306fb030ef4b2483c3fcf7a9d9fdfe04f0c3aa45d0697ce49669ea0e0" }, "downloads": -1, "filename": "tiledb-0.4.4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5e8448710d60c0ead452233dd2ae4180", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 6944255, "upload_time": "2019-10-20T01:31:34", "url": "https://files.pythonhosted.org/packages/ac/1c/f339b897da51d8e464d256cf57622be3bf4ab18b03c5c143217ef1a57a88/tiledb-0.4.4-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4653df56d6d7a105776023733225edf8", "sha256": "ec8c9e07804af34e4db0a23503d0f58635b05e71252aff4a528560bebbb5bee4" }, "downloads": -1, "filename": "tiledb-0.4.4.tar.gz", "has_sig": false, "md5_digest": "4653df56d6d7a105776023733225edf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86395, "upload_time": "2019-10-20T01:31:36", "url": "https://files.pythonhosted.org/packages/56/be/abe841a7575801507d1fb15fc9ba1cf5f0d2d59e0d33badda10d692a97ce/tiledb-0.4.4.tar.gz" } ] }