{ "info": { "author": "IBM Corp.", "author_email": "Toni.Bollinger@de.ibm.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: End Users/Desktop", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Database", "Topic :: Scientific/Engineering", "Topic :: Software Development", "Topic :: Software Development :: Build Tools" ], "description": "ibmdbpy\n*******\n\nAccelerating Python Analytics by In-Database Processing\n=======================================================\n\nThe ibmdbpy project provides a Python interface for data manipulation and access to in-database algorithms in IBM Db2. It accelerates Python analytics by seamlessly pushing operations written in Python into the underlying database for execution, thereby benefitting from in-database performance-enhancing features, such as columnar storage and parallel processing.\n\nIBM Db2 is a database management system. The ibmdbpy project can be used by Python developers with very little additional knowledge, because it copies the well-known interface of the Pandas library for data manipulation and the Scikit-learn library for the use of machine learning algorithms.\n\nThe ibmdbpy project is compatible with Python releases 2.7 up to 3.6 and can be connected to Db2 databases via ODBC or JDBC.\n\nThe project is still at an early stage and many of its features are still in development. However, several experiments have already demonstrated that it provides significant performance advantages when operating on medium or large amounts of data, that is, on tables of 1 million rows or more.\n\nThe latest version of ibmdbpy is available on the `Python Package Index`_ and Github_.\n\n__ https://pypi.python.org/pypi/ibmdbpy\n\n.. _Github: https://github.com/ibmdbanalytics/ibmdbpy\n\nHow ibmdbpy works\n-----------------\n\nThe ibmdbpy project translates Pandas-like syntax into SQL and uses a middleware API (pypyodbc/JayDeBeApi) to send it to an ODBC or JDBC-connected database for execution. The results are fetched and formatted into the corresponding data structure, for example, a Pandas.Dataframe or a Pandas.Series.\n\nThe following scenario illustrates how ibmdbpy works.\n\nAssuming that all ODBC connection parameters are correctly set, issue the following statements to connect to a database (in this case, a Db2 database named BLUDB) via ODBC:\n\n>>> from ibmdbpy import IdaDataBase, IdaDataFrame\n>>> idadb = IdaDataBase('BLUDB')\n\nA few sample data sets are included in ibmdbpy for you to experiment. We can firstly load the well-known IRIS table into this Db2 database.\n\n>>> from ibmdbpy.sampledata import iris\n>>> idadb.as_idadataframe(iris, \"IRIS\")\n\n\nNext, we can create an IDA data frame that points to the table we just uploaded. Let\u2019s use that one:\n\n>>> idadf = IdaDataFrame(idadb, 'IRIS')\n\nNote that to create an IDA data frame using the IdaDataFrame object, we need to specify our previously opened IdaDataBase object, because it holds the connection.\n\nNow let us compute the correlation matrix:\n\n>>> idadf.corr()\n\nIn the background, ibmdbpy looks for numerical columns in the table and builds an SQL request that returns the correlation between each pair of columns. Here is the SQL request that was executed for this example::\n\n SELECT CORRELATION(\"sepal_length\",\"sepal_width\"),\n CORRELATION(\"sepal_length\",\"petal_length\"),\n CORRELATION(\"sepal_length\",\"petal_width\"),\n CORRELATION(\"sepal_width\",\"petal_length\"),\n CORRELATION(\"sepal_width\",\"petal_width\"),\n CORRELATION(\"petal_length\",\"petal_width\")\n FROM IRIS\n\nThe result fetched by ibmdbpy is a tuple containing all values of the matrix. This tuple is formatted back into a Pandas.DataFrame and then returned::\n\n sepal_length sepal_width petal_length petal_width\n sepal_length 1.000000 -0.117570 0.871754 0.817941\n sepal_width -0.117570 1.000000 -0.428440 -0.366126\n petal_length 0.871754 -0.428440 1.000000 0.962865\n petal_width 0.817941 -0.366126 0.962865 1.000000\n\nEt voil\u00e0 !\n\nHow the geospatial functions work\n---------------------------------\n\nThe ibmdbpy package provides a Python interface to the in-database geospatial functions of IBM Db2 Spatial Extender. It identifies the geometry column for spatial tables and lets you perform spatial queries based upon this column. The results are fetched and formatted into the corresponding data structure, for example, an IdaGeoDataframe.\n\nThe following scenario illustrates how spatial functions work by creating an IDA geo data frame that points to a sample table in Db2:\n\n>>> from ibmdbpy import IdaDataBase, IdaGeoDataFrame\n>>> idadb = IdaDataBase('BLUDB')\n>>> idadf = IdaGeoDataFrame(idadb, 'SAMPLES.GEO_COUNTY')\n\nNote that to create an IdaGeoDataframe using the IdaDataFrame object, we need to specify our previously opened IdaDataBase object, because it holds the connection.\n\nNow let us compute the area of the counties in the GEO_COUNTY table. The result of the area will be stored as a new column 'area' in the IdaGeoDataFrame:\n\n>>> idadf['area'] = idadf.area(colx = 'SHAPE')\n OBJECTID NAME SHAPE area\n 1 Wilbarger MULTIPOLYGON (((-99.4756582604 33.8340108094, ... 0.247254\n 2 Austin MULTIPOLYGON (((-96.6219873342 30.0442882117, ... 0.162639\n 3 Logan MULTIPOLYGON (((-99.4497297204 46.6316377481, ... 0.306589\n 4 La Plata MULTIPOLYGON (((-107.4817473750 37.0000108736,... 0.447591\n 5 Randolph MULTIPOLYGON (((-91.2589262966 36.2578866492, ... 0.170844\n\n\nIn the background, ibmdbpy looks for geometry columns in the table and builds an SQL request that returns the area of each geometry.\nHere is the SQL request that was executed for this example::\n\n SELECT t.*,db2gse.ST_Area(t.SHAPE) as area\n FROM SAMPLES.GEO_COUNTY t;\n\n\nFeature Selection\n=================\n\nIbmdbpy provides a range of functions to support efficient in-database feature selection, e.g. to estimate the relevance of attributes with respect to a particular target. Functions and documentation can be found in the submodule ``ibmdbpy.feature_selection``. \n\nProject Roadmap\n===============\n\n* Full test coverage (a basic coverage is already provided)\n* Add more functions and improve what already exists\n* Add wrappers for several ML-Algorithms (Linear regression, Sequential patterns...)\n\nA more detailed roadmap is available on Github, in the ``ROADMAP.txt`` file \n\nContributors\n============\n\nThe ibmdbpy project was initiated in April 2015 at IBM Deutschland Reasearch & Development, B\u00f6blingen. \nHere is the list of the persons who contributed to the project, in the chronological order of their contribution:\n\n- Edouard Fouch\u00e9 (core)\n- Michael Wurst (core)\n- William Moore (documentation)\n- Craig Blaha (documentation)\n- Rafael Rodriguez Morales (geospatial extension, core)\n- Avipsa Roy (geospatial extension)\n- Nicole Schoen (core)\n- Toni Bollinger (core)\n\nHow to contribute\n=================\n\nYou want to contribute? That's great! There are many things you can do. \n\nIf you are a member of the ibmdbanalytics group, you can create branchs and merge them to master. Otherwise, you can fork the project and do a pull request. You are very welcome to contribute to the code and to the documentation. \n\nThere are many ways to contribute. If you found bugs and have improvement ideas or need some new specific features, please open a ticket! We do care about it. \n\n\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/ibmdbpy/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ibmdbanalytics/ibmdbpy", "keywords": "data analytics database development IBM Db2 Warehouse pandas scikitlearn scalability machine-learning knowledge discovery", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "ibmdbpy", "package_url": "https://pypi.org/project/ibmdbpy/", "platform": "", "project_url": "https://pypi.org/project/ibmdbpy/", "project_urls": { "Homepage": "https://github.com/ibmdbanalytics/ibmdbpy" }, "release_url": "https://pypi.org/project/ibmdbpy/0.1.5/", "requires_dist": [ "pandas", "numpy", "future", "six", "pypyodbc", "lazy", "sphinx; extra == 'doc'", "jaydebeapi (<1.0.0,>=0.2.0); extra == 'jdbc'", "pytest; extra == 'test'", "flaky (==3.4.0); extra == 'test'" ], "requires_python": "", "summary": "A Pandas-like SQL-wrapper for in-database analytics with IBM Db2 Warehouse.", "version": "0.1.5" }, "last_serial": 3986224, "releases": { "0.1.0b1": [ { "comment_text": "", "digests": { "md5": "9d0121a3cc573bd516b9ee92dbf98191", "sha256": "64ba2b529948a9c3c66edc797358c45108523206d1eaac0108d9a7955494a1d5" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9d0121a3cc573bd516b9ee92dbf98191", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 53970, "upload_time": "2015-10-05T09:57:05", "url": "https://files.pythonhosted.org/packages/6f/bb/e3448d7a42647e4c14c58a59afaa6dda793494a2fbf4287f7ec0a511948d/ibmdbpy-0.1.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f41dcb18f3e5be3ea04724c3508fb36", "sha256": "f660dd70fc4f874da15190f44cdd659f2f6d3951223a69a812c4373ed12007ac" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b1.zip", "has_sig": false, "md5_digest": "4f41dcb18f3e5be3ea04724c3508fb36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111781, "upload_time": "2015-10-05T09:57:08", "url": "https://files.pythonhosted.org/packages/d9/60/8896c34f3f2ef3d74d0301e1cbd0edebac9370de8df9f2a980f33f4fa455/ibmdbpy-0.1.0b1.zip" } ], "0.1.0b10": [ { "comment_text": "", "digests": { "md5": "895989903d52e10a548e91282f7c92b7", "sha256": "d8fe355f274e639bf66b5688bb2b4144478f309784dc7d015c2a1cc156b15c17" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "895989903d52e10a548e91282f7c92b7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 137851, "upload_time": "2015-10-19T15:26:40", "url": "https://files.pythonhosted.org/packages/ba/fc/251b3c90916a777af5f5ba1d3aec0f97fdc5782e19dc2e4e8b59a42117b0/ibmdbpy-0.1.0b10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7e9a35e658a6d1958d179e54b3a90505", "sha256": "e289eef1b67973594847eb09fb861fbdec6379df4f29b222570d9cfa011bd2da" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b10.zip", "has_sig": false, "md5_digest": "7e9a35e658a6d1958d179e54b3a90505", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154631, "upload_time": "2015-10-19T15:26:47", "url": "https://files.pythonhosted.org/packages/99/01/8b6029a44d5a53f62993395f05fa68c232515463e5ad44d097c3b69e0046/ibmdbpy-0.1.0b10.zip" } ], "0.1.0b11": [ { "comment_text": "", "digests": { "md5": "59034725d4b614112d1686f388332c6d", "sha256": "8438043ecce83968f0e12bfed07291920050c5f0a10d98fc23062cf076463d6b" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "59034725d4b614112d1686f388332c6d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 137930, "upload_time": "2015-10-19T16:05:04", "url": "https://files.pythonhosted.org/packages/eb/83/a5fc37e90f70a06113faea0db4aadfaea0b89eeec857c76c945754819b31/ibmdbpy-0.1.0b11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "107a18059f9cf15f270f1beb3292be46", "sha256": "3b7e751d4f1e4315f9a48e5b124ba2fd7182a91b2475e1965e900e5922daf1a0" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b11.zip", "has_sig": false, "md5_digest": "107a18059f9cf15f270f1beb3292be46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154713, "upload_time": "2015-10-19T16:05:14", "url": "https://files.pythonhosted.org/packages/0b/7b/0fb7a7b3ace8a70ece1476bc357799d11fc05c20046827a007a8530bde88/ibmdbpy-0.1.0b11.zip" } ], "0.1.0b12": [ { "comment_text": "", "digests": { "md5": "06e2c68e45c73dbe4b295d17f673ae47", "sha256": "eb038da9dd94e8a3218d8ecc0e08a2b8fd284b0c4818e8ac4e241aec968c34cf" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "06e2c68e45c73dbe4b295d17f673ae47", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 137933, "upload_time": "2015-10-20T08:23:11", "url": "https://files.pythonhosted.org/packages/a2/74/16b42f3db75b842cec9c1245b159d86183857286a400c0a84c97bc642f61/ibmdbpy-0.1.0b12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7e1e4e3e72eb699faa6201d7306c1564", "sha256": "82f5c20ebe367adb3931f37cd67e40a4d64aa400d62b84fdb7cfc3fc2cdceae3" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b12.zip", "has_sig": false, "md5_digest": "7e1e4e3e72eb699faa6201d7306c1564", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154716, "upload_time": "2015-10-20T08:23:17", "url": "https://files.pythonhosted.org/packages/e6/5b/382cb89022f7887a6b9cdc69584a7aeeaeb29883adfad5082b676f996add/ibmdbpy-0.1.0b12.zip" } ], "0.1.0b14": [ { "comment_text": "", "digests": { "md5": "b61a3c79e09a9a3be8aca78cb2fa07ca", "sha256": "c109818c7c643927b15db1c97c71b533679242c71d4ae4cd0fd80293c690c0ed" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b61a3c79e09a9a3be8aca78cb2fa07ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 138037, "upload_time": "2015-10-20T18:28:35", "url": "https://files.pythonhosted.org/packages/ab/2c/c49263f2cc4e0a45bd4c1df2863c7863c02af1c1a07b42e78d856f1be752/ibmdbpy-0.1.0b14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "09159b6b242ab0cc53d21a76a97b02ea", "sha256": "2a42442224e47fa91ec2ad5bcf6ff25c8c1103aa547ac0cdf4663779dad41b65" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b14.zip", "has_sig": false, "md5_digest": "09159b6b242ab0cc53d21a76a97b02ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154816, "upload_time": "2015-10-20T18:28:42", "url": "https://files.pythonhosted.org/packages/31/37/f28a7f071b45482e3dc7e08f25e197237e0bfc0afaf018e7c9328d618a18/ibmdbpy-0.1.0b14.zip" } ], "0.1.0b15": [ { "comment_text": "", "digests": { "md5": "8f717f236e45674177a32b43286d3bfc", "sha256": "2c5279571e2ffb6e2915d35a273abfbbc5f5e7c23c8a5e540a983aacc10c49b9" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8f717f236e45674177a32b43286d3bfc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 138034, "upload_time": "2015-10-21T20:13:35", "url": "https://files.pythonhosted.org/packages/d6/83/8907458b07168dbea9402a450396b0be932cfe8d469f18ea7d07e8fdeaaa/ibmdbpy-0.1.0b15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "24386677f8927deab6c6db718af74222", "sha256": "23d54c90da10268bd4ecccd142b47b85d348601e51e99aad99f361f6b959ed40" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b15.zip", "has_sig": false, "md5_digest": "24386677f8927deab6c6db718af74222", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154788, "upload_time": "2015-10-21T20:13:39", "url": "https://files.pythonhosted.org/packages/e7/de/07e086809f89193fdb36372ccde1bb03fa81e9bb6cf09be590dab93a973c/ibmdbpy-0.1.0b15.zip" } ], "0.1.0b16": [ { "comment_text": "", "digests": { "md5": "42b9dd3b34dbaed0627780bc7bf55edd", "sha256": "8989fd46331bb5bde8a2720ea7a6aacfac459683bf2ba7e5dc507da68844f3a4" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "42b9dd3b34dbaed0627780bc7bf55edd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 138427, "upload_time": "2015-11-02T13:59:52", "url": "https://files.pythonhosted.org/packages/15/bc/d55a8ac17e429962f89a1ed96e414372c749da75f3431fbb63df0a9b42e9/ibmdbpy-0.1.0b16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c03eb94a1666ad649b430415bb46fc6a", "sha256": "1ef65ca7774b186c32c0601863d271c33f5308fa46e1317aec8c2e3e02f44d97" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b16.zip", "has_sig": false, "md5_digest": "c03eb94a1666ad649b430415bb46fc6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157120, "upload_time": "2015-11-02T13:59:57", "url": "https://files.pythonhosted.org/packages/5d/00/5338e1df3b81033ff3036c3963379b763c11f8a447eb780d7c2affb5b40a/ibmdbpy-0.1.0b16.zip" } ], "0.1.0b17": [ { "comment_text": "", "digests": { "md5": "d8bba54632eba1c6acefa8794a55ddeb", "sha256": "203811eff2e844c1c4678690f26c603a7d7d9fb266aec6cc873dcd6789f06f08" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d8bba54632eba1c6acefa8794a55ddeb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 138425, "upload_time": "2015-11-06T10:57:44", "url": "https://files.pythonhosted.org/packages/c1/29/d4c3a166a3942a0d02e498d268529cb3da774c78066631057a53a02b225f/ibmdbpy-0.1.0b17-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2f35aa539d911afa45bc6e28927b0677", "sha256": "8ee93fc1c49c997eae66345785712cea06682be44535bd7893e8d3d6ae2f8141" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b17.zip", "has_sig": false, "md5_digest": "2f35aa539d911afa45bc6e28927b0677", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155204, "upload_time": "2015-11-06T10:57:51", "url": "https://files.pythonhosted.org/packages/6a/38/edecde89f530c15eedf21844a8dae37445c39333ec1d9b7726282fe6baf0/ibmdbpy-0.1.0b17.zip" } ], "0.1.0b19": [ { "comment_text": "", "digests": { "md5": "133880f23cf9e405b290902d8cc9ba55", "sha256": "aaa3ac3ce0ddd3ee46a4a12a17683a754d5e2994727c835d1bb36dadf67b3ab1" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "133880f23cf9e405b290902d8cc9ba55", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 138495, "upload_time": "2015-11-25T15:05:16", "url": "https://files.pythonhosted.org/packages/b1/1f/8ff72f43443cabb24537f99ad93c634dab5311c472b09273515f279f6cd1/ibmdbpy-0.1.0b19-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce2da6f533a5da1849c0c12b28216cf2", "sha256": "fc1e9ba05fc3ab7ce1a40fede3ececfc02431378232a0d563ed824014c3e0947" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b19.zip", "has_sig": false, "md5_digest": "ce2da6f533a5da1849c0c12b28216cf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157599, "upload_time": "2015-11-25T15:05:31", "url": "https://files.pythonhosted.org/packages/92/e7/21dec2b0d97bfdf3a02b933379f33687fb395db3899307150b96d12e3df5/ibmdbpy-0.1.0b19.zip" } ], "0.1.0b2": [ { "comment_text": "", "digests": { "md5": "1c1080ed2c5c06a538dd6e46a6383914", "sha256": "5c55efb49f75c326686fa1ad4dd06c7252c2f630f49373ca8f26082ea60850fe" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1c1080ed2c5c06a538dd6e46a6383914", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 54390, "upload_time": "2015-10-05T11:44:12", "url": "https://files.pythonhosted.org/packages/ce/08/490116bcad5bd76d8aedb42b5b162b23998eb2ed58a7d5f0fb8c6ca75dad/ibmdbpy-0.1.0b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c22c133e97a589bd1227fd0a148daae", "sha256": "3be17140b2ead941201e7b9401b0a4f65528e55c5668f50e9c8662ff9c123b22" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b2.zip", "has_sig": false, "md5_digest": "2c22c133e97a589bd1227fd0a148daae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151511, "upload_time": "2015-10-05T11:44:17", "url": "https://files.pythonhosted.org/packages/be/1d/b132c51efaaecf26e82b7d387b14190b357fa149dbd5ab6b7be54a6afbf2/ibmdbpy-0.1.0b2.zip" } ], "0.1.0b20": [ { "comment_text": "", "digests": { "md5": "f32458222418ffc4593e697a4f0f3e88", "sha256": "7305699cf6966260fb24715757829d29118e77249302af14824806bb14b48232" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b20-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f32458222418ffc4593e697a4f0f3e88", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 142912, "upload_time": "2015-12-07T10:18:26", "url": "https://files.pythonhosted.org/packages/78/50/b40bc89d42eb89f6a976537d40edbc9dd3135cfc57955a5f22734c4689c4/ibmdbpy-0.1.0b20-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e7080ad8cff886fa76834d1a6ae4747d", "sha256": "c5feb66ca3f56abc59c90caf9fb66b0d5796ed6a3f6a4969190182e27f0cfdf6" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b20.zip", "has_sig": false, "md5_digest": "e7080ad8cff886fa76834d1a6ae4747d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159709, "upload_time": "2015-12-07T10:18:35", "url": "https://files.pythonhosted.org/packages/9e/1b/8821c0182e6a873c33d17f702eb1bd3fb308a3aa904c84838a2b4c82c465/ibmdbpy-0.1.0b20.zip" } ], "0.1.0b21": [ { "comment_text": "", "digests": { "md5": "6d8f633961173788d85456f3eff9d791", "sha256": "137a2be8a8b991d95113f0c1e9a32ad2692a9965e5461a4aa3695f7a7585bdf0" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6d8f633961173788d85456f3eff9d791", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 147924, "upload_time": "2015-12-17T13:29:21", "url": "https://files.pythonhosted.org/packages/9b/96/ae8e71167f0c44d13b351f8e7b2bae1fdc020157aac7954f9c6310f9edf7/ibmdbpy-0.1.0b21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "71bf81e4ffe507272de7bcecee185cbf", "sha256": "192aee8bbd42f8eaa1ca5383a2fa4ae49a91a1bba89b65c9cc6b47f72ee0544f" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b21.zip", "has_sig": false, "md5_digest": "71bf81e4ffe507272de7bcecee185cbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160489, "upload_time": "2015-12-17T13:29:36", "url": "https://files.pythonhosted.org/packages/a6/d2/d1830205a913d82870295819e1837b4d2cbcae41c557e157579a8b7c55ab/ibmdbpy-0.1.0b21.zip" } ], "0.1.0b22": [ { "comment_text": "", "digests": { "md5": "e285652c15caca382f2de2021993ad7d", "sha256": "2ce1891438509d11ff913da93bd224f6c78d337062eeb1da8372c4ca73187fec" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b22-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e285652c15caca382f2de2021993ad7d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 150683, "upload_time": "2016-01-04T16:31:18", "url": "https://files.pythonhosted.org/packages/11/59/c68228b9c161cf927ed79223aa30f0791566e54a6bc66bdefec3a12346e6/ibmdbpy-0.1.0b22-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a1c6fe25986f1b7d6ac7fda9b9ffd281", "sha256": "814d166a95828a97ff5de23e2a47d9e95548737480d573cf06b502d9001e6a41" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b22.zip", "has_sig": false, "md5_digest": "a1c6fe25986f1b7d6ac7fda9b9ffd281", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 167019, "upload_time": "2016-01-04T16:31:28", "url": "https://files.pythonhosted.org/packages/07/2d/2f9adf0ee00fc6b9dd5714776c70f9c32c885b3e0089f8cafe66215d5403/ibmdbpy-0.1.0b22.zip" } ], "0.1.0b24": [ { "comment_text": "", "digests": { "md5": "1d9ced49c549e26fe03cc0eb868beeb6", "sha256": "9e56de39ba74d1435df16840416ea5c0c94119495d51588224e966224d612951" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b24-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1d9ced49c549e26fe03cc0eb868beeb6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 155650, "upload_time": "2016-03-11T13:02:15", "url": "https://files.pythonhosted.org/packages/f7/2d/08c66c23caca2f6e8182701554ea9976f6c5c9e939f583e9ef88e6b828b0/ibmdbpy-0.1.0b24-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "050b6d8497eae44302e2842554f7656c", "sha256": "5d20a789dd398e4bb0445c5e883636bc28707a4cf9fd66c8b49b650f7cad24e3" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b24.zip", "has_sig": false, "md5_digest": "050b6d8497eae44302e2842554f7656c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 168156, "upload_time": "2016-03-11T13:02:23", "url": "https://files.pythonhosted.org/packages/0c/b0/94ca052e0b4a5a73b2c3ccf4f5aed018d92e2e733b7c72741ff42359530d/ibmdbpy-0.1.0b24.zip" } ], "0.1.0b25": [ { "comment_text": "", "digests": { "md5": "52ac572380eee17aad0909f696c0fc85", "sha256": "861313ec2628fb82c125229aaf1873ceb64c0846736d3b4bf92bf7e13a96b167" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b25-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "52ac572380eee17aad0909f696c0fc85", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 153044, "upload_time": "2016-03-14T11:31:51", "url": "https://files.pythonhosted.org/packages/e0/f8/119e493c92d60fad0c409f0cda509e9953a9252893b9790eabd839306289/ibmdbpy-0.1.0b25-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7dded62c38eab95a4e355eb60fd1b01", "sha256": "44e8edaf27f00eea49280392da512d1b7145b6fd6ff7a0e3594371dfdf5014d3" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b25.zip", "has_sig": false, "md5_digest": "d7dded62c38eab95a4e355eb60fd1b01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 168178, "upload_time": "2016-03-14T11:31:58", "url": "https://files.pythonhosted.org/packages/33/84/400c7b7f798a58dfcb20b8330dffc5bb605565d2500041f37986f0df2bdf/ibmdbpy-0.1.0b25.zip" } ], "0.1.0b26": [ { "comment_text": "", "digests": { "md5": "ba5657df689703c37953b2737dc036d2", "sha256": "8b522fe14646b69be95880b6d72154a1dce504ba79874333d7b88e7808801761" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b26-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ba5657df689703c37953b2737dc036d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 153543, "upload_time": "2016-03-16T11:43:08", "url": "https://files.pythonhosted.org/packages/16/df/8138a8856971dc624b3fa4a66a9a49fc65e1d100cb56a533dbfcdccd0ae2/ibmdbpy-0.1.0b26-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20be2d23aa51cf6e64a0d6d89946758f", "sha256": "c5077afa9244bf815d65f38e7c8cc4c67217ecb1b45a63199f8c75b94acbb170" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b26.zip", "has_sig": false, "md5_digest": "20be2d23aa51cf6e64a0d6d89946758f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 168677, "upload_time": "2016-03-16T16:12:02", "url": "https://files.pythonhosted.org/packages/18/13/3a1e9202d41c8d4a4724f3b97f70d410ccea300ff00d5c65d3c9218e4486/ibmdbpy-0.1.0b26.zip" } ], "0.1.0b3": [ { "comment_text": "", "digests": { "md5": "fdc654ecb16c0b18c497934f6a049170", "sha256": "19cbb1bd739324d6fcc78e0b2b7c7349338195fd45043723715368bc898b3de1" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fdc654ecb16c0b18c497934f6a049170", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 95605, "upload_time": "2015-10-05T12:34:00", "url": "https://files.pythonhosted.org/packages/db/01/823766237dd1f6da1966312519091ad4cad884403085574e609cb5621b5c/ibmdbpy-0.1.0b3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4197b241ebc9840a0952c79bc96102d0", "sha256": "bef2dae5054e4d267ac0135dea4931b2b6b103a6817a7346f836add068fb9023" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b3.zip", "has_sig": false, "md5_digest": "4197b241ebc9840a0952c79bc96102d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151515, "upload_time": "2015-10-05T12:34:12", "url": "https://files.pythonhosted.org/packages/7f/3f/9ec97a28f92ea572766cc342a755751d170c81be1a8a5f33c62f40c03eb4/ibmdbpy-0.1.0b3.zip" } ], "0.1.0b4": [ { "comment_text": "", "digests": { "md5": "ab4f826b465be1999948b4fed601a462", "sha256": "054c734afab8bbe02a6fd160ecbad812a8c00ba7805d89e5c261289f7a2c04a2" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab4f826b465be1999948b4fed601a462", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 120522, "upload_time": "2015-10-05T12:53:00", "url": "https://files.pythonhosted.org/packages/c2/3f/bbbd53d8e49b291323c19bfeda7d60675854bcb1dd572e34b8e96e46c1c3/ibmdbpy-0.1.0b4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e85a955273548f46da3bb1ba2473e246", "sha256": "3efed3a6ef60b851a2fa7b74da9ee89958805faa6008e52586406c532a358fb5" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b4.zip", "has_sig": false, "md5_digest": "e85a955273548f46da3bb1ba2473e246", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151519, "upload_time": "2015-10-05T12:53:11", "url": "https://files.pythonhosted.org/packages/26/9d/9da62a669ee1c85ab91a2305b97fd5c6679e14f366395b2e8dd8a250fd35/ibmdbpy-0.1.0b4.zip" } ], "0.1.0b5": [ { "comment_text": "", "digests": { "md5": "ba043d82d80651fdb36c3dc2e19dcb4a", "sha256": "db78ebe419801d8e73f9635945831c41e886cdfa922f4f157dd34177bb6a3902" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ba043d82d80651fdb36c3dc2e19dcb4a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 123023, "upload_time": "2015-10-05T15:02:09", "url": "https://files.pythonhosted.org/packages/02/c3/b701dda981be1693d1b4c1df14f6299486cdb7cd75bfdcb2cde44e25c4b1/ibmdbpy-0.1.0b5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a46b082ff7b00a19e0a9d6d733681ed8", "sha256": "cfe79731a44ee6e72a4c74b53613e51db31892bc9213c8f5f0321fc714865331" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b5.zip", "has_sig": false, "md5_digest": "a46b082ff7b00a19e0a9d6d733681ed8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154061, "upload_time": "2015-10-05T15:02:23", "url": "https://files.pythonhosted.org/packages/91/8e/224e69671b2260330968afed7bf93b719f308db68257b9118b5551975bce/ibmdbpy-0.1.0b5.zip" } ], "0.1.0b6": [ { "comment_text": "", "digests": { "md5": "d59ac512422847aac386817e43f0ccd0", "sha256": "43b43ba7840c63b71f2eb0e4f8d6838791eecffe05014aee978072697c41026c" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d59ac512422847aac386817e43f0ccd0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 122985, "upload_time": "2015-10-09T08:19:45", "url": "https://files.pythonhosted.org/packages/97/7a/1afd8aee2fb41b0aa91e9e98227e820df2429921d13eafa44ac09513c6cb/ibmdbpy-0.1.0b6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "01ba881949beb264da00fec6140d730b", "sha256": "7b8aa7af60eb9ff295ca82790b07ccc18aad6b5e303a861125b17a9541de30a6" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b6.zip", "has_sig": false, "md5_digest": "01ba881949beb264da00fec6140d730b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154073, "upload_time": "2015-10-09T08:19:51", "url": "https://files.pythonhosted.org/packages/2b/35/7a838ab66ddf1cddaea8146dcec3ed5627fa5675936ba28f3dba669f2130/ibmdbpy-0.1.0b6.zip" } ], "0.1.0b7": [ { "comment_text": "", "digests": { "md5": "352f36171062e6d8ec4da788b7181a08", "sha256": "6983df3f62d0101505890f8fb73d37ad659c945d8f2c8d67fa8c7081b3e791b8" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "352f36171062e6d8ec4da788b7181a08", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 123039, "upload_time": "2015-10-14T17:34:15", "url": "https://files.pythonhosted.org/packages/3d/ae/8311dcb08f4913b5e9610f118e55b437d027e7db2ba97ad44d3a17df51c3/ibmdbpy-0.1.0b7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "05dde89159ceff111081ffcaabd853cf", "sha256": "835bb9a46d7636e1415c8b4ee26a04fe896524c671d34cc0fcc534b72e36ed9d" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b7.zip", "has_sig": false, "md5_digest": "05dde89159ceff111081ffcaabd853cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154127, "upload_time": "2015-10-14T17:34:20", "url": "https://files.pythonhosted.org/packages/c6/07/2067e56992b9474c3af5a6132d8bb34308c6970999e285ffdbab5760a761/ibmdbpy-0.1.0b7.zip" } ], "0.1.0b8": [ { "comment_text": "", "digests": { "md5": "c5f7d00dee85790b931bd3a535fccb80", "sha256": "6acd85d35ea862adf0d12ff299952487b93a4f2f4cf417525c4eef7dd03ae16a" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c5f7d00dee85790b931bd3a535fccb80", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 123126, "upload_time": "2015-10-19T14:18:40", "url": "https://files.pythonhosted.org/packages/18/e0/eb79003c3866bc60853a54f56583bbc2862c317c0cca4bb123fbbc5a42ad/ibmdbpy-0.1.0b8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c3f12bc0cff4555a053643e600e1fb38", "sha256": "3ecedc9160c1678c6413e46621a8b0d19be64e247e933bde7f5ff6da831d245d" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b8.zip", "has_sig": false, "md5_digest": "c3f12bc0cff4555a053643e600e1fb38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154471, "upload_time": "2015-10-19T14:18:46", "url": "https://files.pythonhosted.org/packages/c1/2a/b65ca66faa41814aaa4d9e9ea468c953418380d7acb0a31ab20af72799ac/ibmdbpy-0.1.0b8.zip" } ], "0.1.0b9": [ { "comment_text": "", "digests": { "md5": "35cf4604043aac49d80015bd54646530", "sha256": "0d3216cca6fb7e135eabdb77f2a1dcab6a2a3db4a79fe2a9da32d7b276604506" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "35cf4604043aac49d80015bd54646530", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 137833, "upload_time": "2015-10-19T15:23:16", "url": "https://files.pythonhosted.org/packages/de/45/66520f33aba3fcfb977243019c9d34db01097fe810677a5822c6a46456cf/ibmdbpy-0.1.0b9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90e73099f80a532888ee3ccf179478e1", "sha256": "69b513cc54e4c43a3af2e7b833e4be600d4a5e2a2d84ef1ec3bb0e50b0ded5dc" }, "downloads": -1, "filename": "ibmdbpy-0.1.0b9.zip", "has_sig": false, "md5_digest": "90e73099f80a532888ee3ccf179478e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 169172, "upload_time": "2015-10-19T15:23:25", "url": "https://files.pythonhosted.org/packages/34/c9/ba1a9e06db5cd474d37d2c09e94fb1993ab360768f471b6730349ff1a2aa/ibmdbpy-0.1.0b9.zip" } ], "0.1.1b1": [ { "comment_text": "", "digests": { "md5": "208ca8bdf94b897f08d1bacffbb1d959", "sha256": "5dce44358fe9d80a2dad7ffe26ed24c45836c56825aadd47dcd8065f216203a5" }, "downloads": -1, "filename": "ibmdbpy-0.1.1b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "208ca8bdf94b897f08d1bacffbb1d959", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 171690, "upload_time": "2016-07-22T11:13:04", "url": "https://files.pythonhosted.org/packages/0b/b6/fae8c77df9bb28e61732d9f314b0f22292e1a13839e454d229c68a150ac6/ibmdbpy-0.1.1b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "44489caec097c07ed942bbd7ead0b524", "sha256": "6f5998dbc2ddcf8356613a28cfce51580e7772fb832742291718d00ca5e73db2" }, "downloads": -1, "filename": "ibmdbpy-0.1.1b1.zip", "has_sig": false, "md5_digest": "44489caec097c07ed942bbd7ead0b524", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189438, "upload_time": "2016-07-22T11:13:07", "url": "https://files.pythonhosted.org/packages/b5/3b/538559e604ae903ff6d7ab46e1eb54891f88efe9a630216f97740e634082/ibmdbpy-0.1.1b1.zip" } ], "0.1.2b1": [ { "comment_text": "", "digests": { "md5": "4705eed03ecf17ca39edb9d87dd2651b", "sha256": "4993a97d997bc50a6eed510208e1180e3b2833e4b1ed5ce0874e2c6e003f9773" }, "downloads": -1, "filename": "ibmdbpy-0.1.2b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4705eed03ecf17ca39edb9d87dd2651b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 217062, "upload_time": "2016-09-07T11:42:51", "url": "https://files.pythonhosted.org/packages/d0/6e/ca6717effe70c612da4129837fd10576a4f28a070d9e366ee04c809b034b/ibmdbpy-0.1.2b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae4a2c0213679d5840418e7124c90b36", "sha256": "09607cfa8d060ecce5a0ec21ffac544a5bc8ac4a11821ad88d6a3aed38bfab27" }, "downloads": -1, "filename": "ibmdbpy-0.1.2b1.zip", "has_sig": false, "md5_digest": "ae4a2c0213679d5840418e7124c90b36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213283, "upload_time": "2016-09-07T11:42:55", "url": "https://files.pythonhosted.org/packages/68/35/a969cf76e7178f5c3d015ccf4bc3d95c3e206dfb26f18b51b6356adf3162/ibmdbpy-0.1.2b1.zip" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "1e5e80a56e6bcc36df913f6c9f5dd4b4", "sha256": "8aa245fd27eef6845408263d91922abf473ef7249079e28caa02c58ecd47f975" }, "downloads": -1, "filename": "ibmdbpy-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1e5e80a56e6bcc36df913f6c9f5dd4b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 218892, "upload_time": "2016-09-08T16:49:12", "url": "https://files.pythonhosted.org/packages/a1/13/b6e61e96e7f4e9645babc51cfd95bffc371d18ad7d3dfa69d02c7cd69f17/ibmdbpy-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67ce4b3902eebb1dc74ff22db131ac55", "sha256": "a1a0ce79c8d01f9f89d790c40aab125523d924f0c644a03c895046bba52a98f3" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.zip", "has_sig": false, "md5_digest": "67ce4b3902eebb1dc74ff22db131ac55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215001, "upload_time": "2016-09-08T16:49:15", "url": "https://files.pythonhosted.org/packages/f1/2d/19468eb5026357928ec2ffedcad6635225ea33bed4740f01687eaa06449c/ibmdbpy-0.1.3.zip" } ], "0.1.3.post1": [ { "comment_text": "", "digests": { "md5": "e6ea511bbbbcf6c4c24e7d3e0ef2c052", "sha256": "d9c27d8c3dab496263671ef42ce092842f6497420f1e4d3f80afc0ae3413fcc0" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e6ea511bbbbcf6c4c24e7d3e0ef2c052", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 218996, "upload_time": "2016-09-09T12:58:51", "url": "https://files.pythonhosted.org/packages/78/84/9a6200541360d0fb4972b3162e5adde536d529ecf04424f4b8a3ac1e4089/ibmdbpy-0.1.3.post1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a802329b3702e09f6f9a22d869b771cb", "sha256": "a296add4d3e34c2787ba29e10da0152f8d29a77d50ac61a395832ea18020cdcb" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post1.zip", "has_sig": false, "md5_digest": "a802329b3702e09f6f9a22d869b771cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216142, "upload_time": "2016-09-09T12:58:54", "url": "https://files.pythonhosted.org/packages/42/80/93b88099f0f55514611111a470a5ca3760ea8058375d68ec0c4a0b0124ab/ibmdbpy-0.1.3.post1.zip" } ], "0.1.3.post2": [ { "comment_text": "", "digests": { "md5": "f92f8393cbe7f2f6bf6fa55805075017", "sha256": "49bae01760f7d68cc0d3993d95aa88e825e0a732e6faa2ca33ed15b258d72171" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f92f8393cbe7f2f6bf6fa55805075017", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 221358, "upload_time": "2016-09-12T15:02:04", "url": "https://files.pythonhosted.org/packages/14/98/811197184c9a1fcffe791d2353e34d197f175e7cd6360088edbc040e7d77/ibmdbpy-0.1.3.post2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "56abe89050a94c722d7dd0683e5c9f20", "sha256": "98796eac43bff684d2c02c276e3287595dad24ba4871117ed3c7330409070983" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post2.tar.gz", "has_sig": false, "md5_digest": "56abe89050a94c722d7dd0683e5c9f20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162707, "upload_time": "2016-09-12T15:02:07", "url": "https://files.pythonhosted.org/packages/c8/14/e3dad54b9773d9e8b3888ebe819d8ca7290e18266f108da2438b8aa1c22b/ibmdbpy-0.1.3.post2.tar.gz" } ], "0.1.3.post3": [ { "comment_text": "", "digests": { "md5": "3cfcbb70a856c27df8e3338189f3de85", "sha256": "d693c26a61e3c927761672a15955527dae91184f21d52c97bff4d1ee56938856" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3cfcbb70a856c27df8e3338189f3de85", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 318891, "upload_time": "2016-09-26T13:13:58", "url": "https://files.pythonhosted.org/packages/07/c9/db5758fed753bff2343fcfb5d8c18c2b6347fed4a1722b4c4122a6d914e5/ibmdbpy-0.1.3.post3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b86c47f86908c30fa05678255e3447f1", "sha256": "1a12732d19496e8dc8c0b2bd4f7af747d534409cbd255659eab9a9fe8b648cbe" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post3.tar.gz", "has_sig": false, "md5_digest": "b86c47f86908c30fa05678255e3447f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162851, "upload_time": "2016-09-26T13:14:02", "url": "https://files.pythonhosted.org/packages/69/c1/35e492c4bd1e1d947d1f1689b487eddc98932471a7f39baf8351c3a43778/ibmdbpy-0.1.3.post3.tar.gz" } ], "0.1.3.post4": [ { "comment_text": "", "digests": { "md5": "cc863955b5e635b8129694eab936e64f", "sha256": "f8b3d1826d6ce9b697982e22b946a0e0ec7efa8b22aff117b2aef7738445e945" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc863955b5e635b8129694eab936e64f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 319080, "upload_time": "2016-10-08T09:10:30", "url": "https://files.pythonhosted.org/packages/90/45/a2181eb00e1e4ffdc0947a6b080ffc775ffcda8518c8ce34a9a21fbfa896/ibmdbpy-0.1.3.post4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d87282359c17c28257236858b4d2ec97", "sha256": "f9b0dcb9b389325485be6248ad855b5f7fc92f5b0490064747394a05c78bd3bc" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post4.tar.gz", "has_sig": false, "md5_digest": "d87282359c17c28257236858b4d2ec97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163252, "upload_time": "2016-10-08T09:10:36", "url": "https://files.pythonhosted.org/packages/52/53/125f39e8e19604f13570de5168c2401e89e2fedbae9dbec4545838300974/ibmdbpy-0.1.3.post4.tar.gz" } ], "0.1.3.post5": [ { "comment_text": "", "digests": { "md5": "ad8c14096f601e8538f2a1673e141339", "sha256": "fd6c2ff554e6a3f6f2900742c75214cd35fba067d906608e896bb7417091a8c0" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ad8c14096f601e8538f2a1673e141339", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 319536, "upload_time": "2016-10-11T05:48:52", "url": "https://files.pythonhosted.org/packages/2d/2c/dd449720460c41f75d9ae71d599fa0499754abaa72673988887f74a16387/ibmdbpy-0.1.3.post5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "690825055289eecaf92d0928d50d4e3b", "sha256": "1bd308e51b18123245285bba916c528a3aba049f4591ad60e86dfb6f3d54b745" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post5.tar.gz", "has_sig": false, "md5_digest": "690825055289eecaf92d0928d50d4e3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163656, "upload_time": "2016-10-11T05:48:56", "url": "https://files.pythonhosted.org/packages/96/34/ff6a63b8e153ba886bf91614ddb5eb420a213c33ef798a9f027462efb2e6/ibmdbpy-0.1.3.post5.tar.gz" } ], "0.1.3.post6": [ { "comment_text": "", "digests": { "md5": "b16ddbcc7f5b0ddad197e35c4a046782", "sha256": "de6c489d18b291d5b602f7e51b15b4afdfa118ebe27732323bd6587bb2736f83" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b16ddbcc7f5b0ddad197e35c4a046782", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 320170, "upload_time": "2016-10-11T06:50:32", "url": "https://files.pythonhosted.org/packages/27/a8/9ba9a29418df0eb10e2e318534335dcfcfc8aca089db933f899eab588490/ibmdbpy-0.1.3.post6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2fae60cf3a99fcaafd350a34eeacc7ce", "sha256": "74411fc45966513c5e207c4526d2a013ce97cca62983013bf1d98630e6f00dbc" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post6.tar.gz", "has_sig": false, "md5_digest": "2fae60cf3a99fcaafd350a34eeacc7ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164293, "upload_time": "2016-10-11T06:50:35", "url": "https://files.pythonhosted.org/packages/f9/2f/31cb3b99cfb46d3c19ab0ee00552d660a691e3d29d2ab231ce8434c80e3d/ibmdbpy-0.1.3.post6.tar.gz" } ], "0.1.3.post7": [ { "comment_text": "", "digests": { "md5": "a31b6294716bfb2d3168abd3dfa9d0a9", "sha256": "1bfc98d230b384a84ee923208712dbcf52edcf3e2435a25f5b87c8810d08cd94" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a31b6294716bfb2d3168abd3dfa9d0a9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 170908, "upload_time": "2017-01-20T08:27:32", "url": "https://files.pythonhosted.org/packages/0d/44/5a141823c4299f660f3f385776a234db7cffbf0e0ec94a599db688c91ce2/ibmdbpy-0.1.3.post7-py2.py3-none-any.whl" } ], "0.1.3.post8": [ { "comment_text": "", "digests": { "md5": "13e229846dd0d93aa850a697088ddd6a", "sha256": "10e5098838be412d896e110d2bcc35f0a9e1070d024ef514020ac970ea277a02" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "13e229846dd0d93aa850a697088ddd6a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 170909, "upload_time": "2017-01-20T09:07:25", "url": "https://files.pythonhosted.org/packages/17/93/639d87d1b4727832feece528b9fa71f2f9f91d3e2789374d78e71e91eb4f/ibmdbpy-0.1.3.post8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dcb8408e8f5040f8ce62d0014fd535be", "sha256": "d8a9679aace617c4f0082a334cc365b43ebfba92a330751e7759c2d53355c179" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post8.tar.gz", "has_sig": false, "md5_digest": "dcb8408e8f5040f8ce62d0014fd535be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162384, "upload_time": "2017-01-20T09:07:28", "url": "https://files.pythonhosted.org/packages/a5/e9/d63f8cfcfb006324dcbb4f444f138fa8fb3a2a81b25d575bccf4b040ac56/ibmdbpy-0.1.3.post8.tar.gz" } ], "0.1.3.post9": [ { "comment_text": "", "digests": { "md5": "b9ea84c400b6f8fb04c6be1706fc28d0", "sha256": "eb8e7f1dde4a1e284539d011c48f50308fa2dbd4cd916ce75c9f26c2bb479d31" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b9ea84c400b6f8fb04c6be1706fc28d0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 170888, "upload_time": "2017-02-02T13:38:42", "url": "https://files.pythonhosted.org/packages/0f/cc/d7ee93ffe2ed6c7663c0cd69c4191616afb9d13b7a6209d28da17f6cb1c7/ibmdbpy-0.1.3.post9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04e0578fc285c566143bd8a66ea47cb9", "sha256": "5d1b380481f009eb0345d82d5493dca055060adf565969abccf44c1d069d9b3c" }, "downloads": -1, "filename": "ibmdbpy-0.1.3.post9.tar.gz", "has_sig": false, "md5_digest": "04e0578fc285c566143bd8a66ea47cb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162369, "upload_time": "2017-02-02T13:38:45", "url": "https://files.pythonhosted.org/packages/22/84/5c5113330ed017f0b4e90bf2c2f2c6e4829c738e724902162321628b62cc/ibmdbpy-0.1.3.post9.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "97b44b14fca57a45ce48ddd72e5f1ad1", "sha256": "3c46f0af76c7786d994c042b64625892debb3e7217bdfe540c86e3c0409eace3" }, "downloads": -1, "filename": "ibmdbpy-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "97b44b14fca57a45ce48ddd72e5f1ad1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 171027, "upload_time": "2017-02-09T15:32:17", "url": "https://files.pythonhosted.org/packages/7e/b8/6c050e676b3613b96843763e88e2c81a44d41289b2570841ed37fad818ca/ibmdbpy-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d327e08360438efec84d5e1b2b29923", "sha256": "fd045e46abaaf50be4fcc277d9f24c59e9a676c2c0e59a016e7cd6a96a2b2213" }, "downloads": -1, "filename": "ibmdbpy-0.1.4.tar.gz", "has_sig": false, "md5_digest": "0d327e08360438efec84d5e1b2b29923", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163193, "upload_time": "2017-02-09T15:32:20", "url": "https://files.pythonhosted.org/packages/53/f4/bddfca2e726e6362c721e6c37fee58f1015545c1830a32fe21385cf01224/ibmdbpy-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "a40bd2c372214a41ad82868721431101", "sha256": "336c35e4e96fa045273480bf65e9c72f4d842a3ff47dd9d220efa6b2a57fc0d3" }, "downloads": -1, "filename": "ibmdbpy-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a40bd2c372214a41ad82868721431101", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 144635, "upload_time": "2018-06-21T16:17:05", "url": "https://files.pythonhosted.org/packages/3f/a1/d54eb900309287f5aac36890fe39ffc55acb2718f13359ea447ea4bfc177/ibmdbpy-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1238a116f11f16a23676eb9d3e070a8c", "sha256": "2909af94a44692a59c0368323dbf04dd99bec822d37771b8ef791cad9f86f8f9" }, "downloads": -1, "filename": "ibmdbpy-0.1.5.tar.gz", "has_sig": false, "md5_digest": "1238a116f11f16a23676eb9d3e070a8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 165965, "upload_time": "2018-06-21T16:17:07", "url": "https://files.pythonhosted.org/packages/c0/e7/269b03e33167ca156b59c561d71323f5368107dd866a845bd6525aec262a/ibmdbpy-0.1.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a40bd2c372214a41ad82868721431101", "sha256": "336c35e4e96fa045273480bf65e9c72f4d842a3ff47dd9d220efa6b2a57fc0d3" }, "downloads": -1, "filename": "ibmdbpy-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a40bd2c372214a41ad82868721431101", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 144635, "upload_time": "2018-06-21T16:17:05", "url": "https://files.pythonhosted.org/packages/3f/a1/d54eb900309287f5aac36890fe39ffc55acb2718f13359ea447ea4bfc177/ibmdbpy-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1238a116f11f16a23676eb9d3e070a8c", "sha256": "2909af94a44692a59c0368323dbf04dd99bec822d37771b8ef791cad9f86f8f9" }, "downloads": -1, "filename": "ibmdbpy-0.1.5.tar.gz", "has_sig": false, "md5_digest": "1238a116f11f16a23676eb9d3e070a8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 165965, "upload_time": "2018-06-21T16:17:07", "url": "https://files.pythonhosted.org/packages/c0/e7/269b03e33167ca156b59c561d71323f5368107dd866a845bd6525aec262a/ibmdbpy-0.1.5.tar.gz" } ] }