{ "info": { "author": "Uri Laserson", "author_email": "laserson@cloudera.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5" ], "description": "# impyla\n\nPython client for HiveServer2 implementations (e.g., Impala, Hive) for\ndistributed query engines.\n\nFor higher-level Impala functionality, including a Pandas-like interface over\ndistributed data sets, see the [Ibis project][ibis].\n\n### Features\n\n* HiveServer2 compliant; works with Impala and Hive, including nested data\n\n* Fully [DB API 2.0 (PEP 249)][pep249]-compliant Python client (similar to\nsqlite or MySQL clients) supporting Python 2.6+ and Python 3.3+.\n\n* Works with Kerberos, LDAP, SSL\n\n* [SQLAlchemy][sqlalchemy] connector\n\n* Converter to [pandas][pandas] `DataFrame`, allowing easy integration into the\nPython data stack (including [scikit-learn][sklearn] and\n[matplotlib][matplotlib]); but see the [Ibis project][ibis] for a richer\nexperience\n\n### Dependencies\n\nRequired:\n\n* Python 2.6+ or 3.3+\n\n* `six`, `bit_array`\n\n* `thrift`\n\n\nOptional:\n\n* `thrift_sasl==0.2.1` for hive and/or Kerberos support:\n\n* `pandas` for conversion to `DataFrame` objects; but see the [Ibis project][ibis] instead\n\n* `sqlalchemy` for the SQLAlchemy engine\n\n* `pytest` for running tests; `unittest2` for testing on Python 2.6\n\n\n### Installation\n\nInstall the latest release with `pip`:\n\n```bash\npip install impyla\n```\n\nFor the latest (dev) version, install directly from the repo:\n\n```bash\npip install git+https://github.com/cloudera/impyla.git\n```\n\nor clone the repo:\n\n```bash\ngit clone https://github.com/cloudera/impyla.git\ncd impyla\npython setup.py install\n```\n\n#### Running the tests\n\nimpyla uses the [pytest][pytest] toolchain, and depends on the following\nenvironment variables:\n\n```bash\nexport IMPYLA_TEST_HOST=your.impalad.com\nexport IMPYLA_TEST_PORT=21050\nexport IMPYLA_TEST_AUTH_MECH=NOSASL\n```\n\nTo run the maximal set of tests, run\n\n```bash\ncd path/to/impyla\npy.test --connect impala\n```\n\nLeave out the `--connect` option to skip tests for DB API compliance.\n\n\n### Usage\n\nImpyla implements the [Python DB API v2.0 (PEP 249)][pep249] database interface\n(refer to it for API details):\n\n```python\nfrom impala.dbapi import connect\nconn = connect(host='my.host.com', port=21050)\ncursor = conn.cursor()\ncursor.execute('SELECT * FROM mytable LIMIT 100')\nprint cursor.description # prints the result set's schema\nresults = cursor.fetchall()\n```\n\nThe `Cursor` object also exposes the iterator interface, which is buffered\n(controlled by `cursor.arraysize`):\n\n```python\ncursor.execute('SELECT * FROM mytable LIMIT 100')\nfor row in cursor:\n process(row)\n```\n\nFurthermore the `Cursor` object returns you information about the columns\nreturned in the query. This is useful to export your data as a csv file.\n\n```python\nimport csv\n\ncursor.execute('SELECT * FROM mytable LIMIT 100')\ncolumns = [datum[0] for datum in cursor.description]\ntargetfile = '/tmp/foo.csv'\n\nwith open(targetfile, 'w', newline='') as outcsv:\n writer = csv.writer(outcsv, delimiter=',', quotechar='\"', quoting=csv.QUOTE_ALL, lineterminator='\\n')\n writer.writerow(columns)\n for row in cursor:\n writer.writerow(row)\n```\n\nYou can also get back a pandas DataFrame object\n\n```python\nfrom impala.util import as_pandas\ndf = as_pandas(cur)\n# carry df through scikit-learn, for example\n```\n\n\n[pep249]: http://legacy.python.org/dev/peps/pep-0249/\n[pandas]: http://pandas.pydata.org/\n[sklearn]: http://scikit-learn.org/\n[matplotlib]: http://matplotlib.org/\n[pytest]: http://pytest.org/latest/\n[sqlalchemy]: http://www.sqlalchemy.org/\n[ibis]: http://www.ibis-project.org/\n\n# How do I contribute code?\nYou need to first sign and return an\n[ICLA](https://github.com/cloudera/native-toolchain/blob/icla/Cloudera%20ICLA_25APR2018.pdf)\nand\n[CCLA](https://github.com/cloudera/native-toolchain/blob/icla/Cloudera%20CCLA_25APR2018.pdf)\nbefore we can accept and redistribute your contribution. Once these are submitted you are\nfree to start contributing to impyla. Submit these to CLA@cloudera.com.\n\n## Find\nWe use Github issues to track bugs for this project. Find an issue that you would like to\nwork on (or file one if you have discovered a new issue!). If no-one is working on it,\nassign it to yourself only if you intend to work on it shortly.\n\nIt's a good idea to discuss your intended approach on the issue. You are much more\nlikely to have your patch reviewed and committed if you've already got buy-in from the\nimpyla community before you start.\n\n## Fix\nNow start coding! As you are writing your patch, please keep the following things in mind:\n\nFirst, please include tests with your patch. If your patch adds a feature or fixes a bug\nand does not include tests, it will generally not be accepted. If you are unsure how to\nwrite tests for a particular component, please ask on the issue for guidance.\n\nSecond, please keep your patch narrowly targeted to the problem described by the issue.\nIt's better for everyone if we maintain discipline about the scope of each patch. In\ngeneral, if you find a bug while working on a specific feature, file a issue for the bug,\ncheck if you can assign it to yourself and fix it independently of the feature. This helps\nus to differentiate between bug fixes and features and allows us to build stable\nmaintenance releases.\n\nFinally, please write a good, clear commit message, with a short, descriptive title and\na message that is exactly long enough to explain what the problem was, and how it was\nfixed.\n\nPlease create a pull request on github with your patch.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/cloudera/impyla", "keywords": "cloudera impala python hadoop sql hdfs mpp spark pydata pandas distributed db api pep 249 hive hiveserver2 hs2", "license": "Apache License, Version 2.0", "maintainer": "Wes McKinney", "maintainer_email": "wes.mckinney@twosigma.com", "name": "impyla", "package_url": "https://pypi.org/project/impyla/", "platform": "", "project_url": "https://pypi.org/project/impyla/", "project_urls": { "Homepage": "https://github.com/cloudera/impyla" }, "release_url": "https://pypi.org/project/impyla/0.16.0/", "requires_dist": null, "requires_python": "", "summary": "Python client for the Impala distributed query engine", "version": "0.16.0" }, "last_serial": 5876936, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "52c35b16b3897dbb53fb59510c33cfaa", "sha256": "7a9821b01c6437cb1680d834dcde84db6f1f61d24c1e591648175941cbd5b737" }, "downloads": -1, "filename": "impyla-0.10.0.tar.gz", "has_sig": false, "md5_digest": "52c35b16b3897dbb53fb59510c33cfaa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173242, "upload_time": "2015-06-04T21:58:05", "url": "https://files.pythonhosted.org/packages/85/96/0e7a83b686fb11ad70e71554e18372c624f470f72b1e234d881e76d8f2f3/impyla-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "213361c516ab3f2da787324791ca1d1e", "sha256": "bfe09b3bbf16db2274edfac919a8dc4ceac6640e9a6ebcf1b09f8f29b130f2d4" }, "downloads": -1, "filename": "impyla-0.11.0-py2.7.egg", "has_sig": false, "md5_digest": "213361c516ab3f2da787324791ca1d1e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 457893, "upload_time": "2015-09-03T23:08:30", "url": "https://files.pythonhosted.org/packages/e9/97/16f13a9b1869184c1dbee134f339dcbc1b772de3359c50914656209c4628/impyla-0.11.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "653391e1a94fd5aab43120f73434d6f4", "sha256": "1908405c7b3ac93915af28f7bfc9430c643d1293d5414335bf9230d36abf53ac" }, "downloads": -1, "filename": "impyla-0.11.0.tar.gz", "has_sig": false, "md5_digest": "653391e1a94fd5aab43120f73434d6f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161208, "upload_time": "2015-09-03T23:08:20", "url": "https://files.pythonhosted.org/packages/72/09/e916230afdbc1da70c2d89dd08013add415f700f2c0122d79bf832d26890/impyla-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "d510de0a6b10abf5abbf3f9802df337a", "sha256": "9c4cb9e937991430d61465b2dfd1041c88288d9d223d4f6ba505dd7e1ad136f6" }, "downloads": -1, "filename": "impyla-0.11.1-py2.7.egg", "has_sig": false, "md5_digest": "d510de0a6b10abf5abbf3f9802df337a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 458691, "upload_time": "2015-09-04T18:48:37", "url": "https://files.pythonhosted.org/packages/a3/47/6e7f2ee7225465a49f84b931ca05d3c5ba25d7a1299d179189ca0dc36fd0/impyla-0.11.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "542dcc371950a4805dc3ff87653ab9d4", "sha256": "099deea1a1218f979f368a39359bc6928dddc30f730c0676492d69db58a56ea3" }, "downloads": -1, "filename": "impyla-0.11.1.tar.gz", "has_sig": false, "md5_digest": "542dcc371950a4805dc3ff87653ab9d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161311, "upload_time": "2015-09-04T18:48:33", "url": "https://files.pythonhosted.org/packages/66/ee/115527a2f1b83a0b9e1710e8fb83cd38e3456d22ee8744f265458bf5873a/impyla-0.11.1.tar.gz" } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "49d364b1c147e6c61f63bd4ab5d7dde1", "sha256": "44491c4ceeedde6c832c20f9d938e320aeac393ae12e37e22aa31d83d3670726" }, "downloads": -1, "filename": "impyla-0.11.2-py2.7.egg", "has_sig": false, "md5_digest": "49d364b1c147e6c61f63bd4ab5d7dde1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 458038, "upload_time": "2015-09-04T19:53:21", "url": "https://files.pythonhosted.org/packages/56/1e/6f3a24db94efe31abd85195e05df8fb1ffe9e8bce9b4ab55b185cbdd89e6/impyla-0.11.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "350385753a8eecf1408e419586df0e9d", "sha256": "0b94352000519055ac921bc7e371060b9d870ccb2690a63489e516736f652b99" }, "downloads": -1, "filename": "impyla-0.11.2.tar.gz", "has_sig": false, "md5_digest": "350385753a8eecf1408e419586df0e9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160437, "upload_time": "2015-09-04T19:53:15", "url": "https://files.pythonhosted.org/packages/fa/f5/4e82bf9dfdaede8765e0b33336adc057c93bc7f04ba5549bf64ae27a50d4/impyla-0.11.2.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "1b75cfa923895a97d26ba7d3af476696", "sha256": "fa0762fb386c007b47a36519445054f7b7bbd09508a5ef8c6cdc96f4bdc85d12" }, "downloads": -1, "filename": "impyla-0.12.0-py2.7.egg", "has_sig": false, "md5_digest": "1b75cfa923895a97d26ba7d3af476696", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 368812, "upload_time": "2015-11-09T23:05:30", "url": "https://files.pythonhosted.org/packages/ad/e4/c8e85b294963334dfe8ffe3596eabfd6e2f7cb721c1e91d062555c6b7906/impyla-0.12.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "80c0374ba450c171661eade087216611", "sha256": "27bb821abb68b19c7e30f70e375c4845304a3970cc45136be2c2844bf40fa15a" }, "downloads": -1, "filename": "impyla-0.12.0.tar.gz", "has_sig": false, "md5_digest": "80c0374ba450c171661eade087216611", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134103, "upload_time": "2015-11-09T23:05:24", "url": "https://files.pythonhosted.org/packages/30/1a/043dd2a378d7397c20252be3d69a7cf8f48c84a1852b8d2d8e4a327e378f/impyla-0.12.0.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "dfbd53d66af7cff95ccbf23107512029", "sha256": "f2f5c7ac1b88ee388658ac75026166f1b2455ce9580b355e186f6cbcc49375d7" }, "downloads": -1, "filename": "impyla-0.13.0-py2.7.egg", "has_sig": false, "md5_digest": "dfbd53d66af7cff95ccbf23107512029", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 371894, "upload_time": "2016-02-05T20:34:42", "url": "https://files.pythonhosted.org/packages/b1/ec/c04e8fb30ccba36aba2dd66ed57e712b7f295d0ba147a3ac63fbcb084a2c/impyla-0.13.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0be987225fe1a41bd0c2488f9ca46a8d", "sha256": "e51eabcaef5567326184fb749c68268fd211d406695a5d26e6072013818910ef" }, "downloads": -1, "filename": "impyla-0.13.0.tar.gz", "has_sig": false, "md5_digest": "0be987225fe1a41bd0c2488f9ca46a8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135553, "upload_time": "2016-02-05T20:34:37", "url": "https://files.pythonhosted.org/packages/b5/c5/a446817bb3a37c9bfaa7ca8eae29abbf1e6073862333be544486d4a3eed3/impyla-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "cee20445cabca61e33eb15ccb6997d30", "sha256": "48e0304b2ea7e47cc796a168d590ba43c2e318028f2b028d47fdee55e8a29443" }, "downloads": -1, "filename": "impyla-0.13.1-py2.7.egg", "has_sig": false, "md5_digest": "cee20445cabca61e33eb15ccb6997d30", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 371973, "upload_time": "2016-02-05T22:46:28", "url": "https://files.pythonhosted.org/packages/81/9b/cb666268d5c7f1ffbc7809ee323c4b362ad447235fd46191727630ce3927/impyla-0.13.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0e342110aae9e159820a6d18dbbea727", "sha256": "b95a48e9ca255c6b581e21ff42a3b2b4eda86a6b20c376a159d25ac6907a9de4" }, "downloads": -1, "filename": "impyla-0.13.1.tar.gz", "has_sig": false, "md5_digest": "0e342110aae9e159820a6d18dbbea727", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135590, "upload_time": "2016-02-05T22:46:17", "url": "https://files.pythonhosted.org/packages/03/26/5f856b19a3e8e39b057a6543db7f6027aa0da66c7c8b534a4467b4af3a6f/impyla-0.13.1.tar.gz" } ], "0.13.2": [ { "comment_text": "", "digests": { "md5": "2ea529aac6c90054f7710f799606477f", "sha256": "179fdeadcdd91ec04647083427d8dcf98bf8b22bcf2092974631b627f130f1e6" }, "downloads": -1, "filename": "impyla-0.13.2.tar.gz", "has_sig": false, "md5_digest": "2ea529aac6c90054f7710f799606477f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63649, "upload_time": "2016-03-03T03:05:07", "url": "https://files.pythonhosted.org/packages/bc/fb/db8e558a870deab9b228d812ce429b7f57fedfa2ea24717a28b7495c36f6/impyla-0.13.2.tar.gz" } ], "0.13.3": [ { "comment_text": "", "digests": { "md5": "816cac478750aa78df8f16388e5d52ad", "sha256": "a2c489bfb8317af17bee11c85a90e27af4b8c387fdc0ff797add617501ddb434" }, "downloads": -1, "filename": "impyla-0.13.3.tar.gz", "has_sig": false, "md5_digest": "816cac478750aa78df8f16388e5d52ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136005, "upload_time": "2016-03-03T22:51:31", "url": "https://files.pythonhosted.org/packages/09/c6/177005869e88d6c5440d11a6a26b9a24813757c32d2c5d6406aa81e5f9f0/impyla-0.13.3.tar.gz" } ], "0.13.4": [ { "comment_text": "", "digests": { "md5": "e703094bdc30461f672df29678261aab", "sha256": "61af3011be26e5aec13ae78c5dfdcd88e516b6b7b9c27b50fd346b94912f393d" }, "downloads": -1, "filename": "impyla-0.13.4.tar.gz", "has_sig": false, "md5_digest": "e703094bdc30461f672df29678261aab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63692, "upload_time": "2016-03-10T00:19:19", "url": "https://files.pythonhosted.org/packages/cf/1c/870ef173ecc2bb721c8f6e85c3729e93ba01909c2ca50ab17d29170761fc/impyla-0.13.4.tar.gz" } ], "0.13.5": [ { "comment_text": "", "digests": { "md5": "45563e559437174cd97db0d9ad05059a", "sha256": "dfb02d4a016472da083719498e20d10261cfcd60f7b5e61af9684ab853917493" }, "downloads": -1, "filename": "impyla-0.13.5.tar.gz", "has_sig": false, "md5_digest": "45563e559437174cd97db0d9ad05059a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135210, "upload_time": "2016-03-14T05:26:41", "url": "https://files.pythonhosted.org/packages/19/a1/f7f7e4c124560f29f83bb0e2ff7a76bf6b6ece92abb79c2df0df21d210f5/impyla-0.13.5.tar.gz" } ], "0.13.6": [ { "comment_text": "", "digests": { "md5": "56b5889595a3c1bfc7700615935d264f", "sha256": "6586f95ef765e7b5c525dded773d2537ca31c5eb2b904074aacec8041c56254e" }, "downloads": -1, "filename": "impyla-0.13.6.tar.gz", "has_sig": false, "md5_digest": "56b5889595a3c1bfc7700615935d264f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135206, "upload_time": "2016-04-03T22:12:49", "url": "https://files.pythonhosted.org/packages/bd/3c/aaa8b0542bcb7dea78ea256c451c3eaeff2e147bd5ba0b981ac70a93528b/impyla-0.13.6.tar.gz" } ], "0.13.7": [ { "comment_text": "", "digests": { "md5": "331f581a45d48b0482b62d5c67005f8e", "sha256": "36b14beeb965cc072a87c26b1c2fa2becd3762124aa4b940dc5039e6f1f11a1d" }, "downloads": -1, "filename": "impyla-0.13.7.tar.gz", "has_sig": false, "md5_digest": "331f581a45d48b0482b62d5c67005f8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133627, "upload_time": "2016-04-21T22:30:16", "url": "https://files.pythonhosted.org/packages/d3/23/c64eeade2f7997161e490565baa7ccfc37ae314cf6207e3585fe5c9c72e7/impyla-0.13.7.tar.gz" } ], "0.13.8": [ { "comment_text": "", "digests": { "md5": "c2a71ec00447832aabcd53b1dd7c5ecb", "sha256": "34e7b12f44cdfae3f26db011f386f70ba801f30657ba8ca705aa246bc81e8936" }, "downloads": -1, "filename": "impyla-0.13.8.tar.gz", "has_sig": false, "md5_digest": "c2a71ec00447832aabcd53b1dd7c5ecb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136506, "upload_time": "2016-05-31T23:32:40", "url": "https://files.pythonhosted.org/packages/36/35/bcf5ac18e3689948e980e2a0b33d48f46cb8569e1d0f2b17ea7147e88356/impyla-0.13.8.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "51301f014a386235e9d6532075e3fb2e", "sha256": "f105d577052e317c95849624c62738e64208562dbabde2e1f9aa328125ff263a" }, "downloads": -1, "filename": "impyla-0.14.0.tar.gz", "has_sig": false, "md5_digest": "51301f014a386235e9d6532075e3fb2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151597, "upload_time": "2016-11-28T01:18:13", "url": "https://files.pythonhosted.org/packages/6c/30/da9fe733561eb948a07aaef3ae0240ac6a5466cfea5e6872525515634544/impyla-0.14.0.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "af3cc2618638ebf99e5c92e95294fbcb", "sha256": "107db13fea0dcf38c311112b079c305c3b367e99f108df38ebcae87fd6a808f8" }, "downloads": -1, "filename": "impyla-0.14.1-py2-none-any.whl", "has_sig": false, "md5_digest": "af3cc2618638ebf99e5c92e95294fbcb", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 165475, "upload_time": "2018-02-23T01:19:41", "url": "https://files.pythonhosted.org/packages/6f/96/92f933cd216f9ff5d7f4ba7e0615a51ad4e3beb31a7de60f7df365378bb9/impyla-0.14.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d9383ede4b0c36850fbec662c171bce", "sha256": "b414f45c89e2b28fc9c49d79bdd9dab25abda4ba3cd450d562711cbdd2a6700a" }, "downloads": -1, "filename": "impyla-0.14.1.tar.gz", "has_sig": false, "md5_digest": "4d9383ede4b0c36850fbec662c171bce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151780, "upload_time": "2018-02-23T01:19:42", "url": "https://files.pythonhosted.org/packages/80/93/f0d226061ee4679d5b593c88c7b2e9e077a271c799d29facf31bf03666c1/impyla-0.14.1.tar.gz" } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "522af641d4248d29b7ff04b0a488758a", "sha256": "e2b96bdb16d3ed8cc7f66ba7878678881ce09565bccede345c35d451542b7de1" }, "downloads": -1, "filename": "impyla-0.14.2-py2-none-any.whl", "has_sig": false, "md5_digest": "522af641d4248d29b7ff04b0a488758a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 168405, "upload_time": "2019-02-04T20:06:44", "url": "https://files.pythonhosted.org/packages/06/33/ea5c5177118144f382dc51f4496503eb322a3c5d10b6a637c69abc1547b4/impyla-0.14.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "167a63f901ed8835e66bf66173d12d39", "sha256": "25d13dbac4646a38a8432eff687fb899e319378af8651f501f64e287f9bd2b75" }, "downloads": -1, "filename": "impyla-0.14.2.tar.gz", "has_sig": false, "md5_digest": "167a63f901ed8835e66bf66173d12d39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157504, "upload_time": "2019-02-04T20:06:46", "url": "https://files.pythonhosted.org/packages/8c/65/e32ffc89a8b61d86b4bf8d813c551f864076b121aa914a0de313c2494d4f/impyla-0.14.2.tar.gz" } ], "0.14.2.1": [ { "comment_text": "", "digests": { "md5": "6b363a4508b31c1b8b07aba30ccab541", "sha256": "f7386750fe424cea4c00dc43b1a52de55d7300da19d85db66038b02602f166d3" }, "downloads": -1, "filename": "impyla-0.14.2.1.tar.gz", "has_sig": false, "md5_digest": "6b363a4508b31c1b8b07aba30ccab541", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157463, "upload_time": "2019-02-06T20:39:47", "url": "https://files.pythonhosted.org/packages/82/bb/e0a37b3e257ed23b0a1212ea58090a9032a7c64a06f081e608a52aed8e31/impyla-0.14.2.1.tar.gz" } ], "0.14.2.2": [ { "comment_text": "", "digests": { "md5": "6a794220eaf88260c6b9c2908106c48e", "sha256": "e4120cac99c7f60c288a43099ba57cdf9550f342f88f0599a29e44043f386c83" }, "downloads": -1, "filename": "impyla-0.14.2.2.tar.gz", "has_sig": false, "md5_digest": "6a794220eaf88260c6b9c2908106c48e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154633, "upload_time": "2019-02-06T20:43:15", "url": "https://files.pythonhosted.org/packages/2b/de/3cadc54ca0aac684e03e5f66ae027bd5bf455f9becf9cc81a435b3834889/impyla-0.14.2.2.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "44e43ac544cd7ed73bb8f132a841618e", "sha256": "ccda46ad5ed26ab49328bcac2e8b120533352a22ff03506342fad0f32c4af91b" }, "downloads": -1, "filename": "impyla-0.15.0.tar.gz", "has_sig": false, "md5_digest": "44e43ac544cd7ed73bb8f132a841618e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 233622, "upload_time": "2019-04-09T18:20:29", "url": "https://files.pythonhosted.org/packages/fb/e4/f2a71cb427cf5eb9d0dec0026220bbfe3efafe67b676e2b96ea5a5d3bff2/impyla-0.15.0.tar.gz" } ], "0.15a1": [ { "comment_text": "", "digests": { "md5": "2834f0f56affbe04c1dcebf01169f015", "sha256": "c105b15d5dca13ad738b61334002e04f18cbd4d4c9a1e40d88d4105125bc43c5" }, "downloads": -1, "filename": "impyla-0.15a1.tar.gz", "has_sig": false, "md5_digest": "2834f0f56affbe04c1dcebf01169f015", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 233634, "upload_time": "2019-03-18T17:12:46", "url": "https://files.pythonhosted.org/packages/b5/97/7f1c8edf6b19e77e3758babca7e84baa3c4a6aa4645caa78113e2cf672e9/impyla-0.15a1.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "ab232e78a0b5bf4499fab1a4b8f9c806", "sha256": "df46d6aae12cb3657293c739e2b61efead4ebf8186e813e7ea0d20e3527a3099" }, "downloads": -1, "filename": "impyla-0.16.0.tar.gz", "has_sig": false, "md5_digest": "ab232e78a0b5bf4499fab1a4b8f9c806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235125, "upload_time": "2019-09-24T01:37:40", "url": "https://files.pythonhosted.org/packages/71/6d/7f54cd9776c57e5c93cc5f42034f092f528eae09c12ed0d00645706196a0/impyla-0.16.0.tar.gz" } ], "0.16a2": [ { "comment_text": "", "digests": { "md5": "5baf0a25e2cce9b1f00740636d258fc3", "sha256": "a6d05cec56367a465597afaf7f17ca25d5885ba1dc4e47f53ceeac3c6b2acba4" }, "downloads": -1, "filename": "impyla-0.16a2.tar.gz", "has_sig": false, "md5_digest": "5baf0a25e2cce9b1f00740636d258fc3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235064, "upload_time": "2019-09-06T07:37:32", "url": "https://files.pythonhosted.org/packages/5f/be/bcc845768db5a74de202228f3d6ba91585ed5e1fb364cbc9ecbeba3e9f50/impyla-0.16a2.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "58874ac4dade493951e3434261d3f052", "sha256": "6ab41a250e0dda3bc0b5426394566d1712a19b406f3f7ba0b955364c96742fb3" }, "downloads": -1, "filename": "impyla-0.7-py2.7.egg", "has_sig": false, "md5_digest": "58874ac4dade493951e3434261d3f052", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 437211, "upload_time": "2013-05-06T06:04:48", "url": "https://files.pythonhosted.org/packages/36/5d/906ec67681eae9b33f54672e89164684a7c4a4dfaff82a2e4ab4c1d02faf/impyla-0.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "bdf6d72dd008948c4e135f7a52ebe32e", "sha256": "7003107579eb858e3dd8fe17840953af2827bf5ff8fb16bb27b8fdb1865b9d5d" }, "downloads": -1, "filename": "impyla-0.7.tar.gz", "has_sig": false, "md5_digest": "bdf6d72dd008948c4e135f7a52ebe32e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117137, "upload_time": "2013-05-06T06:04:32", "url": "https://files.pythonhosted.org/packages/a6/06/9669104219289ac80a2590d8881981d2c596f0c80fa03c1b692335feff31/impyla-0.7.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "3ff418aac70990d22241397b196d80e1", "sha256": "535fe19e5b78fed5b02acd5d4cdb184b3c430cc7f13e48f0ab0cddee31047f04" }, "downloads": -1, "filename": "impyla-0.8.0-py2.7.egg", "has_sig": false, "md5_digest": "3ff418aac70990d22241397b196d80e1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 104894, "upload_time": "2014-04-25T19:39:58", "url": "https://files.pythonhosted.org/packages/34/0c/4352e1fc501e8d309f66a2e39aac25ee1468d56b4ed770e22eb48c02084c/impyla-0.8.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6bc69adb9a92ca402a79541745e7bc5e", "sha256": "dbda517f57b80d10052ac37a64f60ec5f6e1ee88b3cf470ca4aca25459cebddd" }, "downloads": -1, "filename": "impyla-0.8.0.tar.gz", "has_sig": false, "md5_digest": "6bc69adb9a92ca402a79541745e7bc5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45434, "upload_time": "2014-04-25T19:39:56", "url": "https://files.pythonhosted.org/packages/4d/f9/1a9c602074212b7cb8da63d3a94c781393c83f55d4e810570edbab76cdc0/impyla-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "7ce0eebf9914440323f177e81d8e1857", "sha256": "ef8d9187dd80449bbee3b75c852e3ea296078de8aebc3c64992addadb3faa1aa" }, "downloads": -1, "filename": "impyla-0.8.1-py2.7.egg", "has_sig": false, "md5_digest": "7ce0eebf9914440323f177e81d8e1857", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 147895, "upload_time": "2014-05-16T23:03:01", "url": "https://files.pythonhosted.org/packages/83/41/6fcd08ccbf7e6f4fc8e6cf9106f6fb7ca2332d425c9d53878d973d5fdff1/impyla-0.8.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e1703b71aa21c3bb04827462a5a3d1f5", "sha256": "d3bbdfefe9bc955fb216c54390417840a2d7ff38a9d4c730175f9df99ee97baa" }, "downloads": -1, "filename": "impyla-0.8.1.tar.gz", "has_sig": false, "md5_digest": "e1703b71aa21c3bb04827462a5a3d1f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45456, "upload_time": "2014-05-16T23:02:57", "url": "https://files.pythonhosted.org/packages/6e/ff/7320a4f98c73b87823a0a98910b926e80d53eac6e999e54c0defb07d9fb0/impyla-0.8.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "d299eb77b9db0f4eb697ef70ca16c1c5", "sha256": "f16b6573ef5b53f64d2b3618360dbf41a46a18b0eccd490cd05e5f14a025b940" }, "downloads": -1, "filename": "impyla-0.9.0-py2.7.egg", "has_sig": false, "md5_digest": "d299eb77b9db0f4eb697ef70ca16c1c5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 433486, "upload_time": "2015-01-26T23:50:50", "url": "https://files.pythonhosted.org/packages/5b/2e/29e343d6f3a81188b8e5f3d6b7da0bb397b5f7e83cacac0425eaeacd66cf/impyla-0.9.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e4a40f2fc608783c4d9cb06af9c4d5e8", "sha256": "8849fecadaa2e5241d708c4a45f0fbae33ff58f549a11b3c74c0531db9229664" }, "downloads": -1, "filename": "impyla-0.9.0.tar.gz", "has_sig": false, "md5_digest": "e4a40f2fc608783c4d9cb06af9c4d5e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144964, "upload_time": "2015-01-26T23:50:47", "url": "https://files.pythonhosted.org/packages/3e/95/2ac86c7e1af4b25111ae3779b559215d3118c5a70cc30de1ed81967a3517/impyla-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "4dd03377738e574a56675f7176ffdae2", "sha256": "1204a2cd2920b3406c2100080616ad841fdcd1e97ed540cb54f8da22b9945f3b" }, "downloads": -1, "filename": "impyla-0.9.1-py2.7.egg", "has_sig": false, "md5_digest": "4dd03377738e574a56675f7176ffdae2", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 434954, "upload_time": "2015-03-12T00:56:44", "url": "https://files.pythonhosted.org/packages/2f/eb/4f55a13c774f431b1a124c12c2e63cfd388330a5cf5d436ff5a2d53b2571/impyla-0.9.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b2ccb92ebec92cf1fb2918df4a0f7c22", "sha256": "123f9733068ffb4b3cad76139def7302e38352c546e01741f0dd2ab746948afd" }, "downloads": -1, "filename": "impyla-0.9.1.tar.gz", "has_sig": false, "md5_digest": "b2ccb92ebec92cf1fb2918df4a0f7c22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 145427, "upload_time": "2015-03-12T00:56:36", "url": "https://files.pythonhosted.org/packages/43/a1/6e9b354e8f6b37352dfdbe81dc97177c04a255c6bb23dd83616ff0e961c8/impyla-0.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ab232e78a0b5bf4499fab1a4b8f9c806", "sha256": "df46d6aae12cb3657293c739e2b61efead4ebf8186e813e7ea0d20e3527a3099" }, "downloads": -1, "filename": "impyla-0.16.0.tar.gz", "has_sig": false, "md5_digest": "ab232e78a0b5bf4499fab1a4b8f9c806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235125, "upload_time": "2019-09-24T01:37:40", "url": "https://files.pythonhosted.org/packages/71/6d/7f54cd9776c57e5c93cc5f42034f092f528eae09c12ed0d00645706196a0/impyla-0.16.0.tar.gz" } ] }