{ "info": { "author": "OSNEXUS Corporation", "author_email": "support@osnexus.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# QuantaStor\n## OSNEXUS QuantaStor Python Client Library\n\n---\n\nThe python library for QuantaStor simplifies the process of automating QuantaStor management operations via python scripts. All of the published QuantaStor REST APIs as documented on the OSNEXUS documentation [wiki](https://wiki.osnexus.com/index.php?title=REST_API_Reference_Guide) are callable via the python client.\n\n---\n## System Requirements for QuantaStor\n\nThe QuantaStor Python Client Library requires a QuantaStor box to interact with. The minimum requirements for your storage system vary based on the workload. Use our [Solution Design Tools](https://www.osnexus.com/design) to help you find the solution that best fits your use-case and budget. The minimum requirements provided in this documentation serves as the bare minimum to explore using the software and its capabilities.\n\n* Intel Xeon or AMD x64 bit server (or virtual server) \n* 16GB RAM \n* 2x SSDs for system/boot drives\n - Boot drives should be hardware mirrored and should be atleast 64GB in size.\n* One or more disks per system for storage pools. (SSD/NVMe/PCI SSD/SATA/SAS/FC/iSCSI/AoE)\n* Download [QuantaStor USB/ISO Installation Media](https://www.osnexus.com/downloads) for installation.\n---\n## Installation\n\n### Install Quantastor\n\nTo use the QuantaStor Python Client Library, you must first install QuantaStor on your server hardware or use a QuantaStor virtual system. Installation of QuantaStor will also include python3. QuantaStor ISO files are created as hybrid ISO files which can be written to DVD media with DVD writting software or directly copied to a USB flash drive using `dd`. Follow the [installation guide](https://wiki.osnexus.com/index.php?title=%2B_Installation_Guide_Overview) on our support wiki to get started. The installation guide provides instructions for installation and configuration on both server hardware and virtual machines.\n\n### Run `pip` Installer\n\nUsing the PYPI pip installer run the following command to install the quantastor python client library:\n\nOn Linux/Unix\n\n $ sudo python3 -m pip install quantastor-pkg\n\n### Testing qs_client Installation\n\nStart the python3 interpreter:\n\n $ python3\n\nImport `quantastor_sdk_enabled()` function from the library:\n\n >>> from quantastor.qs_client import quantastor_sdk_enabled\n\nThe following should print out 'True':\n\n >>> print (quantastor_sdk_enabled())\n\n---\n## Examples\n\nSee the `./examples/` directory for examples:\n\n1. **Basic Example**\n\nThe basic example for the QuantaStor Python Client Library (`example.py`) does one operation to get information about the storage system that is specified from the command line and dumps the response data in JSON format. You can use this Python script as a basic template to build off of for QuantaStor automation.\n\n2. **StorageVolume**\n\nThe file `example_sv.sh` is a bash script that utilizes two python scripts, `vol_setup.py` and `acl_attach.py`, to create an example storage volume and host. It then utilizes the `qs-util` QuantaStor tool-set to add a host initiator and login to an ISCSI session with the example storage volume.\n\n3. **NetworkShare**\n\nThe file `example_ns.sh` is a bash script that utilizes the `shr_setup.py` python script to create an example network share. Then using the zfs `mount` command, mounts the network share to the local mount directory `/mnt/testMount`.\n\n---\n## Python Interpreter Usage\n\nTo quickly do operations from the commandline you can easily utilize the QuantaStor Python Client Library strait from the Python3 interpreter. Run the following commands in the python interpreter to set up a client connection to your QuantaStor server. Replace 'hostIP', 'username', and 'password' with your own credentials:\n\n >>> from qs_client import QuantastorClient\n >>> client = QuantastorClient('hostIP', 'username', 'password')\n\nRequests are sent using HTTPS see the 'SSL Certs' section to learn to generate your own 'qs-ca-cert' to use for host verification. If you do not provide your own ca-cert, your client will warn you that 'requests cannot be verified'.\n\nOnce you have generated an instance of the 'QuantastorClient' class you can start making REST service calls to your QuantaStor server. The following is a simple example usage similar to the 'example.py' script:\n\n >>> system = client.storage_system_get()\n\nThis command will return your QuantaStor storage system as a 'StorageSystem' object. You can view the meta of any object class in JSON format (pretty print) by using the StorageSystem.exportJson() function and the dumps() function from the python json module.\n\n >>> import json\n >>> print (json.dumps(system.exportJson(), sort_keys=True, indent=4, separators=(',', ': ')))\n\nFor more information about our REST API methods and objects see our [Reference Guide](https://wiki.osnexus.com/index.php?title=REST_API_Reference_Guide).\n\n---\n## SSL Certs\n\nThe 'QuantastorClient' class supports HTTPS ca-cert verification. You can provide the full path to your certification file as the fourth argument when creating an instance of the 'QuantastorClient' class:\n\n client = QuantastorClient('hostIP', 'username', 'password','/full/path/to/cert')\n\nThe certification path is an optional argument, but you will be warned that your requests cannot be verified if you do not provide one or if your certification path does not exist. If you do provide a valid ca-cert file, REST service calls will only succeed if your SSL verification succeeds.\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/OSNEXUS/QSPyClient", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "quantastor-pkg", "package_url": "https://pypi.org/project/quantastor-pkg/", "platform": "", "project_url": "https://pypi.org/project/quantastor-pkg/", "project_urls": { "Homepage": "https://github.com/OSNEXUS/QSPyClient" }, "release_url": "https://pypi.org/project/quantastor-pkg/1.0.9/", "requires_dist": [ "urllib3" ], "requires_python": "", "summary": "QuantaStor REST API python library", "version": "1.0.9", "yanked": false, "yanked_reason": null }, "last_serial": 6083042, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "735cd79502f8a9833aaff98497ce41ab", "sha256": "aaad37bbbc909734b2fd504cd901f70bdfc8eb536d204436b7b09b96d08770a1" }, "downloads": -1, "filename": "quantastor_pkg-0.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "735cd79502f8a9833aaff98497ce41ab", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 177069, "upload_time": "2019-11-05T20:56:23", "upload_time_iso_8601": "2019-11-05T20:56:23.051417Z", "url": "https://files.pythonhosted.org/packages/b7/fa/50a46ceb8e349e934f6af2a0eb36a8b6b082b782949b8b80950b444e2961/quantastor_pkg-0.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "7e3c6c1f69b695f0d07633fda20c7f85", "sha256": "117015c1a762060fee8f61e66b10d7f1ecea0db67bed3afcbd667e500ff6ea44" }, "downloads": -1, "filename": "quantastor_pkg-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7e3c6c1f69b695f0d07633fda20c7f85", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 175483, "upload_time": "2019-10-22T21:17:06", "upload_time_iso_8601": "2019-10-22T21:17:06.968016Z", "url": "https://files.pythonhosted.org/packages/06/92/c8d6e975ef51b7f106133fe18c54dff870d562da51fc21c608ef5a1a2cc3/quantastor_pkg-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0bc5e3d0a25e731527f3128bc11c117", "sha256": "8efecc707ac9b6af66d38c0c6f3096e1992761d84e261f337ee38dd50222fff9" }, "downloads": -1, "filename": "quantastor-pkg-1.0.0.tar.gz", "has_sig": false, "md5_digest": "a0bc5e3d0a25e731527f3128bc11c117", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90830, "upload_time": "2019-10-22T21:17:08", "upload_time_iso_8601": "2019-10-22T21:17:08.762795Z", "url": "https://files.pythonhosted.org/packages/2f/dd/e13162e5b37a1bb67efc00a64d69842cd4a90e39a6add6157e8940f09ce4/quantastor-pkg-1.0.0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e593c634863844a6a28e6303623b993", "sha256": "cff8234def8334a7842d0c73c386fdfa4926ed9f94a643d8af91489c80827fe6" }, "downloads": -1, "filename": "quantastor_pkg-1-py2-none-any.whl", "has_sig": false, "md5_digest": "3e593c634863844a6a28e6303623b993", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 177006, "upload_time": "2019-10-31T23:55:47", "upload_time_iso_8601": "2019-10-31T23:55:47.535139Z", "url": "https://files.pythonhosted.org/packages/b1/4b/c552837ddc56f8bc1298d7298847661e3c49f28ade3f5a8ca2f3e400f2e1/quantastor_pkg-1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7be4821ffde7c0da5387e9c61668c14", "sha256": "eb49cc1f00f289366f11ef1798784eebcd5b46c2d387e7df588b7b8b59f35085" }, "downloads": -1, "filename": "quantastor_pkg-1-py3-none-any.whl", "has_sig": false, "md5_digest": "e7be4821ffde7c0da5387e9c61668c14", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 177005, "upload_time": "2019-10-31T23:55:49", "upload_time_iso_8601": "2019-10-31T23:55:49.255886Z", "url": "https://files.pythonhosted.org/packages/5f/e2/d60746c4e36c14c381cb79c4b3777384da47cf519af16e45c0a107fc84c6/quantastor_pkg-1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "da4f401c19a8b144374a8fd8bef51cc9", "sha256": "733ca568e1c8055ffeaa6c041842fbfa4398cad1609308af4e1e6edaf09e4e9c" }, "downloads": -1, "filename": "quantastor_pkg-1.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "da4f401c19a8b144374a8fd8bef51cc9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 175504, "upload_time": "2019-10-22T21:56:59", "upload_time_iso_8601": "2019-10-22T21:56:59.234496Z", "url": "https://files.pythonhosted.org/packages/f6/8f/009e155e1eaef918716026ee4de5846c780ab631c0942a49fd0a4d67cf8f/quantastor_pkg-1.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0812350bb196913cafaefd6441b2d89f", "sha256": "812a13b24ef99e624fcbb30fd3322539b56cdf8232a2dd574be6b57365406a9c" }, "downloads": -1, "filename": "quantastor_pkg-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0812350bb196913cafaefd6441b2d89f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 175485, "upload_time": "2019-10-22T21:42:23", "upload_time_iso_8601": "2019-10-22T21:42:23.064226Z", "url": "https://files.pythonhosted.org/packages/40/42/7e8b6bb6cd040647e9a9038f3615c74ae97752c6c147a199e058c5ca1fd0/quantastor_pkg-1.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "108cfc74669246393be84f4c4321dd37", "sha256": "ed503d44e66f9ebcfe022e173b095932ee9563e5a33df0ff96f6ef0538f832fa" }, "downloads": -1, "filename": "quantastor-pkg-1.0.1.tar.gz", "has_sig": false, "md5_digest": "108cfc74669246393be84f4c4321dd37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90850, "upload_time": "2019-10-22T21:42:24", "upload_time_iso_8601": "2019-10-22T21:42:24.549971Z", "url": "https://files.pythonhosted.org/packages/92/9e/32ed9b912fdca222a48ce25e28c4a44273bbb688cab22c5f03568668ab10/quantastor-pkg-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "da343b73f07020efdfd738d21d138c24", "sha256": "01fe4a2c15eb62b828b47ca69e121b07bba5608c98a3f6c92650c21ebcfce536" }, "downloads": -1, "filename": "quantastor_pkg-1.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "da343b73f07020efdfd738d21d138c24", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 175518, "upload_time": "2019-10-22T22:23:50", "upload_time_iso_8601": "2019-10-22T22:23:50.676784Z", "url": "https://files.pythonhosted.org/packages/0e/8c/c3d36261fae0769d25e60fe5f3c279583b9209f8b33cc94469db9ac9fc60/quantastor_pkg-1.0.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa9e5102e6fabd94e9f9f2c30d8fd0b1", "sha256": "f4396c6071b40c9da6c9ffda7d40891061e470523d33fa7e06d81ebe7aea830b" }, "downloads": -1, "filename": "quantastor_pkg-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "aa9e5102e6fabd94e9f9f2c30d8fd0b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 175518, "upload_time": "2019-10-22T22:23:52", "upload_time_iso_8601": "2019-10-22T22:23:52.212503Z", "url": "https://files.pythonhosted.org/packages/7a/1c/d6dd6422afd53805ec9764cae444f7172833a7106cb56ddebc67c0aaa4f5/quantastor_pkg-1.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b2698c63953b28c40b81fd761a62f8a", "sha256": "2f924de4d8f2a68c283c67e58a8c75d0add0d83272d2435512681de6d6d0154d" }, "downloads": -1, "filename": "quantastor-pkg-1.0.2.tar.gz", "has_sig": false, "md5_digest": "6b2698c63953b28c40b81fd761a62f8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90914, "upload_time": "2019-10-22T22:23:53", "upload_time_iso_8601": "2019-10-22T22:23:53.658803Z", "url": "https://files.pythonhosted.org/packages/74/9c/646242b5027286a340ebe20935bb394bfc83ab8d7b0ea22c0346339b3948/quantastor-pkg-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "701fee89d3bc8371df7d2c587ed6c0a8", "sha256": "5fdbbce9ca98e9223ad78698cc3f7a285d4ba4032df925414f419fbfe6bfb180" }, "downloads": -1, "filename": "quantastor_pkg-1.0.3-py2-none-any.whl", "has_sig": false, "md5_digest": "701fee89d3bc8371df7d2c587ed6c0a8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 175514, "upload_time": "2019-10-22T22:59:28", "upload_time_iso_8601": "2019-10-22T22:59:28.305624Z", "url": "https://files.pythonhosted.org/packages/73/8b/c46c2e70ab0e5291762862b3e069a36fe6a214f354fcc83e5ff471c9a0ae/quantastor_pkg-1.0.3-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6947edf45b216d9385ad4323a828a1f2", "sha256": "45fc29c7da96d203b37d3a771e85585162cf601aa56f73dd3166153d05fb07ec" }, "downloads": -1, "filename": "quantastor_pkg-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "6947edf45b216d9385ad4323a828a1f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 175515, "upload_time": "2019-10-22T22:59:30", "upload_time_iso_8601": "2019-10-22T22:59:30.084172Z", "url": "https://files.pythonhosted.org/packages/25/f8/e34dbbf051a45e70651e457312c97303f4e535eeeb1be0bd10b04c28f227/quantastor_pkg-1.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e1b3540e87cd28c75983a6722c4a529", "sha256": "e14cf2135193d74c677e42ae882359f5cbd3412a8b3d875ed1d31b3ea3de85bc" }, "downloads": -1, "filename": "quantastor-pkg-1.0.3.tar.gz", "has_sig": false, "md5_digest": "7e1b3540e87cd28c75983a6722c4a529", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90890, "upload_time": "2019-10-22T22:59:31", "upload_time_iso_8601": "2019-10-22T22:59:31.879270Z", "url": "https://files.pythonhosted.org/packages/5d/23/415d6d91ff2f38671ba7108e6d27371eae1615ee591327a2f36fd5bf7a80/quantastor-pkg-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "9763b9278eb41ce1fe6f37e68f6913ca", "sha256": "60ab33f9b1cd8219b1eba6694efb4e14bac8a6b2622c64bb42bc7f0a19ab3abb" }, "downloads": -1, "filename": "quantastor_pkg-1.0.4-py2-none-any.whl", "has_sig": false, "md5_digest": "9763b9278eb41ce1fe6f37e68f6913ca", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 176829, "upload_time": "2019-10-23T01:03:34", "upload_time_iso_8601": "2019-10-23T01:03:34.210391Z", "url": "https://files.pythonhosted.org/packages/14/49/7a8a2fdb818c33d31431b8e1f89b12818a50581f4b4e8f9f677e76cfb613/quantastor_pkg-1.0.4-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efee1d71654fe00b4673b639ebc97f6c", "sha256": "c1064fb9c419c2002bd9295b634b786eaaf47ebd5725465f2e36f10031b754cb" }, "downloads": -1, "filename": "quantastor_pkg-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "efee1d71654fe00b4673b639ebc97f6c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 176828, "upload_time": "2019-10-23T01:03:35", "upload_time_iso_8601": "2019-10-23T01:03:35.709515Z", "url": "https://files.pythonhosted.org/packages/ad/ba/e4ee55b31575da7800c6ffc63cefac3b491f6a130ec14a37ebc31be27e79/quantastor_pkg-1.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0763a75e7f6719b27970538d310bd8c4", "sha256": "8c6de1c49942b3b7f8a8d46c98a98a517ead2fac2e2f1ebfa60846db2d4e547b" }, "downloads": -1, "filename": "quantastor-pkg-1.0.4.tar.gz", "has_sig": false, "md5_digest": "0763a75e7f6719b27970538d310bd8c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91482, "upload_time": "2019-10-23T01:03:37", "upload_time_iso_8601": "2019-10-23T01:03:37.588504Z", "url": "https://files.pythonhosted.org/packages/20/fd/f74a695bf09f03dbf50bd2b5e736cde94fb0395d42282923f6c626dd3c96/quantastor-pkg-1.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "92734519c79c92da1a141b02ddde37f2", "sha256": "7d40622b81333c24ecb2ab89975e13c6e5842f303c8875ea994104e78a2e7374" }, "downloads": -1, "filename": "quantastor_pkg-1.0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "92734519c79c92da1a141b02ddde37f2", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 177065, "upload_time": "2019-10-25T18:02:30", "upload_time_iso_8601": "2019-10-25T18:02:30.066859Z", "url": "https://files.pythonhosted.org/packages/69/05/05655b9d3525b7b5ec5351291714f0fb3034551f204cc0f66b274e3a35b4/quantastor_pkg-1.0.5-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6e27d3caee44dca556fb8799f112b3e", "sha256": "d9298e00e61d52a9b46f49707e7205cedf9dad56d71204848c99b4408377f08f" }, "downloads": -1, "filename": "quantastor_pkg-1.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "c6e27d3caee44dca556fb8799f112b3e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 177065, "upload_time": "2019-10-25T18:02:32", "upload_time_iso_8601": "2019-10-25T18:02:32.003217Z", "url": "https://files.pythonhosted.org/packages/44/f8/ee22d913b2084ae518e113fab09bb5c713ff7576267d30df459f54249264/quantastor_pkg-1.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44071c88901f664e74b7b58e1e06b9d2", "sha256": "4f387705e165f38fcce3fe754d3bb0f4ef8a3f03c5a4a10974036a84fb2403ef" }, "downloads": -1, "filename": "quantastor-pkg-1.0.5.tar.gz", "has_sig": false, "md5_digest": "44071c88901f664e74b7b58e1e06b9d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91662, "upload_time": "2019-10-25T18:02:33", "upload_time_iso_8601": "2019-10-25T18:02:33.429495Z", "url": "https://files.pythonhosted.org/packages/89/e4/16fe3a3b44150f3c3a16794268993898342cd2ac5b1bf4769cc6b2b1c099/quantastor-pkg-1.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "d751372aae62876c3c6b301d09112b31", "sha256": "ff14370227552ad0394107ee256b4de66b683758a170ec4b439f6efe20c479d9" }, "downloads": -1, "filename": "quantastor_pkg-1.0.6-py2-none-any.whl", "has_sig": false, "md5_digest": "d751372aae62876c3c6b301d09112b31", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 177062, "upload_time": "2019-11-01T00:04:42", "upload_time_iso_8601": "2019-11-01T00:04:42.791137Z", "url": "https://files.pythonhosted.org/packages/33/b8/41a111ecd8d04c9164bdfb4b82e1354d30ca3c57477f289d6cf9142f0d6a/quantastor_pkg-1.0.6-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ec680d024038d97fba4a0578aaf6029", "sha256": "c5eacd11841c10ad030f56959644323a7a464125ac2814a6480ac1556463153b" }, "downloads": -1, "filename": "quantastor_pkg-1.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "4ec680d024038d97fba4a0578aaf6029", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 177063, "upload_time": "2019-11-01T00:04:44", "upload_time_iso_8601": "2019-11-01T00:04:44.652287Z", "url": "https://files.pythonhosted.org/packages/5a/b4/eb01260b7b034b008d285bcb53eca08abf855800de6c290d4541ee94dc56/quantastor_pkg-1.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2068d24caafbe5de2ce9e6ef590c8913", "sha256": "3f484c822e0b8c78c9bc0dfc07d8ff4876a6d27120a28d8f52002e54517b257b" }, "downloads": -1, "filename": "quantastor-pkg-1.0.6.tar.gz", "has_sig": false, "md5_digest": "2068d24caafbe5de2ce9e6ef590c8913", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91630, "upload_time": "2019-11-01T00:04:46", "upload_time_iso_8601": "2019-11-01T00:04:46.501103Z", "url": "https://files.pythonhosted.org/packages/b3/5b/550ad5d29d7849b41d666e1f2bae29ec2ef93bc75edc9521868db7a7a118/quantastor-pkg-1.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "2771294417fef3fcd9dda714a17bd9fc", "sha256": "60db0d55197b4c8a08bf352ef13ff8d57a9d66251c28eeb4f6f28000ceae5dd3" }, "downloads": -1, "filename": "quantastor_pkg-1.0.7-py2-none-any.whl", "has_sig": false, "md5_digest": "2771294417fef3fcd9dda714a17bd9fc", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 177062, "upload_time": "2019-11-01T00:15:00", "upload_time_iso_8601": "2019-11-01T00:15:00.230120Z", "url": "https://files.pythonhosted.org/packages/4d/0a/b057a8fca29c470c7fa5475ffd20d15b92feea52fcc329f4b09a5c30e0d4/quantastor_pkg-1.0.7-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d914803238134388e5b0a08e9adf42a", "sha256": "2ba4094c59a6d8a38a6292c5e6325b739c83ea7fbe4261a1738fd7cf0e613e4a" }, "downloads": -1, "filename": "quantastor_pkg-1.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "9d914803238134388e5b0a08e9adf42a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 177063, "upload_time": "2019-11-01T00:15:02", "upload_time_iso_8601": "2019-11-01T00:15:02.076617Z", "url": "https://files.pythonhosted.org/packages/64/88/5154fe45d65f2541f5fb3fe44d44f816c5b7a2c1dc124a59fd51488b89fd/quantastor_pkg-1.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12627498f0122f3e65b8355b8b32c3bb", "sha256": "59124d30422dc62127230136a46b8b2b49d6d2a34983093f1580720892c89fd4" }, "downloads": -1, "filename": "quantastor-pkg-1.0.7.tar.gz", "has_sig": false, "md5_digest": "12627498f0122f3e65b8355b8b32c3bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91623, "upload_time": "2019-11-01T00:15:03", "upload_time_iso_8601": "2019-11-01T00:15:03.747684Z", "url": "https://files.pythonhosted.org/packages/26/cb/204a76604343bd76c84befc0abee1617fb74adf61ceb80c3951cf34318fb/quantastor-pkg-1.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "0a101ba57db98a282ef72342978f78bc", "sha256": "c5e79d3e7da64123df8d62ee3f6310d10d03c8a614f19df0bd48f069c9643f39" }, "downloads": -1, "filename": "quantastor_pkg-1.0.8-py2-none-any.whl", "has_sig": false, "md5_digest": "0a101ba57db98a282ef72342978f78bc", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 177063, "upload_time": "2019-11-05T18:33:50", "upload_time_iso_8601": "2019-11-05T18:33:50.820118Z", "url": "https://files.pythonhosted.org/packages/27/27/aeebe02a202e5a1d22553a0803588e1f8a5ff304f73955d5d9c70c008015/quantastor_pkg-1.0.8-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc6afa61247c045c8f8c50f58c358bcb", "sha256": "5d62054ad54729d818b03016126338078c68ead706bc066c4037465a6815e9b6" }, "downloads": -1, "filename": "quantastor_pkg-1.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "cc6afa61247c045c8f8c50f58c358bcb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 177061, "upload_time": "2019-11-05T18:33:52", "upload_time_iso_8601": "2019-11-05T18:33:52.813007Z", "url": "https://files.pythonhosted.org/packages/bf/39/d18b69b314fa3dd02898a0f0c53973790fe0b026dd06be1cb966f3317a02/quantastor_pkg-1.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93caa9c8d5686f38bd7f9796fcd444f9", "sha256": "e934bb2331a345d35b6ef7462003dcffd533b460a0a27bb11cb6dc39921b25e1" }, "downloads": -1, "filename": "quantastor-pkg-1.0.8.tar.gz", "has_sig": false, "md5_digest": "93caa9c8d5686f38bd7f9796fcd444f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91637, "upload_time": "2019-11-05T18:33:54", "upload_time_iso_8601": "2019-11-05T18:33:54.275104Z", "url": "https://files.pythonhosted.org/packages/8f/bf/4cece88bc75dfce4b89e06560e6300e49bf7629feaa91032e844aac06107/quantastor-pkg-1.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "a166cac2b6ba356551621757f55b20ed", "sha256": "e6462383cec13cd1c70f96dc35df3cb29517de45b153726aec4b7829966a68a8" }, "downloads": -1, "filename": "quantastor_pkg-1.0.9-py2-none-any.whl", "has_sig": false, "md5_digest": "a166cac2b6ba356551621757f55b20ed", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 177062, "upload_time": "2019-11-05T20:31:47", "upload_time_iso_8601": "2019-11-05T20:31:47.326402Z", "url": "https://files.pythonhosted.org/packages/1f/ad/092c93367a99feb6bbb9b281ccaa62603c083d227c9cb60ed079b08657d5/quantastor_pkg-1.0.9-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b68fcddc98f96ef96df2d55b896a152", "sha256": "91410167ad61c5d2148dca2557fd65c1a9326cbe564ab87a7274c0a06a5ce2dc" }, "downloads": -1, "filename": "quantastor_pkg-1.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "6b68fcddc98f96ef96df2d55b896a152", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 177061, "upload_time": "2019-11-05T20:31:49", "upload_time_iso_8601": "2019-11-05T20:31:49.357826Z", "url": "https://files.pythonhosted.org/packages/b1/12/f004b5030cf111cce85ec90308debe2c08709ae599ed1e6414a2639b5f3a/quantastor_pkg-1.0.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e826cd8c86f1be5220068b81c7ab7f34", "sha256": "ecd80d315a9dc16bb765674a2a1a88e376d05c20bcb835e2a9a4fae8af4f8079" }, "downloads": -1, "filename": "quantastor-pkg-1.0.9.tar.gz", "has_sig": false, "md5_digest": "e826cd8c86f1be5220068b81c7ab7f34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91637, "upload_time": "2019-11-05T20:31:51", "upload_time_iso_8601": "2019-11-05T20:31:51.270630Z", "url": "https://files.pythonhosted.org/packages/11/35/86a2049fc65e3c95c02ccd40cf28c14a187fe7b09d19a0a6f80fb2155cba/quantastor-pkg-1.0.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a166cac2b6ba356551621757f55b20ed", "sha256": "e6462383cec13cd1c70f96dc35df3cb29517de45b153726aec4b7829966a68a8" }, "downloads": -1, "filename": "quantastor_pkg-1.0.9-py2-none-any.whl", "has_sig": false, "md5_digest": "a166cac2b6ba356551621757f55b20ed", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 177062, "upload_time": "2019-11-05T20:31:47", "upload_time_iso_8601": "2019-11-05T20:31:47.326402Z", "url": "https://files.pythonhosted.org/packages/1f/ad/092c93367a99feb6bbb9b281ccaa62603c083d227c9cb60ed079b08657d5/quantastor_pkg-1.0.9-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b68fcddc98f96ef96df2d55b896a152", "sha256": "91410167ad61c5d2148dca2557fd65c1a9326cbe564ab87a7274c0a06a5ce2dc" }, "downloads": -1, "filename": "quantastor_pkg-1.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "6b68fcddc98f96ef96df2d55b896a152", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 177061, "upload_time": "2019-11-05T20:31:49", "upload_time_iso_8601": "2019-11-05T20:31:49.357826Z", "url": "https://files.pythonhosted.org/packages/b1/12/f004b5030cf111cce85ec90308debe2c08709ae599ed1e6414a2639b5f3a/quantastor_pkg-1.0.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e826cd8c86f1be5220068b81c7ab7f34", "sha256": "ecd80d315a9dc16bb765674a2a1a88e376d05c20bcb835e2a9a4fae8af4f8079" }, "downloads": -1, "filename": "quantastor-pkg-1.0.9.tar.gz", "has_sig": false, "md5_digest": "e826cd8c86f1be5220068b81c7ab7f34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91637, "upload_time": "2019-11-05T20:31:51", "upload_time_iso_8601": "2019-11-05T20:31:51.270630Z", "url": "https://files.pythonhosted.org/packages/11/35/86a2049fc65e3c95c02ccd40cf28c14a187fe7b09d19a0a6f80fb2155cba/quantastor-pkg-1.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }