{ "info": { "author": "Ryan Murray", "author_email": "rymurr@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "=============\nDremio client\n=============\n\n\n.. image:: https://img.shields.io/pypi/v/dremio_client.svg\n :target: https://pypi.python.org/pypi/dremio_client\n\n.. image:: https://img.shields.io/travis/rymurr/dremio_client.svg\n :target: https://travis-ci.org/rymurr/dremio_client\n\n.. image:: https://readthedocs.org/projects/dremio-client/badge/?version=latest\n :target: https://dremio-client.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://pyup.io/repos/github/rymurr/dremio_client/shield.svg\n :target: https://pyup.io/repos/github/rymurr/dremio_client/\n :alt: Updates\n\n.. image:: https://img.shields.io/codacy/grade/78c83e3484634e32b17496e0dbe7ade5\n :target: https://app.codacy.com/project/rymurr/dremio_client/dashboard\n :alt: Codacy\n\n.. image:: https://img.shields.io/codecov/c/github/rymurr/dremio_client\n :target: https://codecov.io/gh/rymurr/dremio_client\n :alt: Codecov\n\n\nThe **un-official** python client for Dremio's REST API. This enables both administrators and data scientists to get\nthe most out of `Dremio`_ in Python\n\n.. _Dremio: https://dremio.com\n\n* Documentation: https://dremio-client.readthedocs.io.\n* Github: https://github.com/rymurr/dremio_client\n* PyPI: https://pypi.python.org/pypi/dremio_client\n* Free software: Apache Software License 2.0\n\nFeatures\n--------\n\n* Cross platform support\n* All Pythons between 2.7 - 3.7 supported\n* Full support for Dremio's `REST API`_\n* Optional Support for Dremio's `ODBC`_ or experimental `Arrow Flight`_ capabilities\n* Rich config file support via `confuse`_ yaml config library. Simple to create a client (config stored in a yaml file)\n\n .. code-block:: python\n\n from dremio_client import init\n client = init() # initialise connectivity to Dremio via config file\n catalog = client.data # fetch catalog\n vds = catalog.space.vds.get() # fetch a specific dataset\n df = vds.query() # query the first 1000 rows of the dataset and return as a DataFrame\n pds = catalog.source.pds.get() # fetch a physical dataset\n pds.metadata_refresh() # refresh metadata on that dataset\n\n* CLI interface for integration with scripts\n\n .. code-block:: bash\n\n $ dremio_client query --sql 'select * from sys.options'\n {'results':results}\n $ dremio_client refresh-metadata --table 'my.vds.name'\n {'result':'ok'}\n\n* Catalog autocompletion in Jupyter Notebooks\n\n.. image:: https://raw.github.com/rymurr/dremio_client/master/docs/images/autocomplete.gif\n\n\n.. _REST API: https://docs.dremio.com/rest-api/\n.. _ODBC: https://docs.dremio.com/drivers/dremio-odbc-driver.html\n.. _Arrow Flight: https://arrow.apache.org/docs/format/Flight.html?highlight=flight\n.. _confuse: https://github.com/beetbox/confuse\n\n\nStatus\n------\n\nThis is still alpha software and is relatively incomplete. Contributions in the form of Github Issues or Pull requests\nare welcome. See `CONTRIBUTING`_\n\n.. _CONTRIBUTING:\n\nTODO\n----\n\n* see issues\n\n\n=======\nHistory\n=======\n\n0.1.0 (2019-07-04)\n------------------\n\n* First code, unreleased.\n\n0.2.4 (2019-08-13)\n------------------\n\n* Alpha quality release with partial implementation of features. First PyPI release.\n\n0.3.0 (2019-08-14)\n------------------\n\n* Beta quality release for GET based endpoints\n\n0.5.0 (2019-10-30)\n------------------\n\n* Most endpoint supported\n* flight support with tls & auth\n* minor bugfixes\n\n0.6.3 (2020-01-29)\n------------------\n\n* All endpoints supported\n* lots of bugfixes\n* utilities for building spaces/folders vds\n* removed recordclass library in favor of attrs\n\n0.8.4 (2020-01-29)\n------------------\n\n* history re-written\n\n0.8.8 (2020-02-19)\n------------------\n\n* minor bug fixes\n\n0.8.9 (2020-02-19)\n------------------\n\n* ensure use correct name for Spaces\n\n0.8.11 (2020-03-09)\n-------------------\n\n* bug fixes when creating sources and folders\n\n0.9.2 (2020-03-17)\n------------------\n\n* add promote endpoint\n* update versions from pyup\n\n0.10.1 (2020-03-19)\n-------------------\n\n* fix ssl verify flag in cli\n\n0.11.1 (2020-04-09)\n-------------------\n\n* a number of bug fixes and improvements from the community\n\n0.12.0 (2020-04-22)\n-------------------\n\n* add graph endpoint and cli flag\n* add more detailed exception handling\n\n0.12.1 (2020-05-04)\n-------------------\n\n* few bug fixes and API extensions\n\n0.13.0 (2020-05-21)\n-------------------\n\n* add version flag\n* upgrades and additions to some commands\n\n0.13.1 (2020-05-21)\n-------------------\n\n* simplify delete cli command\n\n0.13.2 (2020-05-22)\n-------------------\n\n* bugfixes\n\n0.13.3 (2020-09-07)\n-------------------\n\n* fix wlm bug\n* bump dependencies\n\n0.13.6 (2020-09-16)\n-------------------\n\n* add new apis\n* version bumps\n\n0.14.0 (2021-04-01)\n-------------------\n\n* add new apis\n* version bumps\n* docs updates\n* fix to query to produce correct pandas data frame\n* fix to cli, dup args\n\n0.15.1 (2021-08-26)\n-------------------\n\n* add new apis\n* version bumps\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/rymurr/dremio_client", "keywords": "dremio_client", "license": "Apache Software License 2.0", "maintainer": "", "maintainer_email": "", "name": "dremio-client", "package_url": "https://pypi.org/project/dremio-client/", "platform": "", "project_url": "https://pypi.org/project/dremio-client/", "project_urls": { "Homepage": "https://github.com/rymurr/dremio_client" }, "release_url": "https://pypi.org/project/dremio-client/0.15.1/", "requires_dist": [ "Click (>=6.0)", "requests (>=2.21.0)", "confuse", "simplejson", "attrs", "six", "futures ; python_version == \"2.7\"", "pyarrow (>=0.15.0) ; extra == 'full'", "pandas (>=0.24.2) ; extra == 'full'", "requests-futures (==1.0.0) ; extra == 'full'", "markdown ; extra == 'full'", "pandas (>=0.24.2) ; extra == 'noarrow'", "requests-futures (==1.0.0) ; extra == 'noarrow'", "markdown ; extra == 'noarrow'" ], "requires_python": "", "summary": "Python client for Dremio. See https://dremio.com", "version": "0.15.1", "yanked": false, "yanked_reason": null }, "last_serial": 11281413, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "a60025da596b922e3b8edc19a50eed3d", "sha256": "3023e715e2b26848690887eda21933ba111dbbfbe5d03b245c243492fc48f6c6" }, "downloads": -1, "filename": "dremio_client-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a60025da596b922e3b8edc19a50eed3d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46451, "upload_time": "2020-03-19T19:45:35", "upload_time_iso_8601": "2020-03-19T19:45:35.141665Z", "url": "https://files.pythonhosted.org/packages/16/d1/1fda4a071074840b9d37553c34c6cc1084cc4d5bec2581fb5b901d77e2c4/dremio_client-0.10.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1dc5fb2921756931705dcb44741d6ea", "sha256": "52c64b694d11d6110dd8d7da28b097f8edbc5a3314151f5f349838fec130a8fd" }, "downloads": -1, "filename": "dremio_client-0.10.0.tar.gz", "has_sig": false, "md5_digest": "e1dc5fb2921756931705dcb44741d6ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3472750, "upload_time": "2020-03-19T19:45:36", "upload_time_iso_8601": "2020-03-19T19:45:36.470427Z", "url": "https://files.pythonhosted.org/packages/14/a7/734fb3ff8c6ffbc3b47a5ef817e2a3bfe89aa0bdbb952a70f82b7bafea4e/dremio_client-0.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "64937e1906715a497c62c24e348c6fcf", "sha256": "d2fe9ce62f75b0b0ab53e95793ffa0cb861bd52308290b778efc89ce8d6c92cc" }, "downloads": -1, "filename": "dremio_client-0.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "64937e1906715a497c62c24e348c6fcf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46435, "upload_time": "2020-03-20T18:03:11", "upload_time_iso_8601": "2020-03-20T18:03:11.627503Z", "url": "https://files.pythonhosted.org/packages/94/53/45630de27915c64b2b5ce09668b5538d0103d71b1b3a1918e3ff9b76757a/dremio_client-0.10.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b757f25413fb6dbd345a92f1d4e4f49", "sha256": "5538ad5fe14ec56bf24ff2b565fa716f140921e95af59ff64032a50a45517d94" }, "downloads": -1, "filename": "dremio_client-0.10.1.tar.gz", "has_sig": false, "md5_digest": "3b757f25413fb6dbd345a92f1d4e4f49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3472748, "upload_time": "2020-03-20T18:03:13", "upload_time_iso_8601": "2020-03-20T18:03:13.274996Z", "url": "https://files.pythonhosted.org/packages/13/0f/c5717e7abc9d1080120184ad9afcfdd377060e514ed4ae0da945a8b7b8d3/dremio_client-0.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "ea9c957a7fdf41420c80136c22685758", "sha256": "b81787e11a5af0c0e39f4cd35e73f585053f582b53007347f87919c86377e8d3" }, "downloads": -1, "filename": "dremio_client-0.11.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ea9c957a7fdf41420c80136c22685758", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46684, "upload_time": "2020-04-09T07:32:26", "upload_time_iso_8601": "2020-04-09T07:32:26.211964Z", "url": "https://files.pythonhosted.org/packages/fa/96/88d4ece51021ad42b5b459b83dfa7a205eb23ec89c823485389787269039/dremio_client-0.11.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dead1b1615a8507c0820f285da9a520e", "sha256": "6790a88f74928b698817dfc9bac1b192717a9c951901ff35b7f9eb190b70e321" }, "downloads": -1, "filename": "dremio_client-0.11.1.tar.gz", "has_sig": false, "md5_digest": "dead1b1615a8507c0820f285da9a520e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3473009, "upload_time": "2020-04-09T07:32:27", "upload_time_iso_8601": "2020-04-09T07:32:27.597352Z", "url": "https://files.pythonhosted.org/packages/9b/69/4ce9a5a8c8b2e4762e756f73fa15fc3e2780774fca7bd3b42729c22f9fe6/dremio_client-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "19ed6629f587b7ce60d8a86bc0b7a966", "sha256": "4ed3e39551cc480b3d861211e9372f55e5487c22f964fe14fb603d183da538b0" }, "downloads": -1, "filename": "dremio_client-0.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "19ed6629f587b7ce60d8a86bc0b7a966", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46927, "upload_time": "2020-04-22T15:36:24", "upload_time_iso_8601": "2020-04-22T15:36:24.043523Z", "url": "https://files.pythonhosted.org/packages/0b/4d/bf5d31f9d1271be421a35f06cf1548f01068e54fe901e8b9f25379b441be/dremio_client-0.12.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49dd4a093312420073715f2a7d709eff", "sha256": "5f8344780230a6ef9367223c6ddb9bc9ade4b61dc94e47ba0740b55597606ed1" }, "downloads": -1, "filename": "dremio_client-0.12.0.tar.gz", "has_sig": false, "md5_digest": "49dd4a093312420073715f2a7d709eff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3473279, "upload_time": "2020-04-22T15:36:25", "upload_time_iso_8601": "2020-04-22T15:36:25.574374Z", "url": "https://files.pythonhosted.org/packages/8c/66/13fd565f8c350e3827cbdcbf3416918432430fe7a46deef8cb34dd67a801/dremio_client-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "2bdbb318305e0bdb528affd72c2b0ac9", "sha256": "d5de3620fce1200e95bbdf8b4ed00d94bf9a2d9b96dd46c9bf1e2c82ed48343c" }, "downloads": -1, "filename": "dremio_client-0.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2bdbb318305e0bdb528affd72c2b0ac9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47715, "upload_time": "2020-05-04T19:37:51", "upload_time_iso_8601": "2020-05-04T19:37:51.771797Z", "url": "https://files.pythonhosted.org/packages/31/43/903431a00902cef67a9458dc586afc73f2380f683cc54128c2bfbc4eaabf/dremio_client-0.12.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "921b015e4ef45fba9c248f2da1e7e7cc", "sha256": "d5a3101c315c4fc393d822050e921551946798138c3269cf31537264bdf60079" }, "downloads": -1, "filename": "dremio_client-0.12.1.tar.gz", "has_sig": false, "md5_digest": "921b015e4ef45fba9c248f2da1e7e7cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3473917, "upload_time": "2020-05-04T19:37:53", "upload_time_iso_8601": "2020-05-04T19:37:53.229036Z", "url": "https://files.pythonhosted.org/packages/37/5f/dbe2ae538fc6a5c297a8cc75ddc1e04d6a1364f46278766e4fd6b78b2a13/dremio_client-0.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "0564bce3443f84e5f80b1057588b0d02", "sha256": "49c0c2f844a157613c9ab1225f29bc3c179899d38a4a072fa826660ff4f164a3" }, "downloads": -1, "filename": "dremio_client-0.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0564bce3443f84e5f80b1057588b0d02", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48330, "upload_time": "2020-05-21T07:42:02", "upload_time_iso_8601": "2020-05-21T07:42:02.246790Z", "url": "https://files.pythonhosted.org/packages/c1/54/f107e37dde031998041a4438f36f8f9c06960e06cc0929eb2c724af5db10/dremio_client-0.13.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba8e0df1e992b15bacb6292e6ace6a0d", "sha256": "60df4a59ca4e2398ecb77e4b9fc6ca4a77a6686979c3003b7c273340e8c9b9d1" }, "downloads": -1, "filename": "dremio_client-0.13.0.tar.gz", "has_sig": false, "md5_digest": "ba8e0df1e992b15bacb6292e6ace6a0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3474704, "upload_time": "2020-05-21T07:42:03", "upload_time_iso_8601": "2020-05-21T07:42:03.626501Z", "url": "https://files.pythonhosted.org/packages/3c/6b/fac4aec753ca5ecd830455f22d31f03be162df4123ff0b28879edb314c1e/dremio_client-0.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "f277972870edb483d7608711c6716437", "sha256": "3ab013b86e7ab9c36319d4959fc5801d604fd3468505cb720adf03f05b04b3d2" }, "downloads": -1, "filename": "dremio_client-0.13.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f277972870edb483d7608711c6716437", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48816, "upload_time": "2020-05-21T08:00:59", "upload_time_iso_8601": "2020-05-21T08:00:59.970787Z", "url": "https://files.pythonhosted.org/packages/19/1a/bbad3bad89c3969bcd83da9add2009e563b647fb830f9bf217bbbb376efb/dremio_client-0.13.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65f65350947cc8ee21b35e238febd71c", "sha256": "1aecef6f14f4fcb2d288d682ebefa16e13dcef8edb0cb4cc5d1171b6c98244eb" }, "downloads": -1, "filename": "dremio_client-0.13.1.tar.gz", "has_sig": false, "md5_digest": "65f65350947cc8ee21b35e238febd71c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3474980, "upload_time": "2020-05-21T08:01:01", "upload_time_iso_8601": "2020-05-21T08:01:01.448753Z", "url": "https://files.pythonhosted.org/packages/57/80/6b444453ae214a48cf4f57b8a55735a88a31920ae7a7ddba995367e82c90/dremio_client-0.13.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.2": [ { "comment_text": "", "digests": { "md5": "a23f1d8e13273d36cbb7eea64eee83d0", "sha256": "cadb33c83592d60a7f47f8c78d7ba996a7326b724626ab2e8fad06061d929cc2" }, "downloads": -1, "filename": "dremio_client-0.13.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a23f1d8e13273d36cbb7eea64eee83d0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48806, "upload_time": "2020-05-22T09:50:17", "upload_time_iso_8601": "2020-05-22T09:50:17.194790Z", "url": "https://files.pythonhosted.org/packages/7f/e7/8ef7a6ea4744723503ded5cc16c84dcf13b5e30cbaf5e9e5323df588d434/dremio_client-0.13.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c496f6e70520d6dcc2fcbf173e698b10", "sha256": "33677693f6efce5aec3eab3005a59429846742c78ddca213a83a53b4283ae813" }, "downloads": -1, "filename": "dremio_client-0.13.2.tar.gz", "has_sig": false, "md5_digest": "c496f6e70520d6dcc2fcbf173e698b10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3474986, "upload_time": "2020-05-22T09:50:18", "upload_time_iso_8601": "2020-05-22T09:50:18.759864Z", "url": "https://files.pythonhosted.org/packages/5e/bd/d38a0eed92f7cca90d070b4a913d929aaa35c759327f69f17d56510d203d/dremio_client-0.13.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.4": [ { "comment_text": "", "digests": { "md5": "464a7e3e1775318a768301ae3512496b", "sha256": "5c75957915b576f56d8b9c340a05c7f8ff0e9b988ff298c3664339fd4a05798a" }, "downloads": -1, "filename": "dremio_client-0.13.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "464a7e3e1775318a768301ae3512496b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48842, "upload_time": "2020-09-07T16:56:26", "upload_time_iso_8601": "2020-09-07T16:56:26.348943Z", "url": "https://files.pythonhosted.org/packages/ac/f8/4d7d344e68582207be14d6fbae4eae84a0b2bab4dad72da52e03b9f64494/dremio_client-0.13.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f2b427c2119ac7ba56a0f34ef4ee60b", "sha256": "9d8b0c25ba2827237df4e36c9aaf2f5701830c7728b3969af95d577e4d4f77e7" }, "downloads": -1, "filename": "dremio_client-0.13.4.tar.gz", "has_sig": false, "md5_digest": "4f2b427c2119ac7ba56a0f34ef4ee60b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3476071, "upload_time": "2020-09-07T16:56:27", "upload_time_iso_8601": "2020-09-07T16:56:27.799418Z", "url": "https://files.pythonhosted.org/packages/d2/f0/cbe0a0b6230e2f6d6450b0911f1defa2d3f98cac7570bcae75d7a81f3e89/dremio_client-0.13.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.5": [ { "comment_text": "", "digests": { "md5": "72032c0484d2c9015a2bd8ea0ff5b83f", "sha256": "62ae090e244e3673984de766d8335c8ebabdb12d1bb55cbab72239ce743cc5d1" }, "downloads": -1, "filename": "dremio_client-0.13.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72032c0484d2c9015a2bd8ea0ff5b83f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49027, "upload_time": "2020-09-11T09:32:11", "upload_time_iso_8601": "2020-09-11T09:32:11.691587Z", "url": "https://files.pythonhosted.org/packages/2c/e5/42831620fb41c588a442389b06aa203a2659671bcee4dd275f1af315374b/dremio_client-0.13.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b485cde816116eda8ffded5b4a225da", "sha256": "cf14ba238e0bce4023e3abc9a44ac6bc4546ea21e630dc30a802cce0e78cd1ca" }, "downloads": -1, "filename": "dremio_client-0.13.5.tar.gz", "has_sig": false, "md5_digest": "6b485cde816116eda8ffded5b4a225da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3475244, "upload_time": "2020-09-11T09:32:13", "upload_time_iso_8601": "2020-09-11T09:32:13.158803Z", "url": "https://files.pythonhosted.org/packages/84/53/cd504e3f5de1a5e412684d21b686738bae49ade2d4925f064475b6ac81e9/dremio_client-0.13.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.6": [ { "comment_text": "", "digests": { "md5": "a5990a1b8c9901d243e7a1ac3c83c164", "sha256": "909c0c570e1e9256fbb4a561682432d928e15a1f3be4d05d1f43918d0d8c4e97" }, "downloads": -1, "filename": "dremio_client-0.13.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a5990a1b8c9901d243e7a1ac3c83c164", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49151, "upload_time": "2020-09-16T07:21:29", "upload_time_iso_8601": "2020-09-16T07:21:29.392631Z", "url": "https://files.pythonhosted.org/packages/4b/40/406175df7b508ed2821e32295d05e8d4b13f0c63a957e1bf572f86ef73bc/dremio_client-0.13.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aca4a333959c402758b31fa4e0751dd8", "sha256": "622d80e53e741d290e86ce09277cddbeb3f10354f81c229144abbdc2ade190dc" }, "downloads": -1, "filename": "dremio_client-0.13.6.tar.gz", "has_sig": false, "md5_digest": "aca4a333959c402758b31fa4e0751dd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3475396, "upload_time": "2020-09-16T07:21:30", "upload_time_iso_8601": "2020-09-16T07:21:30.744823Z", "url": "https://files.pythonhosted.org/packages/ca/35/95d93754235edb51c8b2b8c376338d0b15d807d70a84cff20b1c58f1032f/dremio_client-0.13.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "efb21a4962475a52e58c8712ac29316d", "sha256": "38f783830f2c769ea40d3b13cbbc8e0d165a16d4d5ba69d0daa456cc8ba500c3" }, "downloads": -1, "filename": "dremio_client-0.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "efb21a4962475a52e58c8712ac29316d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49526, "upload_time": "2021-04-01T15:24:47", "upload_time_iso_8601": "2021-04-01T15:24:47.945853Z", "url": "https://files.pythonhosted.org/packages/40/4d/b2f3de990c562db05dec924ac388fefbf108623c22c4e24c33b52e5be105/dremio_client-0.14.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3d9fb998c7c42de2673d549d3134127", "sha256": "fa238727be593f537d950c252877e053bc87962a48627f1bf94fabcbc0b17ce4" }, "downloads": -1, "filename": "dremio_client-0.14.0.tar.gz", "has_sig": false, "md5_digest": "b3d9fb998c7c42de2673d549d3134127", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3476150, "upload_time": "2021-04-01T15:24:49", "upload_time_iso_8601": "2021-04-01T15:24:49.393876Z", "url": "https://files.pythonhosted.org/packages/03/10/67085fbab122fe641f1006d1192625ef6ee4aa2421e736e0d4f97bbaa252/dremio_client-0.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "b177edfed6deb90d76d8c4e6441b7133", "sha256": "86e5335be591e4ad3d444bcbee607ac05890a54fb75374cb0122238d556790af" }, "downloads": -1, "filename": "dremio_client-0.15.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b177edfed6deb90d76d8c4e6441b7133", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 53059, "upload_time": "2021-08-10T13:35:14", "upload_time_iso_8601": "2021-08-10T13:35:14.346481Z", "url": "https://files.pythonhosted.org/packages/f2/80/b3b27b09f97aed47a1ed790e1232c2f4dd2c12f756a9f9bcc3216ff09c65/dremio_client-0.15.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c10c6348bb5960e06d299970ae594cd0", "sha256": "2381568db836b62f980f7bf7b907a0039758d510345ad7ab1159a198b55bd362" }, "downloads": -1, "filename": "dremio_client-0.15.0.tar.gz", "has_sig": false, "md5_digest": "c10c6348bb5960e06d299970ae594cd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3482529, "upload_time": "2021-08-10T13:35:17", "upload_time_iso_8601": "2021-08-10T13:35:17.414646Z", "url": "https://files.pythonhosted.org/packages/f9/59/52a2ce0ce38ed167f5f260bdc5026db95211567eb18f7a04b638dbbbbc9d/dremio_client-0.15.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "2abf0fa7e7bb3717d1d3940384420b94", "sha256": "dbce9c7eb1cd1b5b73c74526314f8b247aab52531cf7664719eb6406c3385f90" }, "downloads": -1, "filename": "dremio_client-0.15.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2abf0fa7e7bb3717d1d3940384420b94", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 53218, "upload_time": "2021-08-26T07:15:37", "upload_time_iso_8601": "2021-08-26T07:15:37.831858Z", "url": "https://files.pythonhosted.org/packages/dd/03/5eaf6594f94d49b0a99cb7a6f2c0265631814116c2314cfcdc94076879c8/dremio_client-0.15.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c33d075989b7aa56d45e00026ca8a16c", "sha256": "ff77bc63cb5e3ae50ff14df1834af45c4ac1613779aab8dd06b9392093f512a4" }, "downloads": -1, "filename": "dremio_client-0.15.1.tar.gz", "has_sig": false, "md5_digest": "c33d075989b7aa56d45e00026ca8a16c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3482695, "upload_time": "2021-08-26T07:15:40", "upload_time_iso_8601": "2021-08-26T07:15:40.482785Z", "url": "https://files.pythonhosted.org/packages/cc/12/a61355287f6a5af10bc6d72b35c3f8dbf74c7acb0b4b1f112167de7f75e2/dremio_client-0.15.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.11": [ { "comment_text": "", "digests": { "md5": "5d8ebe46c7a6d179dfa39277bd93c2ec", "sha256": "faec282e07590b6f6c6237ac9c4af8f74155f0b65111bf2dc5aa30a7a3a5201a" }, "downloads": -1, "filename": "dremio_client-0.8.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5d8ebe46c7a6d179dfa39277bd93c2ec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45032, "upload_time": "2020-03-09T16:09:45", "upload_time_iso_8601": "2020-03-09T16:09:45.583078Z", "url": "https://files.pythonhosted.org/packages/95/84/fdf90b410c2589de807c7976c542904166d4a4b6eee4e7b7fa76f75bc876/dremio_client-0.8.11-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d26785dd785b62945e537f42e5fbfa1a", "sha256": "c92e2d5dbd7e51baf0354dc2b38eef3ccc0644dc58de497680c96893b29d8a7e" }, "downloads": -1, "filename": "dremio_client-0.8.11.tar.gz", "has_sig": false, "md5_digest": "d26785dd785b62945e537f42e5fbfa1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3472579, "upload_time": "2020-03-09T16:09:46", "upload_time_iso_8601": "2020-03-09T16:09:46.970777Z", "url": "https://files.pythonhosted.org/packages/f0/be/756d12b499f0f281f914a5fd3a798ffc44f8ce60556f4e41af0f0b2ca442/dremio_client-0.8.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "c83e4f1ac721b32e0c68d147c920d0be", "sha256": "da8a0f61232917fcb65353275f98c5d3df37f928392c61693939785f9ab54a41" }, "downloads": -1, "filename": "dremio_client-0.8.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c83e4f1ac721b32e0c68d147c920d0be", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44831, "upload_time": "2020-01-29T14:53:02", "upload_time_iso_8601": "2020-01-29T14:53:02.176037Z", "url": "https://files.pythonhosted.org/packages/68/63/a71c8862ef027a9d1252a0b71935fedef7eb136c943d3ca5a632ddd98a5d/dremio_client-0.8.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "336e68460fe610cc48c6b66008075c1b", "sha256": "2c3a788f5612b722a10e169e29543d0ac5d0452d2ec8d83d0d52f6f01ef6ccb1" }, "downloads": -1, "filename": "dremio_client-0.8.4.tar.gz", "has_sig": false, "md5_digest": "336e68460fe610cc48c6b66008075c1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3471251, "upload_time": "2020-01-29T14:53:03", "upload_time_iso_8601": "2020-01-29T14:53:03.886780Z", "url": "https://files.pythonhosted.org/packages/d6/80/9d511b77c396d5a458454b9bf73da09b11a3879b1d0ca663898d76f1f89a/dremio_client-0.8.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "65cffeeeec7a9dfa15aee90f14eda4ca", "sha256": "053d5034aac5fbb8035b4986d7f39b208fa0057a20dd0930651608d6390ec2dd" }, "downloads": -1, "filename": "dremio_client-0.8.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "65cffeeeec7a9dfa15aee90f14eda4ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44940, "upload_time": "2020-02-19T19:23:45", "upload_time_iso_8601": "2020-02-19T19:23:45.549533Z", "url": "https://files.pythonhosted.org/packages/13/02/7b57c79c26c1cc7572a442b2791338d705f75bc1c3bed60db23437eb7334/dremio_client-0.8.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4fcf9e4cd126e931a3110fe8be7b11a", "sha256": "53cc20f0db5e1d1beb97d3d40bbaf066e31c9a6d724136d0223024915706130d" }, "downloads": -1, "filename": "dremio_client-0.8.8.tar.gz", "has_sig": false, "md5_digest": "b4fcf9e4cd126e931a3110fe8be7b11a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3471362, "upload_time": "2020-02-19T19:23:47", "upload_time_iso_8601": "2020-02-19T19:23:47.035937Z", "url": "https://files.pythonhosted.org/packages/e4/7c/48ae73502a64f1d2e546dfcfa546f888465dde7e378ced50dd4b45e4ed09/dremio_client-0.8.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.9": [ { "comment_text": "", "digests": { "md5": "9359d9ed7ac0366364d7572df1f878a8", "sha256": "edd6c742f2eacc28fd9ab8ddfc311478379b8188571c755a08491651b597f8d0" }, "downloads": -1, "filename": "dremio_client-0.8.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9359d9ed7ac0366364d7572df1f878a8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44969, "upload_time": "2020-02-19T20:22:55", "upload_time_iso_8601": "2020-02-19T20:22:55.912040Z", "url": "https://files.pythonhosted.org/packages/e4/c3/0e99b0817445d15bc4290f435a7d04ebf21b70e579312ae89867b9f2481a/dremio_client-0.8.9-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6742a763c6c2907af6ff9d97df1820b", "sha256": "e36b2f8b0c4a50c642b6d9fe6aa25b1a82bb374da76b2f38bbc082793634b210" }, "downloads": -1, "filename": "dremio_client-0.8.9.tar.gz", "has_sig": false, "md5_digest": "f6742a763c6c2907af6ff9d97df1820b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3472472, "upload_time": "2020-02-19T20:22:57", "upload_time_iso_8601": "2020-02-19T20:22:57.754675Z", "url": "https://files.pythonhosted.org/packages/5e/06/ccb10395c380c36b6603349b2da98a39f4f6dfa69162516642c77f939f61/dremio_client-0.8.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "0de2c444cc63e3c65c82390347ef68b4", "sha256": "686dbdba9f73e74d76d50a5b732afe6de186bc2aafc4ea30358419d6f85f46d6" }, "downloads": -1, "filename": "dremio_client-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0de2c444cc63e3c65c82390347ef68b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45034, "upload_time": "2020-03-17T11:20:55", "upload_time_iso_8601": "2020-03-17T11:20:55.748807Z", "url": "https://files.pythonhosted.org/packages/ae/05/eb149904a818f0f938c22606c0423a458373412bbf80769b1fbc124f67ff/dremio_client-0.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b96b2a2560aa1923748ddf221520b5e9", "sha256": "06344140f7943041871b0f7b17116cc77a366f7b953a80538454d19e23e7635e" }, "downloads": -1, "filename": "dremio_client-0.9.0.tar.gz", "has_sig": false, "md5_digest": "b96b2a2560aa1923748ddf221520b5e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3471583, "upload_time": "2020-03-17T11:20:57", "upload_time_iso_8601": "2020-03-17T11:20:57.545723Z", "url": "https://files.pythonhosted.org/packages/a4/ec/4ff310297d08b75cdb849db37d301eb8be8afaf165739e6b7ea033ef3af2/dremio_client-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "f7900b97aae09164ffe784b9536c2244", "sha256": "558a508418a779f57dbc4baef96501d94eabd47e95774b48432235aaf1d00ea2" }, "downloads": -1, "filename": "dremio_client-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f7900b97aae09164ffe784b9536c2244", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 45142, "upload_time": "2020-03-17T11:25:56", "upload_time_iso_8601": "2020-03-17T11:25:56.622788Z", "url": "https://files.pythonhosted.org/packages/c7/d3/7c636e9949714681e0f0635965cbeeff1c5d5b3230d2d3e3042830277640/dremio_client-0.9.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cab399e89054e8f318d42aab4403d66d", "sha256": "00cd33ef3ee1841dfd7d833cd9a6dd0c6468060a514175c474dd9892519e7d7c" }, "downloads": -1, "filename": "dremio_client-0.9.1.tar.gz", "has_sig": false, "md5_digest": "cab399e89054e8f318d42aab4403d66d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3471698, "upload_time": "2020-03-17T11:25:58", "upload_time_iso_8601": "2020-03-17T11:25:58.281723Z", "url": "https://files.pythonhosted.org/packages/c6/fc/2e3d3bb36bee4374401b9ffabe8bd0e81555c94577ff868e04df9564c699/dremio_client-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "bf71fce06412d6ce5dd5aed094460ec8", "sha256": "6b9ee735069ad4933261b71faeaad1d1692bf1f811c56e54fbfc04a7228155e8" }, "downloads": -1, "filename": "dremio_client-0.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf71fce06412d6ce5dd5aed094460ec8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46408, "upload_time": "2020-03-17T14:31:59", "upload_time_iso_8601": "2020-03-17T14:31:59.498740Z", "url": "https://files.pythonhosted.org/packages/7a/10/119ce6234e9f28c3225e8d8bce12cc001df5f6b072ada8dbbb32b1afb62d/dremio_client-0.9.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "309c9127596cfcb718a841ae0c325522", "sha256": "e11b988d5aa7fee5245e0dc1f2f8998bc107a3fc443503efc205ad8e74576789" }, "downloads": -1, "filename": "dremio_client-0.9.2.tar.gz", "has_sig": false, "md5_digest": "309c9127596cfcb718a841ae0c325522", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3472694, "upload_time": "2020-03-17T14:32:01", "upload_time_iso_8601": "2020-03-17T14:32:01.339178Z", "url": "https://files.pythonhosted.org/packages/ea/13/bfc33093dfa9973bd0097231e311ae6b68e529f83a3a579b530fd6516adf/dremio_client-0.9.2.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2abf0fa7e7bb3717d1d3940384420b94", "sha256": "dbce9c7eb1cd1b5b73c74526314f8b247aab52531cf7664719eb6406c3385f90" }, "downloads": -1, "filename": "dremio_client-0.15.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2abf0fa7e7bb3717d1d3940384420b94", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 53218, "upload_time": "2021-08-26T07:15:37", "upload_time_iso_8601": "2021-08-26T07:15:37.831858Z", "url": "https://files.pythonhosted.org/packages/dd/03/5eaf6594f94d49b0a99cb7a6f2c0265631814116c2314cfcdc94076879c8/dremio_client-0.15.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c33d075989b7aa56d45e00026ca8a16c", "sha256": "ff77bc63cb5e3ae50ff14df1834af45c4ac1613779aab8dd06b9392093f512a4" }, "downloads": -1, "filename": "dremio_client-0.15.1.tar.gz", "has_sig": false, "md5_digest": "c33d075989b7aa56d45e00026ca8a16c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3482695, "upload_time": "2021-08-26T07:15:40", "upload_time_iso_8601": "2021-08-26T07:15:40.482785Z", "url": "https://files.pythonhosted.org/packages/cc/12/a61355287f6a5af10bc6d72b35c3f8dbf74c7acb0b4b1f112167de7f75e2/dremio_client-0.15.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }