{ "info": { "author": "Clancy Group", "author_email": "ClancyLabJHU@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: Other/Proprietary License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "Squid\n==============================\n\nSquid is an open-source molecular simulation codebase developed by the Clancy Lab at the Johns Hopkins University. The codebase includes simplified Molecular Dynamics (MD) and Density Functional Theory (DFT) simulation submission, as well as other utilities such as file I/O and post-processing.\n\n\nInstalling\n------------------------------\n\nFor most, the easiest way to install squid is to use pip install:\n\n.. code-block:: bash\n\n [user@local]~% pip install clancylab-squid\n\n\nIf you wish, you may also clone the repository though:\n\n.. code-block:: bash\n\n [user@local]~% cd ~; git clone https://github.com/ClancyLab/squid.git\n\n\nNote, you will need various additional software to fully take advantage of squid. We include some helper scripts to aid you in setting up these files; however, these are not robust and we do encourage you to setup your own development environment. Nevertheless, if you so choose, the following information may be of use:\n\n**Setup on Ubuntu**\n\n1. Ensure that your system is up-to-date with relevant softare. The following commands will help.\n\n.. code-block:: bash\n\n [user@local]~% sudo apt-get update\n [user@local]~% sudo apt-get upgrade\n [user@local]~% sudo apt-get install build-essential make cmake g++ git swig mpich lmod\n\n\n2. As the above line installs lmod, we have found that there may be a bug in the default install. If you find that when you open a terminal you are getting a weird error about posix not existing, this is a bug in lua install. Simply put, take the path it wants and make a simlink to point to posix_c.so. An example of how to do this is as follows (note, your lua version and directories may or may not be the same).\n\n.. code-block:: bash\n\n [user@local]~% sudo ln -s /usr/lib/x86_64-linux-gnu/lua/5.2/posix_c.so /usr/lib/x86_64-linux-gnu/lua/5.2/posix.so\n\n\n3. Setup your directories. In this case, we want all programs installed to the *~/programs folder*, and all modules installed to *~/.modules*.\n\n.. code-block:: bash\n\n [user@local]~% mkdir ~/programs; mkdir ~/.modules\n\n\n4. Setup a default environment file for lmod. In this case, we are making an empty one.\n\n.. code-block:: bash\n\n [user@local]~% touch ~/.modules/StdEnv.lua\n\n\n5. Ensure that lmod is setup. This can be done by ensuring that the *~/.bashrc* is updated accordingly. Note, do not blindly copy, but understand what the following lines of code do!\n\n.. code-block:: bash\n\n # LMOD Setup\n if [ -f /usr/share/lmod/6.6/init/bash ]; then\n . /usr/share/lmod/6.6/init/bash\n fi\n module use /home/$USER/.modules\n if [ -z \"$__Init_Default_Modules\" ]; then\n export __Init_Default_Modules=1;\n\n LMOD_SYSTEM_DEFAULT_MODULES=${LMOD_SYSTEM_DEFAULT_MODULES:-\"StdEnv\"}\n export LMOD_SYSTEM_DEFAULT_MODULES\n module --initial_load --no_redirect restore\n else\n module refresh\n fi\n\n\n6. Install as much as possible from squid. This can be done by running the following command:\n\n.. code-block:: python\n\n import os\n from squid.installers import *\n\n # Get relevant path information\n home_folder = os.path.expanduser(\"~\")\n program_folder = \"%s/programs\" % home_folder\n module_folder = \"%s/.modules\" % home_folder\n if not os.path.exists(program_folder):\n os.makedirs(program_folder, exist_ok=True)\n if not os.path.exists(module_folder):\n os.makedirs(module_folder, exist_ok=True)\n\n # As we plan to get orca/4.2.0, we need openmpi/3.1.4\n openmpi_installer(program_folder, \"3.1.4\", module_folder)\n\n\n7. Note, because you may want some programs for others, it is recommended that you first setup openmpi, as above, then return to install the others. This requires that you also load the openmpi module before compiling the next programs.\n\n.. code-block:: python\n\n import os\n from squid.installers import *\n\n # Get relevant path information\n home_folder = os.path.expanduser(\"~\")\n program_folder = \"%s/programs\" % home_folder\n module_folder = \"%s/.modules\" % home_folder\n if not os.path.exists(program_folder):\n os.makedirs(program_folder, exist_ok=True)\n if not os.path.exists(module_folder):\n os.makedirs(module_folder, exist_ok=True)\n\n # LAMMPS has many install options. Here we simplify things.\n # Note, we can only choose between mpi or serial.\n # Note, \"16Mar18_mpi\" is the name of the module in the lammps\n # submodule folder. Be unique!\n lammps_installer(\n program_folder, \"16Mar18\", \"mpi\", \"16Mar18_mpi\",\n compiler=\"mpicxx\",\n extra_lammps_packages=[\n \"RIGID\", \"PYTHON\", \"REPLICA\", \"USER-MISC\", \"USER-REAXC\"],\n smrff_path=None,\n MODULEDIR=module_folder\n )\n\n # Install packmol\n packmol_installer(program_folder, module_folder)\n\n # Install nlopt\n nlopt_installer(program_folder, \"2.6.1\", module_folder)\n\n\n8. Download Orca from https://orcaforum.kofo.mpg.de/app.php/dlext/ (note, you'll have to register), and make your own orca module. An example is listed below (it would be saved in the modules folder as a .lua file.)\n\n.. code-block:: bash\n\n help([[\n For detailed instructions, go to:\n https://orcaforum.cec.mpg.de/\n\n ]])\n whatis(\"Version: 4.2.0\")\n whatis(\"Keywords: Orca 4\")\n whatis(\"URL: https://orcaforum.cec.mpg.de/\")\n whatis(\"Description: Orca 4\")\n\n load(\"openmpi/3.1.4\")\n\n prepend_path(\"PATH\", \"/home/username/programs/orca/4.2.0\")\n prepend_path(\"LD_LIBRARY_PATH\", \"/home/username/programs/orca/4.2.0\")\n\n\nContributing\n------------------------------\n\nIf you would like to be an active developer within the Clancy Group, please contact the project maintainer to be added as a collaborator on the project. Otherwise, you are welcome to submit pull requests as you see fit, and they will be addressed.\n\nDocumentation\n------------------------------\n\nDocumentation is necessary, and the following steps MUST be followed during contribution of new code:\n\n**Setup**\n\n1. Download Sphinx_. This can be done simply if you have pip_ installed via `pip install -U Sphinx`\n\n2. Wherever you have *squid* installed, you want another folder called *squid-docs* (NOT as a subfolder of squid).\n\n.. code-block:: bash\n\n\t[user@local]~% cd ~; mkdir squid-docs; cd squid-docs; git clone -b gh-pages git@github.com:clancylab/squid.git html\n\n\n3. Forever more just ignore that directory (don't delete it though)\n\n**Adding Documentation**\n\nDocumentation is done using ReStructuredText_ format docstrings, the Sphinx_ python package, and indices with autodoc extensions. To add more documentation, first add the file to be included in `docs/source/conf.py` under `os.path.abspath('example/dir/to/script.py')`. Secondly, ensure that you have proper docstrings in the python file, and finally run `make full` to re-generate the documentation and commit it to your local branch, as well as the git *gh-pages* branch.\n\nFor anymore information on documentation, the tutorial follwed can be found here_.\n\n.. _tutorial: https://www.atlassian.com/git/tutorials/using-branches/git-branch\n.. _Sphinx: http://www.sphinx-doc.org/en/stable/\n.. _pip: https://pip.pypa.io/en/stable/installing/\n.. _ReStructuredText: http://docutils.sourceforge.net/docs/user/rst/quickref.html\n.. _here: https://daler.github.io/sphinxdoc-test/includeme.html\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/clancylab/squid", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "clancyLab-squid", "package_url": "https://pypi.org/project/clancyLab-squid/", "platform": "", "project_url": "https://pypi.org/project/clancyLab-squid/", "project_urls": { "Homepage": "https://github.com/clancylab/squid" }, "release_url": "https://pypi.org/project/clancyLab-squid/2.1.6/", "requires_dist": [ "pyDOE", "numpy", "scipy", "psutil" ], "requires_python": "", "summary": "A set of modules to aid in atomistic and molecular simulations.", "version": "2.1.6", "yanked": false, "yanked_reason": null }, "last_serial": 7121749, "releases": { "2.0.1": [ { "comment_text": "", "digests": { "md5": "e295e3c961cf926b47057025881effa1", "sha256": "3747378fa583d5200c2eb30380d9705b55dfe5056b05076004b63995cdf8105c" }, "downloads": -1, "filename": "clancyLab_squid-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e295e3c961cf926b47057025881effa1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 352409, "upload_time": "2019-07-18T17:06:04", "upload_time_iso_8601": "2019-07-18T17:06:04.276552Z", "url": "https://files.pythonhosted.org/packages/de/af/edd91ce4576f9900bedd1759d43188c5c023a515fc68fadabd628d773fa6/clancyLab_squid-2.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.10": [ { "comment_text": "", "digests": { "md5": "6d8ae215dbad340383c68a72dc057c89", "sha256": "fbf6ebb967ed478704e32aa82cb1f23aad6d4233c94c6674c26b6309264c4158" }, "downloads": -1, "filename": "clancyLab_squid-2.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "6d8ae215dbad340383c68a72dc057c89", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356034, "upload_time": "2019-07-24T16:31:28", "upload_time_iso_8601": "2019-07-24T16:31:28.726011Z", "url": "https://files.pythonhosted.org/packages/c4/e2/b04e8bb51db4567111c4c4d30f21b6b9a0260a2917ea671d04bf9706cdec/clancyLab_squid-2.0.10-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.11": [ { "comment_text": "", "digests": { "md5": "30d55f2920550e2eedceb57785a9714e", "sha256": "10c5c95fd4300bbd0f6bb5c864ab4cab932369cfd9e8179ad85bef66b2fde3dd" }, "downloads": -1, "filename": "clancyLab_squid-2.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "30d55f2920550e2eedceb57785a9714e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356038, "upload_time": "2019-07-25T14:31:53", "upload_time_iso_8601": "2019-07-25T14:31:53.573075Z", "url": "https://files.pythonhosted.org/packages/63/8f/812af1558404755828af9209d5272f5ea6d6252e094ac53d90329645e6f8/clancyLab_squid-2.0.11-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.12": [ { "comment_text": "", "digests": { "md5": "17d686b58e885f57c5510c837d7643af", "sha256": "5606f8ec52db5280094dc347ab8b2bff096cd7a81fb8f501c48daa7709975815" }, "downloads": -1, "filename": "clancyLab_squid-2.0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "17d686b58e885f57c5510c837d7643af", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356407, "upload_time": "2019-07-25T19:33:39", "upload_time_iso_8601": "2019-07-25T19:33:39.840197Z", "url": "https://files.pythonhosted.org/packages/d7/2e/aaf249382a3ea1aa6125ef62f7f43c5170c2f14b453fce88004d20a0c9f2/clancyLab_squid-2.0.12-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.13": [ { "comment_text": "", "digests": { "md5": "c0663796adced700d0746bf0d1a2c9c3", "sha256": "2b507c5876b8dee022e094ddf76d781189c85178f774bf3e2f1d4f6e0fd1662f" }, "downloads": -1, "filename": "clancyLab_squid-2.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "c0663796adced700d0746bf0d1a2c9c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356412, "upload_time": "2019-07-25T21:04:01", "upload_time_iso_8601": "2019-07-25T21:04:01.198043Z", "url": "https://files.pythonhosted.org/packages/92/e2/3495a367579f5e328f8465672876867cf5540cae24b51b52fe2ba83b7a11/clancyLab_squid-2.0.13-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.14": [ { "comment_text": "", "digests": { "md5": "4479deb543f90836c9448b4b04ede5b7", "sha256": "ec6baf4b2aa9a0c002a6278228eb31705dc45f12b261d8ebc03be9d84ea35331" }, "downloads": -1, "filename": "clancyLab_squid-2.0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "4479deb543f90836c9448b4b04ede5b7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356408, "upload_time": "2019-07-29T13:10:41", "upload_time_iso_8601": "2019-07-29T13:10:41.277935Z", "url": "https://files.pythonhosted.org/packages/c6/81/f7a1bd9ce0ec6eca3abb2d20a6448b35275a9484da456a90df253c53218a/clancyLab_squid-2.0.14-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.15": [ { "comment_text": "", "digests": { "md5": "69e0a01fc9e8f8275e702791207eaaff", "sha256": "36b5e037edc0fce56f5bf061af65ee244c71d543ef2cbb3ba573484619641101" }, "downloads": -1, "filename": "clancyLab_squid-2.0.15-py3-none-any.whl", "has_sig": false, "md5_digest": "69e0a01fc9e8f8275e702791207eaaff", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356503, "upload_time": "2019-08-02T18:19:26", "upload_time_iso_8601": "2019-08-02T18:19:26.450782Z", "url": "https://files.pythonhosted.org/packages/e9/ba/55d8f8bfeba072adc933c69d2f9eac093d9a0d0e0c273a66ef332d8d7abb/clancyLab_squid-2.0.15-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.16": [ { "comment_text": "", "digests": { "md5": "4a544fcc1388352a71a8a983a6962877", "sha256": "3c932ee1eb35b3c58afbc949b5b11fc6a26343d7fb0a9c5d82c4b78d2abd9170" }, "downloads": -1, "filename": "clancyLab_squid-2.0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "4a544fcc1388352a71a8a983a6962877", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356660, "upload_time": "2019-08-02T18:32:05", "upload_time_iso_8601": "2019-08-02T18:32:05.503659Z", "url": "https://files.pythonhosted.org/packages/f2/48/9cde0bbc26fdc0268f3de3e53c15a082d4c8365cb7e94eb308f8dd9c497c/clancyLab_squid-2.0.16-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.17": [ { "comment_text": "", "digests": { "md5": "2c200fbe2b7ef76957c8ae16c1f0a320", "sha256": "4168ac4341cccb858c5a3994a0fa1f05192fccd74d6f69274e1d245bf81cc724" }, "downloads": -1, "filename": "clancyLab_squid-2.0.17-py3-none-any.whl", "has_sig": false, "md5_digest": "2c200fbe2b7ef76957c8ae16c1f0a320", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356737, "upload_time": "2019-08-02T19:56:03", "upload_time_iso_8601": "2019-08-02T19:56:03.438080Z", "url": "https://files.pythonhosted.org/packages/0b/fd/88601063c058c31464e96106e20f09b55cc0b74a078609a668d11a6b2e30/clancyLab_squid-2.0.17-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.18": [ { "comment_text": "", "digests": { "md5": "3b7f5073105c0715a8ad95dd6fdee2f5", "sha256": "5e298abf54b554dc891f33cde32ea74ee63413706e0df0ceb68490b48b225551" }, "downloads": -1, "filename": "clancyLab_squid-2.0.18-py3-none-any.whl", "has_sig": false, "md5_digest": "3b7f5073105c0715a8ad95dd6fdee2f5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356763, "upload_time": "2019-08-05T18:59:26", "upload_time_iso_8601": "2019-08-05T18:59:26.365728Z", "url": "https://files.pythonhosted.org/packages/1b/48/b25dca90dce1a8d8e940c08af3d2ad4553723b98eef111900cd1116dbf32/clancyLab_squid-2.0.18-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.19": [ { "comment_text": "", "digests": { "md5": "58ec29855794895d7ba86b2f479e2f2f", "sha256": "7c3d8cbfadab4b4d176914fde94618365c3c2437d06a47ee827a81f1891acb64" }, "downloads": -1, "filename": "clancyLab_squid-2.0.19-py3-none-any.whl", "has_sig": false, "md5_digest": "58ec29855794895d7ba86b2f479e2f2f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356864, "upload_time": "2019-08-05T21:05:11", "upload_time_iso_8601": "2019-08-05T21:05:11.250576Z", "url": "https://files.pythonhosted.org/packages/26/f6/8f20f77b399da1956624e0f1bcb5013788ff0a00ae5d6500ab812de63491/clancyLab_squid-2.0.19-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "987c848361eac74ba4e457b9591ee0ae", "sha256": "098d9732c41668e5e5e51a2949cf8b1c30ca20d8024aafea31916f9c0e1a05f9" }, "downloads": -1, "filename": "clancyLab_squid-2.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "987c848361eac74ba4e457b9591ee0ae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 352440, "upload_time": "2019-07-18T19:58:26", "upload_time_iso_8601": "2019-07-18T19:58:26.345076Z", "url": "https://files.pythonhosted.org/packages/b3/5a/322896a196fd38c529ba270b02901f118ea51bdba177b716c0f788001a5c/clancyLab_squid-2.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.20": [ { "comment_text": "", "digests": { "md5": "e47accbc1f5b2b25ad2c459a5569c146", "sha256": "7e8a19322a81ecd84a57b2977fd664b4e029dfaede99cceec5d6d9a984df3b6c" }, "downloads": -1, "filename": "clancyLab_squid-2.0.20-py3-none-any.whl", "has_sig": false, "md5_digest": "e47accbc1f5b2b25ad2c459a5569c146", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356853, "upload_time": "2019-08-07T12:59:56", "upload_time_iso_8601": "2019-08-07T12:59:56.662868Z", "url": "https://files.pythonhosted.org/packages/41/9c/829bccafff0c967f3b1a74d3f401231e8b428bd257116891e9f10da8beb2/clancyLab_squid-2.0.20-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.23": [ { "comment_text": "", "digests": { "md5": "589318dc7305addaeb3dda302a9eba87", "sha256": "b689f0811d965ac0512b67b6b0de22008ef99b3833bab750289fd99f1f0e4418" }, "downloads": -1, "filename": "clancyLab_squid-2.0.23-py3-none-any.whl", "has_sig": false, "md5_digest": "589318dc7305addaeb3dda302a9eba87", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 357678, "upload_time": "2019-08-12T17:24:47", "upload_time_iso_8601": "2019-08-12T17:24:47.901734Z", "url": "https://files.pythonhosted.org/packages/de/be/71de2098059f058a11f51dcd7b8b64f080cd81ce70543ca2ffffa30d305a/clancyLab_squid-2.0.23-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.24": [ { "comment_text": "", "digests": { "md5": "91c0dcd3dfe1683e6f766aed75a5ede4", "sha256": "4bcbb4bf0d36cdd893a94d1a96829c823681e09dffcfcd8220dae861e4f7fc1a" }, "downloads": -1, "filename": "clancyLab_squid-2.0.24-py3-none-any.whl", "has_sig": false, "md5_digest": "91c0dcd3dfe1683e6f766aed75a5ede4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 357685, "upload_time": "2019-08-12T20:56:06", "upload_time_iso_8601": "2019-08-12T20:56:06.703537Z", "url": "https://files.pythonhosted.org/packages/97/88/0dbb6401855cd8c0d7be0421d743813e07f9b495b574172e5cf269a9e966/clancyLab_squid-2.0.24-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.25": [ { "comment_text": "", "digests": { "md5": "6e7c40c19b35d0ba50cea1d211687b38", "sha256": "fd600e0da55978cabaf4a9a9ca621535d785cebc276fd7f0a216d406c236501c" }, "downloads": -1, "filename": "clancyLab_squid-2.0.25-py3-none-any.whl", "has_sig": false, "md5_digest": "6e7c40c19b35d0ba50cea1d211687b38", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 358839, "upload_time": "2019-08-22T21:01:06", "upload_time_iso_8601": "2019-08-22T21:01:06.063700Z", "url": "https://files.pythonhosted.org/packages/07/3e/84603b3f010d26328b9602bbaff47a15177818a58ab54e96ab8c7bad558a/clancyLab_squid-2.0.25-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.26": [ { "comment_text": "", "digests": { "md5": "dad309dd97ce1de042753128c07ac1d7", "sha256": "1278e2d7b06fb381766ebde941584f95a49007c7d2cb732fcf9a4b69aff20b08" }, "downloads": -1, "filename": "clancyLab_squid-2.0.26-py3-none-any.whl", "has_sig": false, "md5_digest": "dad309dd97ce1de042753128c07ac1d7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 358909, "upload_time": "2019-08-27T16:20:40", "upload_time_iso_8601": "2019-08-27T16:20:40.018931Z", "url": "https://files.pythonhosted.org/packages/fb/0e/32aa260d85ebb0bc6748978999d5f02b0388c2064fe16560a20e61b8bcbe/clancyLab_squid-2.0.26-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.27": [ { "comment_text": "", "digests": { "md5": "497e4ff0a2be4ef6b0fcc04128cf86db", "sha256": "bbd8d4a37c486145d658edfd88bc572c4159ae441882d572a2a7c10be3373b7d" }, "downloads": -1, "filename": "clancyLab_squid-2.0.27-py3-none-any.whl", "has_sig": false, "md5_digest": "497e4ff0a2be4ef6b0fcc04128cf86db", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 360443, "upload_time": "2019-08-27T19:39:52", "upload_time_iso_8601": "2019-08-27T19:39:52.899249Z", "url": "https://files.pythonhosted.org/packages/35/d8/a9bb8810e3688a98f0b0145d426a2f36fd4a588cf48328d485147cf7afa5/clancyLab_squid-2.0.27-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.28": [ { "comment_text": "", "digests": { "md5": "fc407b6dd2162fecaba63cef16e003d0", "sha256": "173643898da803c2bc9c11606f806a03473d26f47c0cae130e754cf3b030ea47" }, "downloads": -1, "filename": "clancyLab_squid-2.0.28-py3-none-any.whl", "has_sig": false, "md5_digest": "fc407b6dd2162fecaba63cef16e003d0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 360501, "upload_time": "2019-08-27T19:57:56", "upload_time_iso_8601": "2019-08-27T19:57:56.626890Z", "url": "https://files.pythonhosted.org/packages/aa/79/9a3f0606912590c0bc8ed3c3675f1a47e1f3e75d4d75bf29aa577b408808/clancyLab_squid-2.0.28-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "01bd7b5fb9c4724537232f58864c827d", "sha256": "5580440e32d7ab73c807934ed1841ef552f43f91559b7d4a85053d2948d8232c" }, "downloads": -1, "filename": "clancyLab_squid-2.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "01bd7b5fb9c4724537232f58864c827d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 351967, "upload_time": "2019-07-19T18:30:53", "upload_time_iso_8601": "2019-07-19T18:30:53.258174Z", "url": "https://files.pythonhosted.org/packages/1e/d4/d54d2ceddac729205c208dd0e50c59a690eaad8fc6f79245c82de3e7743c/clancyLab_squid-2.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.30": [ { "comment_text": "", "digests": { "md5": "ddf43e2a9b0aae8810054ebb0eb562b4", "sha256": "5fd0a98472443afad38d4899478cc0724221bbbb7385977b77a742dea11646c4" }, "downloads": -1, "filename": "clancyLab_squid-2.0.30-py3-none-any.whl", "has_sig": false, "md5_digest": "ddf43e2a9b0aae8810054ebb0eb562b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 361007, "upload_time": "2019-09-11T22:51:38", "upload_time_iso_8601": "2019-09-11T22:51:38.944646Z", "url": "https://files.pythonhosted.org/packages/0c/ee/8500c7bd44a9f989133f366497967e297e4f6f8a5eccc96ef9d1a2aaf5e3/clancyLab_squid-2.0.30-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.31": [ { "comment_text": "", "digests": { "md5": "5e02529ca48a7cc5d082efc26157fa72", "sha256": "bf5d851e1b6f3ef094788090bac8ae9e6552b991868f31d26f5ad70664c84175" }, "downloads": -1, "filename": "clancyLab_squid-2.0.31-py3-none-any.whl", "has_sig": false, "md5_digest": "5e02529ca48a7cc5d082efc26157fa72", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 361014, "upload_time": "2019-09-12T00:21:45", "upload_time_iso_8601": "2019-09-12T00:21:45.672836Z", "url": "https://files.pythonhosted.org/packages/b5/b6/af13657fc6779360f82df26957d032f43e2f1fb516f1470ad3b832112f40/clancyLab_squid-2.0.31-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.32": [ { "comment_text": "", "digests": { "md5": "8b232a2da8da770d68a9a25c860889fd", "sha256": "aa43012bf4a2055752a358ec3a2ee9955354160ee891845578a12e76874493a9" }, "downloads": -1, "filename": "clancyLab_squid-2.0.32-py3-none-any.whl", "has_sig": false, "md5_digest": "8b232a2da8da770d68a9a25c860889fd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 361025, "upload_time": "2019-09-13T16:01:57", "upload_time_iso_8601": "2019-09-13T16:01:57.642809Z", "url": "https://files.pythonhosted.org/packages/49/68/3699b24f74527364b3d4e77f65a73cdf3226b69b9ced52747029c564f68d/clancyLab_squid-2.0.32-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.33": [ { "comment_text": "", "digests": { "md5": "dbe39158136700a9cf1ac6ab363ea04a", "sha256": "3483ff94160bde0d4cdb58f96a72a99dcb1b3f3c10e3c1e94a47c83e3c7226d2" }, "downloads": -1, "filename": "clancyLab_squid-2.0.33-py3-none-any.whl", "has_sig": false, "md5_digest": "dbe39158136700a9cf1ac6ab363ea04a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 361041, "upload_time": "2019-10-04T20:46:55", "upload_time_iso_8601": "2019-10-04T20:46:55.158114Z", "url": "https://files.pythonhosted.org/packages/e0/1b/38b90022340a8b1fa15e49e44269f61b840be178aaf5e1a18dee9bb9e7e6/clancyLab_squid-2.0.33-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.34": [ { "comment_text": "", "digests": { "md5": "8c6dc732daf77dc6b529f0bfec023bcc", "sha256": "ec7e6904238143ebcbd0dac5e903582da3dbe3dc6c87d22a10f23f19aa34f29d" }, "downloads": -1, "filename": "clancyLab_squid-2.0.34-py3-none-any.whl", "has_sig": false, "md5_digest": "8c6dc732daf77dc6b529f0bfec023bcc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 361160, "upload_time": "2019-10-05T14:16:53", "upload_time_iso_8601": "2019-10-05T14:16:53.998009Z", "url": "https://files.pythonhosted.org/packages/72/db/437f308e6d89684e0fba4007ad7e789b6fbbe30fbe4ef34d7a26c2eb9afd/clancyLab_squid-2.0.34-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.35": [ { "comment_text": "", "digests": { "md5": "9b2a90b93c873eebff6dd8e053a5d816", "sha256": "552fb5f4c12786a1bd4a65f30a9ab672129e5e951e3975c47abbd2afed5ad9f2" }, "downloads": -1, "filename": "clancyLab_squid-2.0.35-py3-none-any.whl", "has_sig": false, "md5_digest": "9b2a90b93c873eebff6dd8e053a5d816", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 363334, "upload_time": "2019-10-11T18:27:48", "upload_time_iso_8601": "2019-10-11T18:27:48.108448Z", "url": "https://files.pythonhosted.org/packages/f0/b9/cd441ef6b8f18f3b166026b39d2b8fffb36192ce565028e8360ac562d3aa/clancyLab_squid-2.0.35-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.36": [ { "comment_text": "", "digests": { "md5": "d832e76a5084a1ca1ead888a2b6a8f53", "sha256": "d7732f9454f1ad87764fa065b101e3f00960a0f59130534858eeb706ef1ddd9a" }, "downloads": -1, "filename": "clancyLab_squid-2.0.36-py3-none-any.whl", "has_sig": false, "md5_digest": "d832e76a5084a1ca1ead888a2b6a8f53", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 363518, "upload_time": "2019-10-11T21:23:10", "upload_time_iso_8601": "2019-10-11T21:23:10.414782Z", "url": "https://files.pythonhosted.org/packages/61/13/ab62cf9d93a114fb0272d1944e7f9856fa8dbb9bba50f00758a65c1e2c60/clancyLab_squid-2.0.36-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.37": [ { "comment_text": "", "digests": { "md5": "592b20218db08a7696b4588a6fec1891", "sha256": "0aa6d7ad91258a1e5e3e7c648dd988112358b5ea68cd3b1e470e0fa621d6b8d1" }, "downloads": -1, "filename": "clancyLab_squid-2.0.37-py3-none-any.whl", "has_sig": false, "md5_digest": "592b20218db08a7696b4588a6fec1891", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 363736, "upload_time": "2019-10-16T21:19:47", "upload_time_iso_8601": "2019-10-16T21:19:47.397073Z", "url": "https://files.pythonhosted.org/packages/9a/60/4ad1ddbc389a59e9314aa1eb2f5adf34a0cf5a6bd42639150d76e1fc5f60/clancyLab_squid-2.0.37-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.38": [ { "comment_text": "", "digests": { "md5": "6e1892b83b519c7450fcfe566f933d80", "sha256": "d6a1cb917b1eb3b2b36e30078d19065a8e74f4ae937243d8c8844b43c9ec8d41" }, "downloads": -1, "filename": "clancyLab_squid-2.0.38-py3-none-any.whl", "has_sig": false, "md5_digest": "6e1892b83b519c7450fcfe566f933d80", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 363817, "upload_time": "2019-10-23T14:32:27", "upload_time_iso_8601": "2019-10-23T14:32:27.040504Z", "url": "https://files.pythonhosted.org/packages/fa/3c/83b6aa2a3205398c616daf07093db923727876c0fd34bca1d30f803c164c/clancyLab_squid-2.0.38-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "7f465ba0779467ac5cc5e0fe9baab892", "sha256": "4801a53f723a2ee865196c8498126f846f716217b8739741c025ac4e5c5c8d84" }, "downloads": -1, "filename": "clancyLab_squid-2.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "7f465ba0779467ac5cc5e0fe9baab892", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 352665, "upload_time": "2019-07-22T18:55:00", "upload_time_iso_8601": "2019-07-22T18:55:00.137296Z", "url": "https://files.pythonhosted.org/packages/ba/ce/5198cfaa9f703685aba12db511d873701bd8e449629725b14db5b79e7db8/clancyLab_squid-2.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.40": [ { "comment_text": "", "digests": { "md5": "db47450a59f8d20280f8ea79e040c32d", "sha256": "e9a72eff14d46ef77192719accd038c5b0a519379c6f7ea72b6de890e95f713a" }, "downloads": -1, "filename": "clancyLab_squid-2.0.40-py3-none-any.whl", "has_sig": false, "md5_digest": "db47450a59f8d20280f8ea79e040c32d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 364380, "upload_time": "2019-11-01T13:20:45", "upload_time_iso_8601": "2019-11-01T13:20:45.399499Z", "url": "https://files.pythonhosted.org/packages/58/dd/bb7f25efe12b69c3f4799f31569299401918a5488758381bf460cdbbb9ae/clancyLab_squid-2.0.40-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.41": [ { "comment_text": "", "digests": { "md5": "79d0e6ad176b9f44aa0e727223b802ca", "sha256": "8a37fa41b9d372df37c460f945800b325bbabca0c3b798db5c7333603ffd8dc2" }, "downloads": -1, "filename": "clancyLab_squid-2.0.41-py3-none-any.whl", "has_sig": false, "md5_digest": "79d0e6ad176b9f44aa0e727223b802ca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 364383, "upload_time": "2019-11-12T16:02:50", "upload_time_iso_8601": "2019-11-12T16:02:50.152827Z", "url": "https://files.pythonhosted.org/packages/7a/66/985c63226a7342ea7f52f2c62d1bdefb181c4e11b6d72fb926bb11c0e9b6/clancyLab_squid-2.0.41-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.42": [ { "comment_text": "", "digests": { "md5": "2fe98a7891869648109e63a47584d2a6", "sha256": "27489b47d589050fa002367c6e3b2ab447d2c11d9eb74dcf88d897a1e84a8689" }, "downloads": -1, "filename": "clancyLab_squid-2.0.42-py3-none-any.whl", "has_sig": false, "md5_digest": "2fe98a7891869648109e63a47584d2a6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 364418, "upload_time": "2019-11-15T19:47:47", "upload_time_iso_8601": "2019-11-15T19:47:47.687584Z", "url": "https://files.pythonhosted.org/packages/73/de/6bcf6106dce6811347daf42d1dd9a9018d46867339983f8d9ef6291dd3d4/clancyLab_squid-2.0.42-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "8a439f2bc943a2c7e95717c9deed474d", "sha256": "41f76fac4a35d103e8d5cdb61fe3b7cb89480b54b36687d95a1c4aaa9b349ab4" }, "downloads": -1, "filename": "clancyLab_squid-2.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "8a439f2bc943a2c7e95717c9deed474d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 355909, "upload_time": "2019-07-22T21:17:05", "upload_time_iso_8601": "2019-07-22T21:17:05.746944Z", "url": "https://files.pythonhosted.org/packages/4c/f7/3e98edf3e22072360325e16c29328cc19e9c43c2e1edbe7320ccdff67710/clancyLab_squid-2.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "6dbcadae12e4a45139819af63be8f9f3", "sha256": "61cbc7f47abc8ca93331232b7b74351836a999c41a0b97ebff84d848f833f5ba" }, "downloads": -1, "filename": "clancyLab_squid-2.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "6dbcadae12e4a45139819af63be8f9f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 355939, "upload_time": "2019-07-23T16:40:20", "upload_time_iso_8601": "2019-07-23T16:40:20.246785Z", "url": "https://files.pythonhosted.org/packages/d4/4e/5bfd08229c11b38d2a735fe10bc2c3a36aeddea0131ce3bd77e369e4aa82/clancyLab_squid-2.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "5ab03e8310d2cb4642e10f561f12f091", "sha256": "64a764975101bd81a74ebccd6b19ff31e397c84f8475696867f7ea86e8d2e75a" }, "downloads": -1, "filename": "clancyLab_squid-2.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "5ab03e8310d2cb4642e10f561f12f091", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 355939, "upload_time": "2019-07-23T17:56:28", "upload_time_iso_8601": "2019-07-23T17:56:28.830890Z", "url": "https://files.pythonhosted.org/packages/2e/71/58a7bc333ace379e8984eb5bfb1f2e626cd2f00b0bcbb4f93ea7c28e4ba2/clancyLab_squid-2.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "4ec34a14ccb93ca2184697f8ee95a5de", "sha256": "b519be79a56c2de74f21fedf377b07dc52db0cbcdd5198802c7b57f3d9fbabed" }, "downloads": -1, "filename": "clancyLab_squid-2.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "4ec34a14ccb93ca2184697f8ee95a5de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 355951, "upload_time": "2019-07-23T20:35:36", "upload_time_iso_8601": "2019-07-23T20:35:36.558391Z", "url": "https://files.pythonhosted.org/packages/d2/03/73bf1704213c676c7f6e6ca2382e1850621e36266135d1433e1419247a5f/clancyLab_squid-2.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.9": [ { "comment_text": "", "digests": { "md5": "9a73a143225aa9b6273ea88f4b0882fa", "sha256": "535ffab23989a3bfbf410eb2bf2152f543d2148814eac54f4629b423d3637707" }, "downloads": -1, "filename": "clancyLab_squid-2.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "9a73a143225aa9b6273ea88f4b0882fa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 356028, "upload_time": "2019-07-23T22:01:03", "upload_time_iso_8601": "2019-07-23T22:01:03.054424Z", "url": "https://files.pythonhosted.org/packages/77/61/e96aaf6fa22c01b68007bfce277e72690f57982959524fbab281227e987f/clancyLab_squid-2.0.9-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "c221e62ae3fda81af7339f76c43ed930", "sha256": "f737bd6131c50bd5855156878ca23dde50f74e125874f5d312b4d859eed660fd" }, "downloads": -1, "filename": "clancyLab_squid-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c221e62ae3fda81af7339f76c43ed930", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 365962, "upload_time": "2019-11-27T19:04:16", "upload_time_iso_8601": "2019-11-27T19:04:16.870457Z", "url": "https://files.pythonhosted.org/packages/4f/f9/76bc074521893b0a1ce8530f55b68860266984c5ca0d857213b6a19f3e73/clancyLab_squid-2.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "bf92a7c6c4e05bf5042f1d96f8da8ffd", "sha256": "51426bdbed00cdcb29cc796265d1851b0bd868919172c0ce7f6eaf7235ba1164" }, "downloads": -1, "filename": "clancyLab_squid-2.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "bf92a7c6c4e05bf5042f1d96f8da8ffd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 366014, "upload_time": "2019-11-27T20:54:26", "upload_time_iso_8601": "2019-11-27T20:54:26.703127Z", "url": "https://files.pythonhosted.org/packages/33/7d/bd6d94cccdf9c22460ac0f44f420b052f8411fe7d4560269b7b57e3b7ed9/clancyLab_squid-2.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "2e5b91ab6e40b0d34a5bf8e8e5eb449f", "sha256": "eed5051fc417cdd1723859791e81370f1e1bc7f5899af192309259e0e82d1023" }, "downloads": -1, "filename": "clancyLab_squid-2.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2e5b91ab6e40b0d34a5bf8e8e5eb449f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 365744, "upload_time": "2019-12-12T17:55:31", "upload_time_iso_8601": "2019-12-12T17:55:31.332580Z", "url": "https://files.pythonhosted.org/packages/25/dc/23749df19c20374118dc5d8a94a278aa2fb16b080c04dfcaaf6063ae9f9a/clancyLab_squid-2.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "389409c6ae9657dac89bba192d7c8a14", "sha256": "eb32408c9fb7748db323da917293878dd1153f1a3ba9ea40d3813056564150f4" }, "downloads": -1, "filename": "clancyLab_squid-2.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "389409c6ae9657dac89bba192d7c8a14", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 363100, "upload_time": "2020-03-15T03:23:51", "upload_time_iso_8601": "2020-03-15T03:23:51.770572Z", "url": "https://files.pythonhosted.org/packages/23/fc/040a282ec9a1ef1911ffd117f5b7467538a288d694f238db3fa8a1a314fa/clancyLab_squid-2.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "b4c8fab12465b48273e7cb25d88e206a", "sha256": "08d6ee579581b7e9b7c5e9f4a9e0c5f23208e5246a50d6637f075919dfafaa78" }, "downloads": -1, "filename": "clancyLab_squid-2.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "b4c8fab12465b48273e7cb25d88e206a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 363098, "upload_time": "2020-04-03T02:59:18", "upload_time_iso_8601": "2020-04-03T02:59:18.937044Z", "url": "https://files.pythonhosted.org/packages/f9/05/3b0a1aedfcf09e07183391fc83f6082aac0f2350f507c5af2fccef3f6b53/clancyLab_squid-2.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "3a87244fb1f7c028c261dbd6d2070151", "sha256": "5333514c18385ec43cea953d8ef8df02c260bd819d8dfdac1f4756e68b19eb65" }, "downloads": -1, "filename": "clancyLab_squid-2.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "3a87244fb1f7c028c261dbd6d2070151", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 363099, "upload_time": "2020-04-03T22:55:53", "upload_time_iso_8601": "2020-04-03T22:55:53.899991Z", "url": "https://files.pythonhosted.org/packages/c7/92/bddf5b04daf072460bc807fc9a79e671a003df25112bef43bd4b0c2af136/clancyLab_squid-2.1.5-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.6": [ { "comment_text": "", "digests": { "md5": "bef520e77b0094c61aa74cbb3eb815be", "sha256": "ccd749fb5d99f8ff11b41a32914a4a8a7aa2aec1734ee58dc63681ab579fc132" }, "downloads": -1, "filename": "clancyLab_squid-2.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "bef520e77b0094c61aa74cbb3eb815be", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 363109, "upload_time": "2020-04-28T17:13:35", "upload_time_iso_8601": "2020-04-28T17:13:35.142404Z", "url": "https://files.pythonhosted.org/packages/b0/55/dfcfb514eccf1f8a4b21193e254b30165f265d75dabecc9482b060f2f68e/clancyLab_squid-2.1.6-py3-none-any.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bef520e77b0094c61aa74cbb3eb815be", "sha256": "ccd749fb5d99f8ff11b41a32914a4a8a7aa2aec1734ee58dc63681ab579fc132" }, "downloads": -1, "filename": "clancyLab_squid-2.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "bef520e77b0094c61aa74cbb3eb815be", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 363109, "upload_time": "2020-04-28T17:13:35", "upload_time_iso_8601": "2020-04-28T17:13:35.142404Z", "url": "https://files.pythonhosted.org/packages/b0/55/dfcfb514eccf1f8a4b21193e254b30165f265d75dabecc9482b060f2f68e/clancyLab_squid-2.1.6-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }