{ "info": { "author": "Ivo Meixner", "author_email": "natiwastaken@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Topic :: Database" ], "description": "# Easy Postgres\n\n**Abstraction layer for PostgreSQL database manipulation based on the `psycopg2` package**\n\nPrimary focuses are **lightweight API** and **high flexibility** when it comes to handling user input. This should make the package very easy to use while maintaining a usable performance level.\n\n## Contents\n\n- [Easy Postgres](#easy-postgres)\n - [Contents](#contents)\n - [WARNING: Work in Progress](#warning-work-in-progress)\n - [How To Use](#how-to-use)\n - [`Connection` class](#connection-class)\n - [`Connection.run` method](#connectionrun-method)\n - [`Connection.one` method](#connectionone-method)\n - [`Connection.all` method](#connectionall-method)\n - [`Connection.iter` method](#connectioniter-method)\n - [`Connection.XXX_dict` methods](#connectionxxxdict-methods)\n - [`Dictionary` class](#dictionary-class)\n - [Accessing Items](#accessing-items)\n - [`Transaction` class](#transaction-class)\n - [License](#license)\n\n## WARNING: Work in Progress\n\n*This package is currently under heavy development and should NOT be used in production. The current API is very likely to change in the near future.*\n\n## How To Use\n\n### `Connection` class\n\nTo do anything, you must first create an instance of the `Connection` class. Give the instructor a [DSN](https://en.wikipedia.org/wiki/Data_source_name). The DSN can take many forms, so please check the [`psycopg2.connect` function documentation](http://initd.org/psycopg/docs/module.html#psycopg2.connect) for more details.\n\nOnce you have a `Connection`, you are ready to run any common SQL query (`SELECT`, `INSERT`, `UPDATE`, `DELETE` should definitely work; the rest should probably work, but it is not guaranteed).\n\n#### `Connection.run` method\n\nExecutes the specified SQL query and returns nothing (`None`). This is the right choice for all non-returning queries (`INSERT`, `UPDATE`, `DELETE`, `DROP`, etc.). An `INSERT` query with a `RETURNING` clause should use the `Connection.one` method instead.\n\n#### `Connection.one` method\n\nExecutes the specified SQL query and returns a single row. If the returned row only has a single column, the single value will be returned. In the case of multiple returned columns, a tuple containing all the column values will be returned.\n\nIf the number of returned rows is not exactly equal to one, `None` will be returned instead.\n\nThis method is meant to be used for SQL queries that are guaranteed to always return exactly one row (e.g., `SELECT COUNT(*) FROM table;`, `INSERT INTO table (id) VALUES (1) RETURNING id;`).\n\n| SQL Query | Returned Result |\n| --------------------------- | --------------------- |\n| `SELECT 'Hello World!';` | `\"Hello World!\"` |\n| `SELECT 'Hello', 'World!';` | `(\"Hello\", \"World!\")` |\n| `SELECT 1;` | `1` |\n| `SELECT 1, 2;` | `(1, 2)` |\n| `SELECT 1, 2, 3, 4, 5;` | `(1, 2, 3, 4, 5)` |\n\n#### `Connection.all` method\n\nExecutes the specified SQL query and returns all the rows as a list. Single-column results will be converted to a list of the column's values. The behavior is similar to the `Connection.one` method.\n\nThis method is mostly meant to be used for `SELECT` queries that may return more (or less) than one row.\n\n#### `Connection.iter` method\n\nExecutes the specified SQL query and returns all the rows as a generator. This method is an alternative to `Connection.all` to be used when iterating over a large number of rows. The rows are fetched one at a time, so casting the generator to a list will give the same exact result as calling `Connection.all` would have, but it will likely be much slower.\n\n#### `Connection.XXX_dict` methods\n\nThese methods execute the SQL queries just like their non-dict counterparts, but instead of returning a value or a tuple, they return a `Dictionary` instance.\n\nIt is advisable to give all the returned columns a unique name without any special characters (`_` is the only allowed exception). If you include any special character in the column name or if the column name is a Python keyword (`if`, `for`, etc.) or the name of a built-in method name (`__init__`, `__str__`, etc.), the column value will become inaccessible as an attribute, or worse yet, some functionality of the `Dictionary` class may be broken. Please keep this in mind when using the `XXX_dict` methods.\n\n### `Dictionary` class\n\nAn extension of the Python's built-in [`dict`](https://docs.python.org/3/library/stdtypes.html#dict) class. It makes the items accessible via attributes (the item's key is used as the attribute name). There are several limitations, but the code should be slightly more readable. The support for the default dictionary item access (via an index) remains.\n\nA `Dictionary` can be initialized from a regular dictionary, using keyword arguments or a combination of both.\n\n#### Accessing Items\n\nFor the purpose of this example, imagine you ran an SQL query that returned a single row as a `Dictionary`. The query result is stored in a variable called `result`. Now you want to print the value of the `price` column. Here is a comparison of `dict` and `Dictionary`.\n\n| Access Method | Standard `dict` | `Dictionary` |\n| ------------- | ------------------------ | ------------------------ |\n| Index | `print(result[\"price\"])` | `print(result[\"price\"])` |\n| Attribute | N/A | `print(result.price)` |\n\nYou can use whichever way of accessing the items you prefer. If you want, you can even cast the `Dictionary` back to a `dict` for better compatibility. Being able to access items as attributes simply seems more convenient and easier to read.\n\n### `Transaction` class\n\nThis class can be used to execute several SQL queries in a series without intermediate commits. If an exception occurs during any of the queries, all the changes made during the transaction will be rolled back. Otherwise, the changes will be committed all at once when you exit the transaction block. This prevents committing only partial changes when an error occurs, which could lead to an unexpected state of the database.\n\nKeep in mind that this `Transaction` class is by no means related to the SQL `TRANSACTION`.\n\nInstances of this class are only meant to be used in the head of `with` blocks (see code below for intended usage). It is preferable to create a `Transaction` by calling the `Connection.transaction` method instead of calling the constructor manually (even though there is no difference as of writing this). Please do not create multiple `Transaction`s at once using the same `Connection`.\n\n```py3\nconn = Connection(\"postgresql:///db\")\nwith conn.transaction():\n row_id = conn.one(\"INSERT INTO table (id, value) VALUES (10, 'Hello World!') RETURNING id;\")\n prev_id = conn.one(\"SELECT MAX(id) FROM table WHERE id < %s;\", row_id)\n conn.run(\"UPDATE table SET value = 'New Value' WHERE id = %s;\", prev_id)\n```\n\nThis is perhaps kind of a silly code, but it demonstrates the functionality. If one of the queries fails (throws an exception), no changes will be committed. If they all succeed, the changes will be made after the last query is executed and the `with` block is exited.\n\n## License\n\nThis package is available under the [MIT License](https://en.wikipedia.org/wiki/MIT_License).\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/natiiix/easy_postgres", "keywords": "postgresql postgres pgsql psql database psycopg2 easy", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "easy-postgres", "package_url": "https://pypi.org/project/easy-postgres/", "platform": "", "project_url": "https://pypi.org/project/easy-postgres/", "project_urls": { "Homepage": "http://github.com/natiiix/easy_postgres" }, "release_url": "https://pypi.org/project/easy-postgres/0.0.14/", "requires_dist": [ "psycopg2-binary" ], "requires_python": "", "summary": "Abstraction layer for PostgreSQL database manipulation based on the psycopg2 package", "version": "0.0.14" }, "last_serial": 5906372, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "9eff34125395d1301f0910344ef62922", "sha256": "9506128e9a9e55bdf03b09361416c996908dec04002364b834397b4721919927" }, "downloads": -1, "filename": "easy_postgres-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9eff34125395d1301f0910344ef62922", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 2440, "upload_time": "2019-07-30T18:30:18", "url": "https://files.pythonhosted.org/packages/86/3b/32d8ec565ce9b1b03817eedf16ca148aec7cb0280bf7a060c7813b4d5e9c/easy_postgres-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b5ac545afdf128c754660a0235d48249", "sha256": "22dc190735b8b20cb8631b5b74bffe7130f983a0c4e75d53d286b606f33b34ba" }, "downloads": -1, "filename": "easy_postgres-0.0.1.tar.gz", "has_sig": false, "md5_digest": "b5ac545afdf128c754660a0235d48249", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1175, "upload_time": "2019-07-30T18:30:20", "url": "https://files.pythonhosted.org/packages/1f/48/8a5cf7122e45fe65773e360fd81aed81825a694bb6289da339ff9c155444/easy_postgres-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "b2443435fb15ebf57cd6c936012cf244", "sha256": "485496b179c13c5c03ba93fd06c88c700253bc98af95efa99e56d08bc70896a9" }, "downloads": -1, "filename": "easy_postgres-0.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "b2443435fb15ebf57cd6c936012cf244", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6179, "upload_time": "2019-08-14T14:03:56", "url": "https://files.pythonhosted.org/packages/af/55/8481d00f241916d1a1b77a3868d1730e543ce96e3bbbd2b08f28648db90f/easy_postgres-0.0.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78c926a4e376a3bd1baab70bfac5852c", "sha256": "7ee85e3ed89479c94d89e099d9bf424c2ac9a302545505c37ba49a9fad6b03ed" }, "downloads": -1, "filename": "easy_postgres-0.0.10.tar.gz", "has_sig": false, "md5_digest": "78c926a4e376a3bd1baab70bfac5852c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4162, "upload_time": "2019-08-14T14:03:57", "url": "https://files.pythonhosted.org/packages/a2/e2/a9d81824cb0aefd1b8a1c332b462a5cc1fb6317ff302dc44123c23b2db2e/easy_postgres-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "b906a4ccbfa13fda91a6779a58d4224b", "sha256": "707f5d8c7e072b0f68c1cf83a27ff7803d5c213c42c74a3a1fd58f8a73d29ce4" }, "downloads": -1, "filename": "easy_postgres-0.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "b906a4ccbfa13fda91a6779a58d4224b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6264, "upload_time": "2019-08-16T23:18:41", "url": "https://files.pythonhosted.org/packages/48/62/9c43c605a690d897d6781db9dcdd72c5d994b82cb86ba35f768d4596d31b/easy_postgres-0.0.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "96d52c21edbc5c3899a83e9ce1d7049c", "sha256": "ace00a53fe923ca1626a898f542d50bc40f9e77a715d03155fea954efcd81a4c" }, "downloads": -1, "filename": "easy_postgres-0.0.11.tar.gz", "has_sig": false, "md5_digest": "96d52c21edbc5c3899a83e9ce1d7049c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4248, "upload_time": "2019-08-16T23:18:43", "url": "https://files.pythonhosted.org/packages/bd/ce/23c2c5ef70eeeb2412fc0c253261bf8e64a2f371b264907d2d3202cb3aec/easy_postgres-0.0.11.tar.gz" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "bf8074e20ca07a1bb30f7074eb0ec292", "sha256": "c12591417ebbbb00297b869b231fe60a61367814f4020b48ba0bd480c9918def" }, "downloads": -1, "filename": "easy_postgres-0.0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "bf8074e20ca07a1bb30f7074eb0ec292", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8201, "upload_time": "2019-09-03T11:03:27", "url": "https://files.pythonhosted.org/packages/0c/b4/0fbdff29fd050111274ae9d086802a99dfcfd3a64a0e9b79c3de20734242/easy_postgres-0.0.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d1b36c1492f8cc7edef1d2475acf430", "sha256": "6001c8df6e32bfaa024d0207a91b14eb3eb6a4463145bed241e6b773f425a11f" }, "downloads": -1, "filename": "easy_postgres-0.0.12.tar.gz", "has_sig": false, "md5_digest": "4d1b36c1492f8cc7edef1d2475acf430", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6308, "upload_time": "2019-09-03T11:03:29", "url": "https://files.pythonhosted.org/packages/cb/74/1ecbdb68938187960bcd713b9c0f1ff3e3972f71c9f0b70a2d2c98c9266f/easy_postgres-0.0.12.tar.gz" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "a5a79e29a40b4abd53ca751173984ebd", "sha256": "9595539eda4262a196509cda7ea08e5387a267a81206b3223ed03a7bb316f458" }, "downloads": -1, "filename": "easy_postgres-0.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "a5a79e29a40b4abd53ca751173984ebd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8809, "upload_time": "2019-09-05T14:39:42", "url": "https://files.pythonhosted.org/packages/b0/ea/3a5149d3af222d1e98c806922544055c0865758da1b95d4bd934c0111df2/easy_postgres-0.0.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aea9bb2585c16a5046e5936fc3910e32", "sha256": "ab00c8887d92c2447472f931631fa58f567b9cf1c5896caa63fb8e526fd89ec6" }, "downloads": -1, "filename": "easy_postgres-0.0.13.tar.gz", "has_sig": false, "md5_digest": "aea9bb2585c16a5046e5936fc3910e32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6930, "upload_time": "2019-09-05T14:39:44", "url": "https://files.pythonhosted.org/packages/d8/4b/f257e9ba141f7a8d9c4eec23aed04d0d6d19fa11e3ef5de97e12eb35eb06/easy_postgres-0.0.13.tar.gz" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "13e026817ed623c2b8d2637559461582", "sha256": "b3000d7afe066a2fc408bc53512f2d13a454ddb1fcffb4b6bccdc91d54bc70ad" }, "downloads": -1, "filename": "easy_postgres-0.0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "13e026817ed623c2b8d2637559461582", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8878, "upload_time": "2019-09-30T10:17:28", "url": "https://files.pythonhosted.org/packages/ad/5d/fe5260ecaafcb6787ab942e7c485d2991bf628f6ee855d20a0af8502ec8d/easy_postgres-0.0.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e655983367cd7400d619f655b16765c", "sha256": "15d08d28ac48abf71ee3d0f94d9993430aa33057d95ba65ca9b3ddcdfa24f568" }, "downloads": -1, "filename": "easy_postgres-0.0.14.tar.gz", "has_sig": false, "md5_digest": "1e655983367cd7400d619f655b16765c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6998, "upload_time": "2019-09-30T10:17:30", "url": "https://files.pythonhosted.org/packages/27/81/ee7c2964be47a86d1d515d1603cfdb44cb98d054062dd9bfa5a0d256df59/easy_postgres-0.0.14.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "c2f24116ba5155f7beb73cf4b530c026", "sha256": "c3ae431539799701e2fed249e7d4e74bbe0f21982d8f13ad72f3d32238ae8990" }, "downloads": -1, "filename": "easy_postgres-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c2f24116ba5155f7beb73cf4b530c026", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4298, "upload_time": "2019-07-31T00:07:12", "url": "https://files.pythonhosted.org/packages/74/a3/450a7c9678a69bb952a8fb5bc616ac1e7e8c43b63ca67680e2f65c4bd415/easy_postgres-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9e09791566f6f0b7364a3b30bfe5a212", "sha256": "394dcb68243a080fdb95b83b9382051956b695dc77d9e501ac11efdc832cff2e" }, "downloads": -1, "filename": "easy_postgres-0.0.2.tar.gz", "has_sig": false, "md5_digest": "9e09791566f6f0b7364a3b30bfe5a212", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2797, "upload_time": "2019-07-31T00:07:14", "url": "https://files.pythonhosted.org/packages/20/00/1c4a7eebb3e9dcfc223861d8be841de02d906a3c9e01b2450aa54eae23c3/easy_postgres-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "fe06162dde11f7d8973298901085268e", "sha256": "6c69b76a8848fe70f48792dbb25235f5e1f4f29c6cfd21613ae1bae96717909f" }, "downloads": -1, "filename": "easy_postgres-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "fe06162dde11f7d8973298901085268e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4298, "upload_time": "2019-07-31T00:14:27", "url": "https://files.pythonhosted.org/packages/8c/c1/a7fd3213d68b4ef63b63c2e0a569d568761461f5afa868f2a259293f0311/easy_postgres-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "887c2dc17672d46fcecc24d956d0e427", "sha256": "64059a74bd7750143c97a28a8ae6ca49e74845b05a61fa33d0109d15a971fc02" }, "downloads": -1, "filename": "easy_postgres-0.0.3.tar.gz", "has_sig": false, "md5_digest": "887c2dc17672d46fcecc24d956d0e427", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2792, "upload_time": "2019-07-31T00:14:28", "url": "https://files.pythonhosted.org/packages/12/94/e0ebd7fca0965549b9f03d9758ef4e3be8c9f0691db10fac75d50b90b0cc/easy_postgres-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "623903455021cd6838ea102c47767432", "sha256": "4e981cbd9d664c047920458b4d363dfb03d782dda689883c836fdfb5264d76c4" }, "downloads": -1, "filename": "easy_postgres-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "623903455021cd6838ea102c47767432", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4306, "upload_time": "2019-07-31T08:47:17", "url": "https://files.pythonhosted.org/packages/24/f4/68b41742c09b9e8c7f389d59d181864d73b610363efb82bf9d7f09c19219/easy_postgres-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "97db51ab701058400c7460e771b9edc4", "sha256": "ed56389237e5af219a4e7d8aec2e1fa10faba488fffe88ae493fb8d8b1874fc0" }, "downloads": -1, "filename": "easy_postgres-0.0.4.tar.gz", "has_sig": false, "md5_digest": "97db51ab701058400c7460e771b9edc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2777, "upload_time": "2019-07-31T08:47:18", "url": "https://files.pythonhosted.org/packages/1a/b4/2a08d22d7694078080c46f2b3799f3ab08f39c0f3a1a217fb67860712f74/easy_postgres-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "87564270111d14c00e8a1657c7d15ce0", "sha256": "0edd57b1ae4d71905e3a47ed1c174de0bed0eb34ac903357ab0247f4fe032ac9" }, "downloads": -1, "filename": "easy_postgres-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "87564270111d14c00e8a1657c7d15ce0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4312, "upload_time": "2019-07-31T09:00:03", "url": "https://files.pythonhosted.org/packages/9d/cb/5f020f8af8919091db0442fc0cdffa9c542cb7a91878e340a5c279ff0eec/easy_postgres-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c7a11a26e835e16ebc6972d662fc46f", "sha256": "92c14d097f0a561ed25026d5280a006cee5c3df0da3f57b62b389b06540f5f03" }, "downloads": -1, "filename": "easy_postgres-0.0.5.tar.gz", "has_sig": false, "md5_digest": "0c7a11a26e835e16ebc6972d662fc46f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2795, "upload_time": "2019-07-31T09:00:05", "url": "https://files.pythonhosted.org/packages/41/2b/d8323177ba311cc4b58067a01a19b0d97770ab41d9b036143f203c87f3d5/easy_postgres-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "e371f4bfc39efc98057d51edbaa0b960", "sha256": "2ce36391657ab70cf3a6560a358ca21d85a75973cf6556aa97a44544bbbb4f7a" }, "downloads": -1, "filename": "easy_postgres-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "e371f4bfc39efc98057d51edbaa0b960", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4742, "upload_time": "2019-08-02T09:12:09", "url": "https://files.pythonhosted.org/packages/3a/19/0531410350bbae43e2663e055a4bd519b7c4b5b1e625a429900e24484ea6/easy_postgres-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ed2095e3402ca67f47ea0b19440acf8", "sha256": "3dafef74bad332e885b27d8f0f11c6f2d4f9e439a8aeb0a239d8015a4084710a" }, "downloads": -1, "filename": "easy_postgres-0.0.6.tar.gz", "has_sig": false, "md5_digest": "9ed2095e3402ca67f47ea0b19440acf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2963, "upload_time": "2019-08-02T09:12:11", "url": "https://files.pythonhosted.org/packages/45/d4/c0cdcd9efa665252bf06a48acf14fcaa71b08920f92c47debd6e1c131093/easy_postgres-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "29f8ec886a0d052dbe1abb8e5c352a68", "sha256": "aeb787d59227ac1f526d1bfe0cedef93f9c66b94f3357ece374c296ce30dab9d" }, "downloads": -1, "filename": "easy_postgres-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "29f8ec886a0d052dbe1abb8e5c352a68", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4782, "upload_time": "2019-08-02T12:46:46", "url": "https://files.pythonhosted.org/packages/fc/ef/d4023f7fb1fd49f72acf3294e9b664557077ce25a805236092c2ccf9ce4f/easy_postgres-0.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d904e826d19a467b856d8927077ef997", "sha256": "b9c6cbfef13af76776216bf6d0642a3b6c22a6513549f35813baf4fa96eb9537" }, "downloads": -1, "filename": "easy_postgres-0.0.7.tar.gz", "has_sig": false, "md5_digest": "d904e826d19a467b856d8927077ef997", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3001, "upload_time": "2019-08-02T12:46:48", "url": "https://files.pythonhosted.org/packages/07/cb/deacbc6474c73d11de9fab375478e27011463a04fbf66a8dd1e43900bfad/easy_postgres-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "918aaec1245dedd73675c1265418b679", "sha256": "3533d85c86649ec928517ebc62c1fa36d7a0a5165e347a447577529a4014ee60" }, "downloads": -1, "filename": "easy_postgres-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "918aaec1245dedd73675c1265418b679", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4782, "upload_time": "2019-08-02T13:41:24", "url": "https://files.pythonhosted.org/packages/91/a5/ae2418f46321d8ad648de55a606ed0c514df8463be146a5351b252062791/easy_postgres-0.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "250f113f4ec9c767d122ce31288045ba", "sha256": "56e5b9895ad36a55325453ea3526c1c6489ded24ffe977aaf888b84cdf21f7d2" }, "downloads": -1, "filename": "easy_postgres-0.0.8.tar.gz", "has_sig": false, "md5_digest": "250f113f4ec9c767d122ce31288045ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3000, "upload_time": "2019-08-02T13:41:29", "url": "https://files.pythonhosted.org/packages/71/c0/304d4456d84137de3b2c565e74d1fc1c8967b296f27969af20e66d9732b4/easy_postgres-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "f8c196a796de4d91874c0a5c9ddaf054", "sha256": "1dbf41ee96d6551a7c49db8e8d69117d1cd6e636a60698974c77d4eb8b6ca458" }, "downloads": -1, "filename": "easy_postgres-0.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "f8c196a796de4d91874c0a5c9ddaf054", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6165, "upload_time": "2019-08-13T12:48:17", "url": "https://files.pythonhosted.org/packages/46/8e/2c4a449cb14baeb6c7c69c3b520eb1a6f00030f86a7a413c31d495b93b22/easy_postgres-0.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "994aaa000bc2e1e25126715409237fe2", "sha256": "25204c256a5911b187cfd2ff4ffce9c736091d7fd2075b5a3acaca30ed0b880c" }, "downloads": -1, "filename": "easy_postgres-0.0.9.tar.gz", "has_sig": false, "md5_digest": "994aaa000bc2e1e25126715409237fe2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4158, "upload_time": "2019-08-13T12:48:21", "url": "https://files.pythonhosted.org/packages/07/d7/8d25de4449e7a9ab7018ad99060c28289688730cf6407027a3c9b3cfd1b9/easy_postgres-0.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "13e026817ed623c2b8d2637559461582", "sha256": "b3000d7afe066a2fc408bc53512f2d13a454ddb1fcffb4b6bccdc91d54bc70ad" }, "downloads": -1, "filename": "easy_postgres-0.0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "13e026817ed623c2b8d2637559461582", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8878, "upload_time": "2019-09-30T10:17:28", "url": "https://files.pythonhosted.org/packages/ad/5d/fe5260ecaafcb6787ab942e7c485d2991bf628f6ee855d20a0af8502ec8d/easy_postgres-0.0.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e655983367cd7400d619f655b16765c", "sha256": "15d08d28ac48abf71ee3d0f94d9993430aa33057d95ba65ca9b3ddcdfa24f568" }, "downloads": -1, "filename": "easy_postgres-0.0.14.tar.gz", "has_sig": false, "md5_digest": "1e655983367cd7400d619f655b16765c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6998, "upload_time": "2019-09-30T10:17:30", "url": "https://files.pythonhosted.org/packages/27/81/ee7c2964be47a86d1d515d1603cfdb44cb98d054062dd9bfa5a0d256df59/easy_postgres-0.0.14.tar.gz" } ] }