{ "info": { "author": "Yogesh Aggarwal", "author_email": "developeryogeshgit@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# SQL-TOOLS\n\n**Python package to help out in working with SQL database-related operation.**\n\nIt is a python package which uses database (SQL) functionality to help the developer to perform SQL operations on their desired database. This project _aims_ the developer ring to focus on their main code rather than focusing on the database related headaches.\n\nThis python package uses the `sqlite` functionality to store databases on the local and `My SQL` for directly connect with the database setup on the host also some built-in features for working with `MongoDB` related operations.\n\n---\n\n**Check it out on PyPi | [![Downloads](https://pepy.tech/badge/sql-tools)](https://pepy.tech/project/sql-tools)**\n\n**or install it directly with the package manager.**\n\n> pip install sql-tools\n\n---\n\n# USAGE\n\n## **`sqlite`**\n\nSometimes the sqlite databases are very useful when we have to store the data in some separate files for separate works. There are many features in this library which will help you out in easy & fast operation of SQL queries for this kind of work.\n\n`sqlite` is a sub-module of `sql-tools` package which includes many types of functionality which include the fast execution of command & also some tools for `on-the-fly` result generation to get rid of writing SQL queries for small works. This library is divided into some separate files so that you can only import what you need and get performance as well as speed in your program(s).\n\n### **Importing the library**\n\n`sqlite` is a submodule of `sql-tools` which can be imported in your program as follows:\n\n``` python\n>>> from sql_tools import sqlite\n```\n\nIn this way, all the functionalities of the library get imported into your program.\n\n---\n\n### **Connecting the database**\n\nBefore the execution of any command, the database(s) should be connected. There is a function in connect file called `connect` which will connect the database(s).\n\n``` python\n>>> sqlite.connect(\"users.db\")\n```\n\nNot only one, but you can also connect as many databases as you want by providing a collection of it.\n\n``` python\n>>> sqlite.connect([\"users.db\", \"staff.db\"])\n```\n\n> Keep in mind that you should execute the same no. of command as the database(s) connected.\n\n### **Execution of command**\n\nThe library includes a function called `execute` which resides in the execute file, helps you to execute the desired command.\n\n``` python\n>>> sqlite.execute(\"SELECT * FROM WORLD WHERE SOMEONE LIKE %YOU%\")\n```\n\nThe above code will execute the command on the connected database and return the result as a numpy array. For eg:\n\n``` text\n[\n [Result for first database]\n [Result for second database]\n . . . . . . . . . .\n . . . . . . . . . .\n]\n```\n\nYou can also run multiple commands for multiple databases as well:\n\n> #Example 1\n\n``` python\n# Connect the databases\nsqlite.connect([\"users.db\", \"staff.db\"])\n\n# Executing the command\nsqlite.execute(\n [\"SELECT first_name FROM user WHERE username LIKE '%uname%'\", \"SELECT first_name FROM staff WHERE id<2\"]\n)\n```\n\nWill return something like:\n\n``` python\n[[[\"user 1\"]\n [\"user 2\"]]\n \n [[\"member 1\"]\n [\"member 2\"]]]\n```\n\n#### Analysing the result\n\n``` python\n# Result for first database (At 0 index of execution result)\n[[\"user 1\"]\n [\"user 2\"]]\n\n# Result for the second database (At 1 index of execution result)\n[[\"member 1\"]\n [\"member 2\"]]\n```\n\nThe execute function converts the result to a numpy array for faster data analysis with the result. Result as an array which positions the result of execution(s) as its elements.\n\n#### Parameters\n\n- **`command`**: The command to be executed. It can be a string for a single command & an array for multiple commands.\n\n- **`databPath`**: When we want to operate a specific database apart from the connected ones, then we provide it the name of the database(s). Accepts string for single database & an array for multiple databases. By default, it sets to the connected databases.\n\n- **`matrix`**: Whether to convert the result to a numpy array. Accepts a boolean value. Default is `True`\n\n- **`inlineData`**: Whether to inline the data or not. We have noticed in `#Example 1` that for the same database, it is returning separate arrays for every result. To prevent this, we provide `inlineData=True` to inline the data. Accepts a boolean value. Default is `False`.\n\n- **`splitByColumns`**: Whether to split the data column-wise or not. We have noticed that the result is row-wise. Accepts boolean value. Default is `False`.\n\n- **`pathJSON`**: Accepts the path of the JSON file which contains the information about the execution of the command(s). Accepts only one path at a time.\n\n- **`asyncExec`**: Whether to perform the execution asynchronously or not. This will help us to avoid the block time of the program & run the SQL queries in the background. Accepts boolean value. Default is `False`.\n\n- **`splitExec`**: Whether to separately execute every command by reconnecting the database every time. Useful when we have to commit the changes per execution. Accepts boolean value. Default is `False`.\n\n- **`returnDict`**: Whether to return a dictionary of result with keys as database name and value as the result. Accepts boolean value. Default is `False`.\n\n- **`logConsole`**: Whether to log the execution steps to the console with process id. Accepts boolean value. Default is `False`.\n\n- **`raiseError`**: Whether to raise error if something goes wrong during execution. Accepts boolean value. Default is `True`.\n\n- **`commit`**: Whether to commit the changes after the execution of a command. Accepts boolean value. Default is `True`.\n\n**Note**: If we want to manually commit the changes then there is a function in the library called `commit` which will commit the changes to the provided database.\n\n``` python\nsqlite.commit(\"users.db\")\n```\n\n### **Disconnecting the database**\n\nTo free up the memory & run programs faster, it's a good practice to disconnect the database that is not in use.\n\n``` python\nsqlite.disconnect(\"users.db\")\n```\n\nDisconnecting multiple databases\n\n``` python\nsqlite.disconnect([\"users.db\", \"staff.db\"])\n```\n\n---\n\n## Resources\n\nYou can contribute to it through GitHub.\n\n## View project at [GitHub](https://github.com/users/yogesh-aggarwal/projects/2)", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://raw.githubusercontent.com/yogesh-aggarwal/sql-tools-lib/master/dist/sql_tools-0.2.8.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/yogesh-aggarwal/sql-tools-lib", "keywords": "SQL,DATABASES,TABLES,RECORDS", "license": "AGPL 3.0", "maintainer": "", "maintainer_email": "", "name": "sql-tools", "package_url": "https://pypi.org/project/sql-tools/", "platform": "", "project_url": "https://pypi.org/project/sql-tools/", "project_urls": { "Download": "https://raw.githubusercontent.com/yogesh-aggarwal/sql-tools-lib/master/dist/sql_tools-0.2.8.tar.gz", "Homepage": "https://github.com/yogesh-aggarwal/sql-tools-lib" }, "release_url": "https://pypi.org/project/sql-tools/0.2.8/", "requires_dist": null, "requires_python": "", "summary": "An integrative library that contains tools for performing various tasks related to My SQL/sqlite3/Mongodb databases.", "version": "0.2.8" }, "last_serial": 5791358, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "5bafa7aa3f98ccc596c403c84b7c6067", "sha256": "853e443bb6cd70e47ac5b7971be31bc181be695f112a4c2a1afa48fffbc012cf" }, "downloads": -1, "filename": "sql_tools-0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5bafa7aa3f98ccc596c403c84b7c6067", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14789, "upload_time": "2019-06-15T05:48:41", "url": "https://files.pythonhosted.org/packages/c4/4b/3363bde6fab4dc34365645f0e86a39fb6dd223e24398b3bf7afc1d4d580d/sql_tools-0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c493f0960dda924fbcb578991a41defd", "sha256": "2efd0b3568dbd4ead8ab888b8470ffc047a300cb7a004f2280323cc99bc621b8" }, "downloads": -1, "filename": "sql_tools-0.1.tar.gz", "has_sig": false, "md5_digest": "c493f0960dda924fbcb578991a41defd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2644, "upload_time": "2019-06-15T05:48:44", "url": "https://files.pythonhosted.org/packages/d9/fb/bceb9bdac7f8fc20f16ee2b212622f6405029061ed26edecb511d18b1552/sql_tools-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "95961363f6ff57db6a11957b55d65ab3", "sha256": "eadcb5da8f76118d3b2dc77ba1e4f8d60443fb888942a8f4ba30deaa1c144f60" }, "downloads": -1, "filename": "sql_tools-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "95961363f6ff57db6a11957b55d65ab3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14816, "upload_time": "2019-06-15T05:53:12", "url": "https://files.pythonhosted.org/packages/06/af/7a6aa6f03e076e2f9815e9b16075cb8734a040015e3cc698dc423b2621c6/sql_tools-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9180e4dddd125427bb280e23925458b1", "sha256": "7742a7962054438c4acc34a3b3682b235eb6efab8077275724ad33f90e93d867" }, "downloads": -1, "filename": "sql_tools-0.1.1.tar.gz", "has_sig": false, "md5_digest": "9180e4dddd125427bb280e23925458b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2647, "upload_time": "2019-06-15T05:53:16", "url": "https://files.pythonhosted.org/packages/7b/d9/48d8c7fb4e9cdd6ad45e9d8840de60077754b74b8789cfcf0321afcbfc7c/sql_tools-0.1.1.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "5b84b9c9cefa232188a406c138368ec0", "sha256": "c88d07654289db06f0033d21bbeb2945f003cd57732688cf315b76a29ffcba92" }, "downloads": -1, "filename": "sql_tools-0.1.3.tar.gz", "has_sig": false, "md5_digest": "5b84b9c9cefa232188a406c138368ec0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3274, "upload_time": "2019-06-15T11:04:49", "url": "https://files.pythonhosted.org/packages/cf/f9/e59fe5f7d3f2caa03e94ca48700b86e19294634857b304a191bc1d8ca343/sql_tools-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "8a7f5b0c37f02762fdbebb7e5f2a1403", "sha256": "a1fef152b256d67aecbc1938e30dd329b3824053bfa6476a0830f1c16a562051" }, "downloads": -1, "filename": "sql_tools-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "8a7f5b0c37f02762fdbebb7e5f2a1403", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16041, "upload_time": "2019-06-18T04:14:08", "url": "https://files.pythonhosted.org/packages/76/9e/565eb5b0757e498aea16ced9d51ce648227a49e29084156e8e2cfd583db9/sql_tools-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aeb430fc3bd9fc868cf1503ff87921d2", "sha256": "bbd7608ac5f88960864868a7a7e3d88ee69f772faf841fb688f2900807f299d7" }, "downloads": -1, "filename": "sql_tools-0.1.4.tar.gz", "has_sig": false, "md5_digest": "aeb430fc3bd9fc868cf1503ff87921d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4186, "upload_time": "2019-06-18T04:14:10", "url": "https://files.pythonhosted.org/packages/f8/b4/c573c02ffaec04a97b872db5505a3a3abb88cbc3f5083ed451dc11a92fdd/sql_tools-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "9547ced20959752bc96fd4a8c6a3240d", "sha256": "76bce83e101d454aab6bde68165b04fb9a6651b634849c825334a63aebc2d693" }, "downloads": -1, "filename": "sql_tools-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "9547ced20959752bc96fd4a8c6a3240d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16246, "upload_time": "2019-06-18T06:13:12", "url": "https://files.pythonhosted.org/packages/13/8e/22a632b1c8be2ac43d171e9f6a276ad6b12656c40c3720d459f458ac6c37/sql_tools-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5f616377d43ca1bf4ec9bdb0f2850e12", "sha256": "39714bba4b38265ec500771676e9129b2a386a78572ec2490c3e408a6094ea32" }, "downloads": -1, "filename": "sql_tools-0.1.5.tar.gz", "has_sig": false, "md5_digest": "5f616377d43ca1bf4ec9bdb0f2850e12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4325, "upload_time": "2019-06-18T06:13:14", "url": "https://files.pythonhosted.org/packages/da/d5/d3dfc5a967651660b159981e0c9f552363a94eb2a8546c5d14baaabf62c8/sql_tools-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "8e203313e0c6751ebb37e552134bdb26", "sha256": "bb39e960a6754df26911851daa62c81d510ce6b92a130f6ea5166bf4d9305fa6" }, "downloads": -1, "filename": "sql_tools-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "8e203313e0c6751ebb37e552134bdb26", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16816, "upload_time": "2019-06-18T11:54:00", "url": "https://files.pythonhosted.org/packages/ba/fa/7d386cc79cb7d8e85e88d39b1c1aff7fc56744d94a6f8fc0a6169410ac6b/sql_tools-0.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7881100bde61196871d49e72b1ea8ffe", "sha256": "02e295acbab815e68ef0f82594a46fcd023cac2fdfb5d571ef18f019ce3776ae" }, "downloads": -1, "filename": "sql_tools-0.1.6.tar.gz", "has_sig": false, "md5_digest": "7881100bde61196871d49e72b1ea8ffe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4877, "upload_time": "2019-06-18T11:54:02", "url": "https://files.pythonhosted.org/packages/e8/fe/1f80ef76633a702e14cb8edf0acd10d44bfd5c2474596fa25d45b9384985/sql_tools-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "fef4b0d0f9d911b39b6e5b9fa37151aa", "sha256": "d697136b9424416ad0845862f1f594e198e49547fed2f1f19f98db7e799c11fa" }, "downloads": -1, "filename": "sql_tools-0.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "fef4b0d0f9d911b39b6e5b9fa37151aa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19231, "upload_time": "2019-06-21T12:57:41", "url": "https://files.pythonhosted.org/packages/05/27/379e6d75a1b6926b5bd7cc01a2653b1734c6209d20ec8d18c5ccd32a90ee/sql_tools-0.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "463605399206efbaccabf6b1c1c8c803", "sha256": "99772bf1216306c766b3f04625b40d601803e4aafa912571d97e08ed3f475e43" }, "downloads": -1, "filename": "sql_tools-0.1.7.tar.gz", "has_sig": false, "md5_digest": "463605399206efbaccabf6b1c1c8c803", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7444, "upload_time": "2019-06-21T12:57:43", "url": "https://files.pythonhosted.org/packages/4b/73/6d3606dc573ecf22a7ac66bf5e3e8f4361171d277d28d74c999832d319a1/sql_tools-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "c0482a14f1db4935ef30242df036044b", "sha256": "2ca405fc5326e70c4b6574ff593f4ed8f686d45a1eba5bca0af2b944c3377e9a" }, "downloads": -1, "filename": "sql_tools-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "c0482a14f1db4935ef30242df036044b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18924, "upload_time": "2019-06-30T17:05:14", "url": "https://files.pythonhosted.org/packages/3a/6f/d41b8c2203d4703d0147890010891979f20a6fa47ccc5e2ff17e0be76adc/sql_tools-0.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf15b0b5ede53fcba5c4504179fd4294", "sha256": "9adb17a19761b0bd4a3b9cc413560d6aa50b6b0d2e080163c6614153fd89e833" }, "downloads": -1, "filename": "sql_tools-0.1.8.tar.gz", "has_sig": false, "md5_digest": "bf15b0b5ede53fcba5c4504179fd4294", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105956, "upload_time": "2019-06-30T17:05:21", "url": "https://files.pythonhosted.org/packages/5e/35/eb1cd2a360413907607a67c025efe10e05fbe8d35a3747cf5c1954fa21aa/sql_tools-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "c33a35d8330509d031f9568d3aaa0f9c", "sha256": "9a6ae36b2637e84c6c493f9a572e5fae2bc5d7d47cd39db4deac6a17a9f62491" }, "downloads": -1, "filename": "sql_tools-0.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "c33a35d8330509d031f9568d3aaa0f9c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 116181, "upload_time": "2019-07-02T09:40:29", "url": "https://files.pythonhosted.org/packages/3d/35/287c1731118a29f1bd6d4a9d2826b0e8be132cdd6cebbf02b37fde87eb69/sql_tools-0.1.9-py3-none-any.whl" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "402938029bea50e75f7e5d64d2cfcb88", "sha256": "d22008906de1fe79e8caacb5cc5d4737e0034e3c89195e2ade0503ed8df7c27d" }, "downloads": -1, "filename": "sql_tools-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "402938029bea50e75f7e5d64d2cfcb88", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15733, "upload_time": "2019-07-07T10:23:48", "url": "https://files.pythonhosted.org/packages/c9/b4/05b577b445fbe138a6e5e5c639e51f7a768cd83021b98220af25760cf7c6/sql_tools-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "427beb38f029d967ab5d0d15810fed60", "sha256": "e9e9506d74a6b32defdf5e58f58ad097288168f452ad6f810caa7efdbffd8a36" }, "downloads": -1, "filename": "sql_tools-0.2.0.tar.gz", "has_sig": false, "md5_digest": "427beb38f029d967ab5d0d15810fed60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 206876, "upload_time": "2019-07-07T10:23:51", "url": "https://files.pythonhosted.org/packages/51/41/60bee792da776c481e962c15d44799f5491d44b97eb9c07969ba049267b5/sql_tools-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "0f41d411e7a75f55ce4b194826d79b5b", "sha256": "540be4aedbf2207fa7ab949910251387030990aa35b18558b46158f2f45ead11" }, "downloads": -1, "filename": "sql_tools-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0f41d411e7a75f55ce4b194826d79b5b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15607, "upload_time": "2019-07-07T16:14:05", "url": "https://files.pythonhosted.org/packages/11/5c/3ca46ee9e17751342624780d1f65611c02ba92fd50fc863fae49ed6f6561/sql_tools-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ee8215e669e59be266480469ead65d9", "sha256": "58c638d226b1ee64c351449f026a78e5f0a61b84fda7c4a1c5c2ce53f32de6ca" }, "downloads": -1, "filename": "sql_tools-0.2.1.tar.gz", "has_sig": false, "md5_digest": "4ee8215e669e59be266480469ead65d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 206709, "upload_time": "2019-07-07T16:14:37", "url": "https://files.pythonhosted.org/packages/2d/47/587c3d7526803b10d90ade653be586b3a07a858b5fe8636f5e70b51e9b1e/sql_tools-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "379f0472db8d13b12633b4cd93461823", "sha256": "fcf05822aa3f860c64f718403da19e9904b13d20429aaaa2afa19225929258e0" }, "downloads": -1, "filename": "sql_tools-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "379f0472db8d13b12633b4cd93461823", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15636, "upload_time": "2019-07-07T16:27:18", "url": "https://files.pythonhosted.org/packages/96/9c/fa540250d6244e31a00a75a749a284caa3c00d40e884347ae28ca8f3ba61/sql_tools-0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b304fc97ab46868379971775cb530ee3", "sha256": "0f457c7672526097d636313ddd40fd73d79e8ea998cb1d7e4363fb3086a9e95c" }, "downloads": -1, "filename": "sql_tools-0.2.2.tar.gz", "has_sig": false, "md5_digest": "b304fc97ab46868379971775cb530ee3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 206735, "upload_time": "2019-07-07T16:27:31", "url": "https://files.pythonhosted.org/packages/23/13/9c67e102410c00ce1e5503e5cb6c9fd0ccaf865ae6685b51c18b71a39024/sql_tools-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "0a1abe56b1f08e4e4ae224cefd771ea8", "sha256": "42074a235038be43f69282be60e52d7bb21b1d68e8d0b3b618b1582b30859147" }, "downloads": -1, "filename": "sql_tools-0.2.3-py2-none-any.whl", "has_sig": false, "md5_digest": "0a1abe56b1f08e4e4ae224cefd771ea8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 15906, "upload_time": "2019-07-14T17:37:00", "url": "https://files.pythonhosted.org/packages/66/48/cc24bdcdf2e4717c1cb46878ca2a4e0f5033a838cb975b886fe7930e275f/sql_tools-0.2.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc84007d6ac8f6ea8c6e96ea7a71983b", "sha256": "8d63758514a8ac8e83fcf779e208ed038e92acd058c5a770b6f7593cf503fcef" }, "downloads": -1, "filename": "sql_tools-0.2.3.tar.gz", "has_sig": false, "md5_digest": "fc84007d6ac8f6ea8c6e96ea7a71983b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 206228, "upload_time": "2019-07-14T17:37:30", "url": "https://files.pythonhosted.org/packages/6e/6c/6f4d6f499d84bdb069930cf8cbd2f89cc1834c133fef02f3169e96cabe84/sql_tools-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "25574774bbc58cc8e207babaff37c281", "sha256": "d4aa0dea97c7884982148d029a087e24d467ee594bba2127513c9bac49ce5e68" }, "downloads": -1, "filename": "sql_tools-0.2.4.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "25574774bbc58cc8e207babaff37c281", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218139, "upload_time": "2019-08-01T17:16:11", "url": "https://files.pythonhosted.org/packages/ae/91/70237d3895d77439fb206bb532bdccbd5e7df9a7639f3beec0ebf1493e94/sql_tools-0.2.4.linux-x86_64.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "eff7bf33a87d26af8f5d0ea36f43ddc9", "sha256": "3bcd733b61fb4de5cfe65c46ec40d3382aedc951797fe712e91e1930c3d6cf7e" }, "downloads": -1, "filename": "sql_tools-0.2.5.tar.gz", "has_sig": false, "md5_digest": "eff7bf33a87d26af8f5d0ea36f43ddc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109060, "upload_time": "2019-08-02T15:21:33", "url": "https://files.pythonhosted.org/packages/44/1c/76929a50a1f963823c2e63135405ff86b616c67e74f07687f801dd89d6c7/sql_tools-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "c69b88bb64a3023265be686ea0ef6841", "sha256": "74f842511459bd45604d96c701e377ce62cfb3a957c0b3fcf0c3d51913991892" }, "downloads": -1, "filename": "sql_tools-0.2.6.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "c69b88bb64a3023265be686ea0ef6841", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 230744, "upload_time": "2019-09-04T05:59:39", "url": "https://files.pythonhosted.org/packages/5b/6c/2fce881327bc0d4bc55f32e058bdea70ec807d8110e328c3f0f1cf7646f8/sql_tools-0.2.6.linux-x86_64.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "d7e31c274a51a67afab3029481c03809", "sha256": "f74309c08e5e49e2cafc19720aa76f11c9d83cef2dbf0f684f0875f14ccc3646" }, "downloads": -1, "filename": "sql_tools-0.2.7.tar.gz", "has_sig": false, "md5_digest": "d7e31c274a51a67afab3029481c03809", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123064, "upload_time": "2019-09-04T07:51:06", "url": "https://files.pythonhosted.org/packages/58/3f/b35a808010bf70b8beefc1ef60230bea3330a00ae4aebb926452307ae6fe/sql_tools-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "8d3984d4c342d9d23a38b386237e22b0", "sha256": "5534fc4dd769014597ac1afbe94f1c1d599bedfebecfbe8e77d691f9bca4a81d" }, "downloads": -1, "filename": "sql_tools-0.2.8.tar.gz", "has_sig": false, "md5_digest": "8d3984d4c342d9d23a38b386237e22b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125245, "upload_time": "2019-09-06T09:58:36", "url": "https://files.pythonhosted.org/packages/99/1a/563c81f1cfea3f803c821d1d1e864dfc2b5dc4b9c5718c53329e644979bf/sql_tools-0.2.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8d3984d4c342d9d23a38b386237e22b0", "sha256": "5534fc4dd769014597ac1afbe94f1c1d599bedfebecfbe8e77d691f9bca4a81d" }, "downloads": -1, "filename": "sql_tools-0.2.8.tar.gz", "has_sig": false, "md5_digest": "8d3984d4c342d9d23a38b386237e22b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125245, "upload_time": "2019-09-06T09:58:36", "url": "https://files.pythonhosted.org/packages/99/1a/563c81f1cfea3f803c821d1d1e864dfc2b5dc4b9c5718c53329e644979bf/sql_tools-0.2.8.tar.gz" } ] }