{ "info": { "author": "Ram\u00f3n Casero", "author_email": "rcasero@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering :: Bio-Informatics" ], "description": "Summary\n=======\n\n``pysto`` are a few miscellaneous processing python functions.\n\nThe name is a play of words on \"pisto\", a Manchego dish made of\ntomatoes, onions, courgettes, green and red peppers and olive oil.\n\nUser instructions\n=================\n\nInstalling pysto with pip\n-------------------------\n\n1. Simply run from your local environment or whole system\n\n ::\n\n pip install pysto\n\nInstalling pysto from the cloned github repository\n--------------------------------------------------\n\n1. Clone the pysto repository\n\n ::\n\n git clone https://github.com/rcasero/pysto.git\n\n2. Activate the local environment of the other project, or you can also\n work without a local environment. For example, to activate a local\n conda environment called \"myproject\"\n\n ::\n\n source activate myproject\n\n3. Install pysto from the pysto root directory (note that if you are\n installing it system-wide, you may need to run the command as root)\n\n ::\n\n cd pysto\n pip install .\n\nUninstalling pysto\n------------------\n\n1. Uninstall the package\n\n ::\n\n pip uninstall pysto\n\nDeveloper instructions\n======================\n\nInstall pysto project for development\n-------------------------------------\n\n1. Clone the pysto repository\n\n ::\n\n git clone https://github.com/rcasero/pysto.git\n\n2. Run ``install_dependencies.sh`` to install development tools, create\n local environments for python 2.7 and 3.6, and install python\n dependencies. ``pysto`` depends on SimpleITK, and there are two\n options:\n\n 1. Install the official SimpleITK package\n\n ::\n\n cd pysto\n ./install_dependencies.sh\n\n 2. Build and install SimpleElastix, which is an extension of\n SimpleITK\n\n ::\n\n cd pysto\n ./install_dependencies.sh SimpleElastix\n\nDeveloping source code for pysto\n--------------------------------\n\n1. Activate one of the pysto local environments\n\n ::\n\n source activate pysto_3.6\n\n2. If you are making changes to the code, you want your python\n environment to import the code you are working with in\n ``~/Software/pysto``, not the package installed in your local conda\n environment. Thus, add the project's source directory to\n ``PYTHONPATH``\n\n ::\n\n export PYTHONPATH=~/Software/pysto:$PYTHONPATH\n\n3. Launch the development IDE, e.g.\n\n ::\n\n spyder&\n\n4. In your code, import the pysto modules/functions in the usual way,\n e.g.\n\n ::\n\n import pysto.imgproc as pymg \n [...]\n imf = pymg.imfuse(im1, im2)\n\n5. While developing, you can run all tests (both for python 2.7 and 3.6)\n from the command line with\n\n ::\n\n make test\n\n6. You need to have a local file ``~/.pypirc`` (replace\n ```` by the password). This will be used by ``twine``\n to release packages to PyPI\n\n ::\n\n [distutils]\n index-servers =\n pypi\n pypitest\n\n [pypi]\n username=rcasero\n password=\n\n [pypitest]\n repository = https://test.pypi.org/legacy/\n username=rcasero\n password=\n\n7. Protect the file so that it can be read only by you\n\n ::\n\n chmod 600 ~/.pypirc\n\nUninstalling pysto\n------------------\n\n1. Uninstall the package\n\n ::\n\n pip uninstall pysto\n\nReleasing a new version of pysto to PyPI\n----------------------------------------\n\nWe provide a ``Makefile`` to simplify testing and releasing.\n\n1. Run tests to make sure nothing obvious got broken\n\n ::\n\n make test\n\n2. Commit and push all the code that should go in the release to github.\n\n3. Update ``setup.py`` with release version, any new dependencies, the\n new download URL, changes to the description...\n\n ::\n\n from setuptools import setup, find_packages\n\n setup(\n name='pysto',\n version='1.0.0',\n download_url = 'https://github.com/rcasero/pysto/archive/1.0.0.tar.gz',\n packages=find_packages(),\n python_requires='>=3.6',\n install_requires=['matplotlib>=2.0','numpy>=1.13','opencv-python>=3.3.0'],\n description='Miscellanea image processing functions',\n url='https://github.com/rcasero/pysto',\n author='Ram\u00f3n Casero',\n author_email='rcasero@gmail.com',\n license='GPL v3',\n )\n\n4. Update ``ChangeLog.md`` with the main changes to this release. For\n example,\n\n ::\n\n ## v1.0.0\n ### Added\n\n - imgproc.matchHist(): \"Modify image intensities to match the\n histogram of a reference image\" by\n [rcasero](https://github.com/rcasero)\n - imgproc.imfuse(): \"Composite of two images\" by\n [rcasero](https://github.com/rcasero)\n - testdata/*.png: Stereo cloud images with ROI masks (left_mask.png,\n left.png, right_mask.png, right.png) by\n [rcasero](https://github.com/rcasero)\n\n5. Tag the release in github, create the package/wheel and upload to the\n test PyPI server\n\n ::\n\n make test-package\n\n6. You should be able to see your package in\n\n ::\n\n https://test.pypi.org/project/pysto/\n\n7. If everything goes well, upload to PyPI Live\n\n ::\n\n make package\n\n8. You should be able to see your package in\n\n ::\n\n https://pypi.org/project/pysto/\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/rcasero/pysto/archive/1.4.1.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rcasero/pysto", "keywords": "image processing,bioinformatics", "license": "GPL v3", "maintainer": "", "maintainer_email": "", "name": "pysto", "package_url": "https://pypi.org/project/pysto/", "platform": "", "project_url": "https://pypi.org/project/pysto/", "project_urls": { "Download": "https://github.com/rcasero/pysto/archive/1.4.1.tar.gz", "Homepage": "https://github.com/rcasero/pysto" }, "release_url": "https://pypi.org/project/pysto/1.4.1/", "requires_dist": [ "matplotlib (>=2.0)", "numpy (>=1.13)", "opencv-python (>=3.3.0)", "simpleitk (>=1.0.1)", "spyder; extra == 'dev'", "twine; extra == 'dev'", "wheel; extra == 'dev'", "setuptools; extra == 'dev'", "pytest; extra == 'test'" ], "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "summary": "Miscellaneous image processing functions", "version": "1.4.1" }, "last_serial": 3278068, "releases": { "1.0.1": [ { "comment_text": "", "digests": { "md5": "7e89f6656fca7462fae113a346c4240b", "sha256": "b42fcae1d50976208f258592670c783ec5209aba84074060f2f15e8a73fa3e45" }, "downloads": -1, "filename": "pysto-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7e89f6656fca7462fae113a346c4240b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 5235, "upload_time": "2017-09-20T22:32:16", "url": "https://files.pythonhosted.org/packages/5b/3b/0c85f7973686ffacbd867394ccfbec78fcfc8053aa5cebd3668e4ed234a2/pysto-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12d21a9ff33c2f0c91debdc1a8a39925", "sha256": "e994afc1ba129a827aafc4e97ea65e17f983ce246d744310c67df4848a8859a4" }, "downloads": -1, "filename": "pysto-1.0.1.tar.gz", "has_sig": false, "md5_digest": "12d21a9ff33c2f0c91debdc1a8a39925", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 4709, "upload_time": "2017-09-20T22:32:17", "url": "https://files.pythonhosted.org/packages/f0/5d/57a2ac962e3fad94c6358bbfec54d03e56163d94da6ec783d9049e20d0fd/pysto-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "ac4bfcdfade71189763935a54f6a2369", "sha256": "55fb359592eb7cccdf2ff7315c38b4510e47d6067e09875994e44038c8a53714" }, "downloads": -1, "filename": "pysto-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ac4bfcdfade71189763935a54f6a2369", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 6177, "upload_time": "2017-09-21T14:17:43", "url": "https://files.pythonhosted.org/packages/85/9f/4e5139588706cfb6caeb0f23a632d2fe96d3b7d2ec22a198338c15fa958a/pysto-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc5e1f76d05bc5d433183ddfa499f512", "sha256": "64e6d17f83c2eca04abcf2643b2912fe9b4b71acc4bf4cc70b3970d1f17bd7ff" }, "downloads": -1, "filename": "pysto-1.1.0.tar.gz", "has_sig": false, "md5_digest": "bc5e1f76d05bc5d433183ddfa499f512", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 5702, "upload_time": "2017-09-21T14:17:44", "url": "https://files.pythonhosted.org/packages/13/44/9e957780b64c1c547aa65a40d08ee07094a4fe22351e885091090d600512/pysto-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "0d906eeb4fb9665d5c8ef950f7814c19", "sha256": "bbbd9193d5c68809e8450e04620f34e7270e6b7b94bbe07fb5dca16937d23784" }, "downloads": -1, "filename": "pysto-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0d906eeb4fb9665d5c8ef950f7814c19", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 6175, "upload_time": "2017-09-21T14:23:51", "url": "https://files.pythonhosted.org/packages/f3/8e/62405300d48a5ee795f963771c014d1644f754d9c25aad2bb76594c03960/pysto-1.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "320b78fd1a888610e491369918df1b01", "sha256": "3aa7148388ba5dde033d7831c4d6f96fcdf8756f5f5fa515a98eeba3c545cd17" }, "downloads": -1, "filename": "pysto-1.1.1.tar.gz", "has_sig": false, "md5_digest": "320b78fd1a888610e491369918df1b01", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 5705, "upload_time": "2017-09-21T14:23:53", "url": "https://files.pythonhosted.org/packages/e2/23/01e2a475afe6e42807ab4a7103e8cc6aa2ccc3afc73ab2862db3140dd965/pysto-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "4845c604d54962bff02341f02ac42ced", "sha256": "b185523e1c969ffb0199d8583ede3937944a78db57b3648dfe57666acb3e3dcf" }, "downloads": -1, "filename": "pysto-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4845c604d54962bff02341f02ac42ced", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 6627, "upload_time": "2017-09-21T15:37:55", "url": "https://files.pythonhosted.org/packages/61/b1/ac7657da6d6b3bbdc158f68f83cba675211b5f2e1a79f0bc15677e003b43/pysto-1.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3bdbea58eae0d09035ef4ef089a2663", "sha256": "eaf8f2c1295d2820641f4ee010734f5969a0fd7875efe2933f2e97560d3bb4ca" }, "downloads": -1, "filename": "pysto-1.1.2.tar.gz", "has_sig": false, "md5_digest": "d3bdbea58eae0d09035ef4ef089a2663", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 6070, "upload_time": "2017-09-21T15:37:57", "url": "https://files.pythonhosted.org/packages/da/ee/20ca81c75341d40d07b3da3464b2ac075e5f298ae02b2bfdc68b0be4072c/pysto-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "b418c574583b4e816cc4f0be37075545", "sha256": "90c3857fb48a61148e3a01899e7fa272cc141486bac393f3e8575aca4ddfc960" }, "downloads": -1, "filename": "pysto-1.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "b418c574583b4e816cc4f0be37075545", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 6694, "upload_time": "2017-09-21T17:00:36", "url": "https://files.pythonhosted.org/packages/b5/af/368ab521acb46db169a23bc397d1f63178b71784b95056a84414bd499eaa/pysto-1.1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61712c4a42353954b340723f4d6c3e27", "sha256": "f75435e4a05052b059cd260e579dc8b812202eb0a8316916b9a64f7897c7da11" }, "downloads": -1, "filename": "pysto-1.1.3.tar.gz", "has_sig": false, "md5_digest": "61712c4a42353954b340723f4d6c3e27", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 6100, "upload_time": "2017-09-21T17:00:38", "url": "https://files.pythonhosted.org/packages/84/c9/120a79a824a299b99804148af360899e92078a9111ef8747bf6e1fcc8671/pysto-1.1.3.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "ca314ee01d8da46f3c69fc51d855874d", "sha256": "187806ee347dd4e9fe594c99e661113b2df75a046a971491eb73807858644c26" }, "downloads": -1, "filename": "pysto-1.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "ca314ee01d8da46f3c69fc51d855874d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 8265, "upload_time": "2017-09-25T16:20:06", "url": "https://files.pythonhosted.org/packages/ca/9d/6b110ddab700ca4889202532d2d18dc5d0b70672296934621d22c9257827/pysto-1.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "627b2712022d2c441a889ca83d81470c", "sha256": "ac434aaf34a95b63e6df636a7f303dc122b23e8c8607c69898e6d446328d9622" }, "downloads": -1, "filename": "pysto-1.2.0.tar.gz", "has_sig": false, "md5_digest": "627b2712022d2c441a889ca83d81470c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 7690, "upload_time": "2017-09-25T16:31:09", "url": "https://files.pythonhosted.org/packages/e5/d2/1f039ecfffdb982f9a7689c533d8285021006915571277c721c6d3623ed7/pysto-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "2ac44c4214fcaf638da82dfb4cfa3a68", "sha256": "bdeb433a5d6aa5674bda3ad82f4cd5056ff8137fa80c295b3e3fedf75cba2d69" }, "downloads": -1, "filename": "pysto-1.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "2ac44c4214fcaf638da82dfb4cfa3a68", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 8266, "upload_time": "2017-09-25T17:28:54", "url": "https://files.pythonhosted.org/packages/2c/7c/2b5909cf40dd81f95427c584c29c212791aeba73c88a8e4c7cb538ce90ff/pysto-1.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b4d3dba989aad2f174cbc747a81baf80", "sha256": "c0eb120966b707448cbc956f4ec8dbcaf3895b587e626312abca3af06f2d1a07" }, "downloads": -1, "filename": "pysto-1.2.1.tar.gz", "has_sig": false, "md5_digest": "b4d3dba989aad2f174cbc747a81baf80", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 7713, "upload_time": "2017-09-25T17:28:57", "url": "https://files.pythonhosted.org/packages/49/79/19a5ee018876b26f619357ee429f58cf97c6e9ebfc0eeb8dbdeacbf9f32a/pysto-1.2.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "228512f220bacb4f04523351e6795e01", "sha256": "8aef6e24fd860ea517ebd337d23e860cf8237a9e4736b6acc3a4cad850c65939" }, "downloads": -1, "filename": "pysto-1.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "228512f220bacb4f04523351e6795e01", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 13337, "upload_time": "2017-10-23T13:25:48", "url": "https://files.pythonhosted.org/packages/01/30/40f910f61d4aa0638cace6edc2a2300005a1b2cabc38333e2834194f8236/pysto-1.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8fa46d1da4e8596c0d897ab1e20e3a8", "sha256": "dd9eda019e290b0a7b75ede50ec6f6effe754454fd0ae592246f94da2b7a5980" }, "downloads": -1, "filename": "pysto-1.3.2.tar.gz", "has_sig": false, "md5_digest": "b8fa46d1da4e8596c0d897ab1e20e3a8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 11420, "upload_time": "2017-10-23T13:25:49", "url": "https://files.pythonhosted.org/packages/ca/3b/928de5129be94384f545bb5f63f0871a705847742a5bec2123ffd880512e/pysto-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "1bc50a38a6e00f33fc7a6d1cdf74f898", "sha256": "e39a19465c854b9bb9d9d48a37ce82dd01b2eb698dddb89b19a13827bbea426f" }, "downloads": -1, "filename": "pysto-1.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "1bc50a38a6e00f33fc7a6d1cdf74f898", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 13504, "upload_time": "2017-10-23T14:51:55", "url": "https://files.pythonhosted.org/packages/be/f9/c0b58f7d128e1ebf417925c685b443a588edecb5c8973031287fbc8a13bb/pysto-1.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ccd1a89f1e9f7d8887a2d7811fd4f11f", "sha256": "e3b024c5a57347d2e285983d8e18d17b1fb2892b7cd7d1e5e4b5f8d096eadbf7" }, "downloads": -1, "filename": "pysto-1.3.3.tar.gz", "has_sig": false, "md5_digest": "ccd1a89f1e9f7d8887a2d7811fd4f11f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 11730, "upload_time": "2017-10-23T14:51:57", "url": "https://files.pythonhosted.org/packages/3e/84/861793254e41807309ccb3fb87cc8c21b253bb9eff9ac2242c8a30169d8f/pysto-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "cd01153a3a747c03026e663f9a84722b", "sha256": "88a3b8ec3b76c57b6443659b59c44695d175308dabebc41dbad1dfec1bd0f138" }, "downloads": -1, "filename": "pysto-1.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "cd01153a3a747c03026e663f9a84722b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 13500, "upload_time": "2017-10-23T17:21:45", "url": "https://files.pythonhosted.org/packages/5e/b2/cabd63332319db5935b35d8f8189565724a7eef621b480fcaf75881999a0/pysto-1.3.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efc92ef70ad1e8e3d11f39bc87ce2ac3", "sha256": "0df969a1aeb5b99d7fc81222eb76bd6fac62af107510498ad865c9aac613b61d" }, "downloads": -1, "filename": "pysto-1.3.4.tar.gz", "has_sig": false, "md5_digest": "efc92ef70ad1e8e3d11f39bc87ce2ac3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 11727, "upload_time": "2017-10-23T17:21:46", "url": "https://files.pythonhosted.org/packages/47/51/c3b40b2ee7b0162a6f0708fb98fb63e96dba8460b08fae62b6e7bc0fd8bc/pysto-1.3.4.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "90f5c75b55c2fa7973fa03a78d6f33a8", "sha256": "52cfdfd477385c186d53c4196c1b6ca27358cf788b1720cf7da6db5b0a113d58" }, "downloads": -1, "filename": "pysto-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "90f5c75b55c2fa7973fa03a78d6f33a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 14615, "upload_time": "2017-10-24T17:13:53", "url": "https://files.pythonhosted.org/packages/c5/82/261be3cb35e7cecac524f01bbd4216c739f2c17b7f2224f0f3c0a11cff6f/pysto-1.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b1159d1fc394e198f967beef7525316", "sha256": "ba3b6c1a98b8a4698c3b4779ec46da26b5d4fd01ed65116301362c492de88973" }, "downloads": -1, "filename": "pysto-1.4.0.tar.gz", "has_sig": false, "md5_digest": "7b1159d1fc394e198f967beef7525316", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 12833, "upload_time": "2017-10-24T17:13:54", "url": "https://files.pythonhosted.org/packages/1a/63/fd18efc155c8dee55f30c9a9b60a461dff2c59ef35d15d657215dd6b4152/pysto-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "9f2440bf3e69e64d53bbcb702c4b51e7", "sha256": "c59580b6aeca6ada515081d2b5beb789a25ea2852d976aefaee98104ebf0438b" }, "downloads": -1, "filename": "pysto-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9f2440bf3e69e64d53bbcb702c4b51e7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 14707, "upload_time": "2017-10-25T13:42:27", "url": "https://files.pythonhosted.org/packages/75/a7/552c5e1aafffa83f6089ba1a9fffa8f8a69295877551fcc89ff9adc88107/pysto-1.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e77c5ad1312c75fa863afca06bfb16d9", "sha256": "804e98d2af630aa520bccd91af919f0c622116c198229cbac2b12edbd90baa43" }, "downloads": -1, "filename": "pysto-1.4.1.tar.gz", "has_sig": false, "md5_digest": "e77c5ad1312c75fa863afca06bfb16d9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 12922, "upload_time": "2017-10-25T13:42:29", "url": "https://files.pythonhosted.org/packages/19/e5/d5e76bb4ecf308e9575d5ecd35173078e2ca20410335258e6ad9ae4e6ca9/pysto-1.4.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9f2440bf3e69e64d53bbcb702c4b51e7", "sha256": "c59580b6aeca6ada515081d2b5beb789a25ea2852d976aefaee98104ebf0438b" }, "downloads": -1, "filename": "pysto-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9f2440bf3e69e64d53bbcb702c4b51e7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 14707, "upload_time": "2017-10-25T13:42:27", "url": "https://files.pythonhosted.org/packages/75/a7/552c5e1aafffa83f6089ba1a9fffa8f8a69295877551fcc89ff9adc88107/pysto-1.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e77c5ad1312c75fa863afca06bfb16d9", "sha256": "804e98d2af630aa520bccd91af919f0c622116c198229cbac2b12edbd90baa43" }, "downloads": -1, "filename": "pysto-1.4.1.tar.gz", "has_sig": false, "md5_digest": "e77c5ad1312c75fa863afca06bfb16d9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", "size": 12922, "upload_time": "2017-10-25T13:42:29", "url": "https://files.pythonhosted.org/packages/19/e5/d5e76bb4ecf308e9575d5ecd35173078e2ca20410335258e6ad9ae4e6ca9/pysto-1.4.1.tar.gz" } ] }