{ "info": { "author": "Ryan Hausen & Brant Robertson", "author_email": "rhausen@ucsc.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Scientific/Engineering" ], "description": "\n.. Variables to use the correct hyperlinks in the readmertd build\n.. |classifier| replace:: `morpheus.classifier.Classifier `__\n.. |classify| replace:: `classify `__\n.. |segmap| replace:: `segmap `__\n.. |catalog| replace:: `catalog `__\n.. |colorize| replace:: `colorize `__\n\nMorpheus\n========\n\n.. image:: https://travis-ci.com/morpheus-project/morpheus.svg?branch=master\n :target: https://travis-ci.com/morpheus-project/morpheus\n\n.. image:: https://codecov.io/gh/morpheus-project/morpheus/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/morpheus-project/morpheus\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://github.com/ambv/black\n\n.. image:: https://img.shields.io/badge/python-3.6-blue.svg\n :target: https://www.python.org/downloads/release/python-360/\n\n.. image:: https://readthedocs.org/projects/morpheus-astro/badge/?version=latest\n :target: https://morpheus-astro.readthedocs.io\n\nMorpheus is a neural network model used to generate pixel level morphological\nclassifications for astronomical sources. This model can be used to generate\nsegmentation maps or to inform other photometric measurements with granular\nmorphological information.\n\nInstallation\n============\n\nMorpheus is implemented using `TensorFlow `_.\nTensorFlow is **not** listed in the dependencies for the package. So you need\nto install TensorFlow before you install Morpheus. It has to be done this way\nto support the GPU accelerated version of TensorFlow, which has a different\npackage name. For more information on installing TensorFlow visit the\n`TensorFlow website `_.\n\n\n.. code-block:: bash\n\n pip install morpheus-astro\n\nDocker\n======\n\nMorpheus has two main flavors of Docker Image: ``gpu`` for the GPU enabled version\nof TensorFlow and ``cpu`` for the standard CPU implementation of TensorFlow.\nVisit the `Docker Hub `_ page\nfor relevant tags.\n\nFor GPU support:\n\n.. code-block:: bash\n\n docker run --runtime=nvidia -it morpheusastro/morpheus:0.4-gpu\n\nFor CPU only:\n\n.. code-block:: bash\n\n docker run -it morpheusastro/morpheus:0.4-cpu\n\n\nUsage\n=====\n\nThere are two ways to use morpheus on your own images: the python API and the\ncommand line interface\n\nPython API\n----------\n\nThe |classifier| class is the interface to the various functionalities of\nMorpheus. The primary function and requirement before any other action\ncan be performed is to morphologically classify the pixels in an image using\n|classify|.\n\nMorphological classification\n****************************\n\nTo perform a pixel-level morphological classification the image needs to be\nprovided in the H, J, Z, and V bands. See |classify| for more information.\n\n.. code-block:: python\n\n from morpheus.classifier import Classifier\n from morpheus.data import example\n\n h, j, v, z = example.get_sample()\n classified = Classifier.classify(h=h, j=j, v=v, z=z)\n\nThe classify function returns a dictionary where the keys indicate the output\nfor example ``spheroid``, and the value is the corresponding numpy ndarray.\n\nUsing the output from |classify| you can:\n\n- Make a segmap\n\n- Make a morphgological catalog\n\n- Make colorized version of the morphological classifications\n\nSegmentation Map\n****************\n\nTo create a segmentation map using Morphues, you need to provide the output\nfrom the |classify| function and a single flux band. In the below example we\nuse H. For more information see |segmap|\n\n.. code-block:: python\n\n from morpheus.classifier import Classifier\n from morpheus.data import example\n\n h, j, v, z = example.get_sample()\n classified = Classifier.classify(h=h, j=j, v=v, z=z)\n segmap = Classifier.segmap_from_classified(classified, h)\n\nCatalog\n*******\n\nTo crete a catalog using Morpheus, you need to provide the output from the\n|classify| function, the flux in a single band (we use H), and a segmentation\nmap. The segmentation map doesn't have to be generated by Morpheus, but it\nmust be similar in form. It should assign pixels values greater than 0 for all\npixels that are associated with a source. Each source should be assigned a\nunique ID. Background should be set to 0 and excluded regions should be\nassigned -1. The catalog returned is a JSON compatible list of morphological\nclassifications for each source in the segmap. For more information see\n|catalog|.\n\n.. code-block:: python\n\n from morpheus.classifier import Classifier\n from morpheus.data import example\n\n h, j, v, z = example.get_sample()\n classified = Classifier.classify(h=h, j=j, v=v, z=z)\n segmap = Classifier.segmap_from_classified(classified, h)\n catalog = Classifier.catalog_from_classified(classified, h, segmap)\n\nColorized Classifications\n*************************\n\nA colorized classification is a way of making a single image to interpret the\npixel level morphological classifications. For more information see |colorize|.\n\n.. code-block:: python\n\n from morpheus.classifier import Classifier\n from morpheus.data import example\n\n h, j, v, z = example.get_sample()\n classified = Classifier.classify(h=h, j=j, v=v, z=z)\n color_rgb = Classifier.colorize_classified(classified)\n\nParallezation\n*************\n\nMorpheus supports simple parallezation by breaking an image into equally sized\npieces along the y axis, classifying them in seperate processes, and stitching\nthem back into a single image. Parallezation can be split into CPU jobs or\nGPU jobs. Importantly, you cannot specify both at the same time.\n\n**GPUS**\n\nThe ``gpus`` argument should be a list of integers that are the ids assigned to\nthe GPUS to be used. These ids can be found by using ``nvidia-smi``.\n\n.. code-block:: python\n\n from morpheus.classifier import Classifier\n from morpheus.data import example\n\n h, j, v, z = example.get_sample()\n\n classified = Classifier.classify(h=h, j=j, v=v, z=z, gpus=[0,1])\n\n**CPUS**\n\nThe ``cpus`` argument should be an integer indicating how many processes to\nspin off.\n\n.. code-block:: python\n\n from morpheus.classifier import Classifier\n from morpheus.data import example\n\n h, j, v, z = example.get_sample()\n\n classified = Classifier.classify(h=h, j=j, v=v, z=z, cpus=2)\n\n\nCommand Line Interface\n----------------------\n\nMorpheus can be used from the terminal using the ``morpheus`` command. To\nclassify an image, it needs to be available in the H, J, V, and Z bands. From\nthe terminal the following actions can be performed:\n\n- Per pixel morphological classification\n- Make segmentation map\n- Make a catalog of morphological classifications\n- Make a colorized version of the morhological classifications\n\n\nMorphological classification\n****************************\n\n.. code-block:: bash\n\n morpheus h.fits j.fits v.fits z.fits\n\nOrder is important when calling the Morpheus from the terminal. They files\nshould be in the order H, J, V, and Z, as displayed in the above example. The\nouput classification will be saved in the current working directory unless\notherwise indicated by the ``--out_dir`` optional argument.\n\nSegmentation Map\n****************\n\n.. code-block:: bash\n\n morpheus h.fits j.fits v.fits z.fits --action segmap\n\nTo create a segmap, append the optional ``--action`` flag with the argument\n``segmap``. This will save both the classificaitons and the segmap to the\nsame directory.\n\nCatalog\n*******\n\n.. code-block:: bash\n\n morpheus h.fits j.fits v.fits z.fits --action catalog\n\nThis will create a catalog by classifying the input images, creating a\nsegmap, and the using both of those to generate a morphological catalog. The\nmorphological classificaitons, segmap, and catalog are all saved to the same\nplace.\n\nColorized Classifications\n*************************\n\n.. code-block:: bash\n\n morpheus h.fits j.fits v.fits z.fits --action colorize\n\nUsing ``--action colorize`` will classify the image and then generate a\ncolorized verision of that classification and save the classification and\ncolorized version to the same place.\n\nParallezation\n*************\n\nMorpheus supports simple parallezation by breaking an image into equally sized\npieces along the y axis, classifying them in seperate processes, and stitching\nthem back into a single image. Parallezation can be split into CPU jobs or\nGPU jobs. Importantly, you cannot specify both at the same time.\n\n**GPUS**\n\nThe ``gpus`` optional flag should be a comma-seperated list of ids for the\nGPUS to be used. These ids can be found by using ``nvidia-smi``.\n\n.. code-block:: bash\n\n morpheus h.fits j.fits v.fits z.fits --gpus 0,1\n\n**CPUS**\n\nThe ``cpus`` optional flag should be an integer indicating how many processes\nto spin off.\n\n.. code-block:: bash\n\n morpheus h.fits j.fits v.fits z.fits --cpus 2\n\n\nPython Demo\n=============\n\nTry it out on `Google Colab `_!\n\nDocumentation\n=============\n\nhttps://morpheus-astro.readthedocs.io/\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/morpheus-project/morpheus", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "morpheus-astro", "package_url": "https://pypi.org/project/morpheus-astro/", "platform": "", "project_url": "https://pypi.org/project/morpheus-astro/", "project_urls": { "Homepage": "https://github.com/morpheus-project/morpheus" }, "release_url": "https://pypi.org/project/morpheus-astro/0.4.6/", "requires_dist": [ "numpy", "colorama", "astropy", "tqdm", "matplotlib", "imageio", "scikit-image", "scipy" ], "requires_python": ">=3.6", "summary": "A Library For Generating Morphological Semantic Segmentation Maps of Astronomical Images", "version": "0.4.6" }, "last_serial": 5161400, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "5f0ac8a2590925b52749f85cb03a1d1e", "sha256": "16000d7479d0b6f55815fb2b0c65a3f0c92034cb9aac3d13576a5c9045b0ff3e" }, "downloads": -1, "filename": "morpheus_astro-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5f0ac8a2590925b52749f85cb03a1d1e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 25288, "upload_time": "2019-01-09T22:40:22", "url": "https://files.pythonhosted.org/packages/cf/ec/498e536bbbf79f66693a07f0aea7c4ab19970a123ba950300c7e6b451f30/morpheus_astro-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3c899b2975f96e6dbf843fae5fcf17e7", "sha256": "3cea1bbb78e3aaccbcab7ebfe1d5952bfc891b465c5cf80713bc85ee3dfba01d" }, "downloads": -1, "filename": "morpheus-astro-0.1.0.tar.gz", "has_sig": false, "md5_digest": "3c899b2975f96e6dbf843fae5fcf17e7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 21290, "upload_time": "2019-01-09T22:40:25", "url": "https://files.pythonhosted.org/packages/78/4e/5142329064d23a75bb50f8f42881d5c9c356dd52dffbacb8459da7da452b/morpheus-astro-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "53a8f602e168b3d7b0619642e5c4c59a", "sha256": "9f71c59de00b24b33819a27233c21b05b025f5f269e052924b8c0339830f86e9" }, "downloads": -1, "filename": "morpheus_astro-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "53a8f602e168b3d7b0619642e5c4c59a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1053419, "upload_time": "2019-01-09T23:26:31", "url": "https://files.pythonhosted.org/packages/38/da/4002f9eca9310bb0d8d684547b13558d23921c3968d862a62f1f58fc9846/morpheus_astro-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a0a986810525d0f565ef0f360ce099c2", "sha256": "99fc4e405369fd485252fc6f66eeb11878ee2dd99be6338b914999f960e3e026" }, "downloads": -1, "filename": "morpheus-astro-0.1.1.tar.gz", "has_sig": false, "md5_digest": "a0a986810525d0f565ef0f360ce099c2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1041631, "upload_time": "2019-01-09T23:26:33", "url": "https://files.pythonhosted.org/packages/f9/b4/17aae84c0c40b16fe88d93e491fe87e6c7fe7643082dd6e32aad059c4aa5/morpheus-astro-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "446007df6bd51d515cc75e8a14f10a4b", "sha256": "d926be85db4001c4493f437f843d6a1ad170cce31407a80ee0ed3930ec0a6caf" }, "downloads": -1, "filename": "morpheus_astro-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "446007df6bd51d515cc75e8a14f10a4b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1056130, "upload_time": "2019-01-10T23:57:46", "url": "https://files.pythonhosted.org/packages/c8/46/61db494a698fb3b9d09607351fa8d1e5861eaca2b7950ffea06e91f8b4ea/morpheus_astro-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df5051067b597f09bed208ecc7abac6d", "sha256": "76f2f21130edcea09783d664b967b9126bd0621550ba4ebda8e1378b8918a283" }, "downloads": -1, "filename": "morpheus-astro-0.2.0.tar.gz", "has_sig": false, "md5_digest": "df5051067b597f09bed208ecc7abac6d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1044367, "upload_time": "2019-01-10T23:57:48", "url": "https://files.pythonhosted.org/packages/fa/85/e17b87e5c3826159427f62d7b5eb28ea2843f536c575012126b3060b17b4/morpheus-astro-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "634e95a05734cacd85b95c188aae5f8e", "sha256": "fd8bb60c2c6dbae245724b1a74fee1bf011d5574955b4228ee8d02529b5a35aa" }, "downloads": -1, "filename": "morpheus_astro-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "634e95a05734cacd85b95c188aae5f8e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1056135, "upload_time": "2019-01-15T18:22:21", "url": "https://files.pythonhosted.org/packages/ed/4c/4d20798ad650b8ba2e7260dc58c5b5eda542033d3c51dde688b67228a8a9/morpheus_astro-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a74c8e9935cbd97227dcd567a0306762", "sha256": "364d769a7a502f433f6bc240b1eabe897a4fbfae39ef873a8001a88b9f99aa75" }, "downloads": -1, "filename": "morpheus-astro-0.2.1.tar.gz", "has_sig": false, "md5_digest": "a74c8e9935cbd97227dcd567a0306762", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1044405, "upload_time": "2019-01-15T18:22:23", "url": "https://files.pythonhosted.org/packages/21/14/69a067eea62f826e46a0178a2a9578a12382ada10f77e2f5a6a1729f9a34/morpheus-astro-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "b33464c86a85d47acc825c9737e90dea", "sha256": "42e9ff84c36eacaec8df0456a865958d94d7cb50a124967b6f70c54a84198335" }, "downloads": -1, "filename": "morpheus_astro-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b33464c86a85d47acc825c9737e90dea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1056349, "upload_time": "2019-01-15T20:33:56", "url": "https://files.pythonhosted.org/packages/ef/f7/04530c1a9fe67f3c2b3e049f9a70a4de99cb0489f59067870c0919b5deaf/morpheus_astro-0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fea1176fa0766f667372afdbe5764ad3", "sha256": "03cbccbc710643112ea72f1ad18662e4bb9020dfaa80f18cb09dd2dd91b95a34" }, "downloads": -1, "filename": "morpheus-astro-0.2.2.tar.gz", "has_sig": false, "md5_digest": "fea1176fa0766f667372afdbe5764ad3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1044862, "upload_time": "2019-01-15T20:33:58", "url": "https://files.pythonhosted.org/packages/6b/59/9a56b580c1fb49dc8109e0d2431c43091ddfc89fabd0ca7358875483bc3f/morpheus-astro-0.2.2.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "425417159ea0d9d68c1934bed75c6366", "sha256": "292f85338e047db12ee0e1f17d3b69c38e15197b03f7086f47195f4c85430970" }, "downloads": -1, "filename": "morpheus_astro-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "425417159ea0d9d68c1934bed75c6366", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1057950, "upload_time": "2019-02-07T01:12:32", "url": "https://files.pythonhosted.org/packages/c0/5c/11a0c277cbc8de006818c200bebc98a850dd7d8a5d93a10c7a2c4953c497/morpheus_astro-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a463016a3079cd8cea7104d9d1eb87f3", "sha256": "44c60501b7fe42675111214d2fe566b2b9cfd077e34488a85bdee6de96661fa1" }, "downloads": -1, "filename": "morpheus-astro-0.3.0.tar.gz", "has_sig": false, "md5_digest": "a463016a3079cd8cea7104d9d1eb87f3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1047288, "upload_time": "2019-02-07T01:12:34", "url": "https://files.pythonhosted.org/packages/80/c5/de5015e2dc0c0d6950e9579ef63a42ab9bcc98a1ca63522526274d186629/morpheus-astro-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "31e0054f25d3afc36ba653ba78ddc79d", "sha256": "3a5c0f09a0628433133fe258aee59dcc30656133fa27f80a2e431f6206758d8a" }, "downloads": -1, "filename": "morpheus_astro-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "31e0054f25d3afc36ba653ba78ddc79d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1065201, "upload_time": "2019-02-08T08:44:55", "url": "https://files.pythonhosted.org/packages/c8/8a/dcd0442a6d382d3426f7cc7400c807aa4d008d7ae957bba0d013d825a183/morpheus_astro-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "922d02fbacf14ba80b854ddf4062ee1c", "sha256": "ad3d3d92dd9c9456c284f1e7904301630c02974790ab3319960c89f53e50660d" }, "downloads": -1, "filename": "morpheus-astro-0.3.1.tar.gz", "has_sig": false, "md5_digest": "922d02fbacf14ba80b854ddf4062ee1c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1049302, "upload_time": "2019-02-08T08:45:06", "url": "https://files.pythonhosted.org/packages/1c/56/6436b75067db66aa5daf934375c721b837df80c8e417528159fc5a0e4aae/morpheus-astro-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "2eda36abb95bf8b9f19770f6ecb5c781", "sha256": "6ba4814366a987c48812c7f7073ff85b6343ed42bdbd47e928aeca32321fb0d4" }, "downloads": -1, "filename": "morpheus_astro-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2eda36abb95bf8b9f19770f6ecb5c781", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1057869, "upload_time": "2019-02-08T18:55:30", "url": "https://files.pythonhosted.org/packages/d3/cc/ee01666149d293b8c93f50c709b30131a52e0b6b49f1f14bc8bd8cf3c21d/morpheus_astro-0.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10c1d5fc244333310e106068a7f8c0e1", "sha256": "1ee77ec401e6f222fdedab60c851507bd78928379fa2b0000bfbc9ba457d39a6" }, "downloads": -1, "filename": "morpheus-astro-0.3.2.tar.gz", "has_sig": false, "md5_digest": "10c1d5fc244333310e106068a7f8c0e1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1047219, "upload_time": "2019-02-08T18:55:32", "url": "https://files.pythonhosted.org/packages/2f/ea/c7764552efcbe1fb6f1d2793b2077a5c3ae5cb23350650e1efd584e12a87/morpheus-astro-0.3.2.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "31923d4b3dd15bbaa2b285de50b1964b", "sha256": "c9bc86ccc95bdf4ceae0724861c27373be4c6e5ee889d878707409bc4bcb3f3d" }, "downloads": -1, "filename": "morpheus_astro-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "31923d4b3dd15bbaa2b285de50b1964b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1062965, "upload_time": "2019-04-10T22:58:17", "url": "https://files.pythonhosted.org/packages/fe/11/d019ba50033cef67317b6474dfc43814a56c0ef6ab076944f0293dd24d04/morpheus_astro-0.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee333a025fcfedb0b85796022eef90b0", "sha256": "377017ba39139b0a5b3a322c369b854fdb4d0d11e45d35aa2003ecf10f74bce7" }, "downloads": -1, "filename": "morpheus-astro-0.4.0.tar.gz", "has_sig": false, "md5_digest": "ee333a025fcfedb0b85796022eef90b0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1052473, "upload_time": "2019-04-10T22:58:19", "url": "https://files.pythonhosted.org/packages/84/14/1d7066317774f5dc95e947d6f00637e3877a4bc5506c5e813b6802974027/morpheus-astro-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "5a254a0690386cff7a9f7e8fe4058c04", "sha256": "58c2003fd509409858069b8328a5a267cfed8198f76e6d95c9b69d1ebad0bfc9" }, "downloads": -1, "filename": "morpheus_astro-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5a254a0690386cff7a9f7e8fe4058c04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1063225, "upload_time": "2019-04-11T17:30:39", "url": "https://files.pythonhosted.org/packages/44/71/5df4175463f007f1c4c45a6afb60ad1afaf73199f20a42bfb0741435f07d/morpheus_astro-0.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4d3260c0a4f78bcf45533c82c43ef9c", "sha256": "873fc3eda6f7903d51d69fdcc46f569f97e6d4925eb40485f521d63a1663a491" }, "downloads": -1, "filename": "morpheus-astro-0.4.1.tar.gz", "has_sig": false, "md5_digest": "d4d3260c0a4f78bcf45533c82c43ef9c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1052537, "upload_time": "2019-04-11T17:30:41", "url": "https://files.pythonhosted.org/packages/51/e6/0cfe82d6d0ba480d041c933aed3f0f3588888b79a6272e57ce5831dd5fac/morpheus-astro-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "5bfff1e85fbf6d2c81523c0a977cde3d", "sha256": "9bf85087242617497cddaba623d6a52e378a12044fe30ea5867ff0bc8e0e9bb1" }, "downloads": -1, "filename": "morpheus_astro-0.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "5bfff1e85fbf6d2c81523c0a977cde3d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1063227, "upload_time": "2019-04-11T18:58:31", "url": "https://files.pythonhosted.org/packages/f4/7b/9e75bfb60bb43781d3db2b79710550326345bfb6488e0f6305bf5fe226f1/morpheus_astro-0.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aba30a95d076bd2dd4c9cf51982e7318", "sha256": "df78171d032bb812c085d1a18d9c09b8713f5d541538c5faf8d81dd0e94ae652" }, "downloads": -1, "filename": "morpheus-astro-0.4.2.tar.gz", "has_sig": false, "md5_digest": "aba30a95d076bd2dd4c9cf51982e7318", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1052540, "upload_time": "2019-04-11T18:58:34", "url": "https://files.pythonhosted.org/packages/cb/67/91ad4fe5f66c967b45252f1e418db39e221f1ea2a704f25be217405458cb/morpheus-astro-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "d90ce2f3b46df811953d4b2312c3e860", "sha256": "64ecc2efaed6e465e52e980bb8d0318e48350ec94bfe0af5ff7762150208af6c" }, "downloads": -1, "filename": "morpheus_astro-0.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "d90ce2f3b46df811953d4b2312c3e860", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1063405, "upload_time": "2019-04-16T21:09:26", "url": "https://files.pythonhosted.org/packages/c7/77/2fd828d32229007a6eb0c798e632efb5963b957c6f1ed69f6e1db221f983/morpheus_astro-0.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7fc7b3aafc81ee6dc3d630ee38fff50e", "sha256": "006415c42b3ae6f75018db654f77a7c1fdf79ffe8bc03f8dd84b2986aab8f4f7" }, "downloads": -1, "filename": "morpheus-astro-0.4.3.tar.gz", "has_sig": false, "md5_digest": "7fc7b3aafc81ee6dc3d630ee38fff50e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1052622, "upload_time": "2019-04-16T21:09:28", "url": "https://files.pythonhosted.org/packages/0a/6a/bcf27761e3f535456199b19a95b3e4ffb30c5fb7aff980de5ac8900cda01/morpheus-astro-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "825def1d00022b67835dc2fa7fca5a16", "sha256": "129ff40550b6b831ca02217e8a00174fe477626634059483c94a6f58a6d67281" }, "downloads": -1, "filename": "morpheus_astro-0.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "825def1d00022b67835dc2fa7fca5a16", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1066350, "upload_time": "2019-04-17T00:21:41", "url": "https://files.pythonhosted.org/packages/20/76/27de9f0165752eca2b634b6c4fc810bb10e118e866aee23b00b2b49dfcce/morpheus_astro-0.4.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64aa2ee2daf4624cef88772caa0fab3a", "sha256": "49ebeb9d9da37fd2bf99f56b819527821c690c46c4f543288cf4b84a4d3b9119" }, "downloads": -1, "filename": "morpheus-astro-0.4.4.tar.gz", "has_sig": false, "md5_digest": "64aa2ee2daf4624cef88772caa0fab3a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1051705, "upload_time": "2019-04-17T00:21:43", "url": "https://files.pythonhosted.org/packages/f7/fd/d193d3a320539c70f894a50308e5445a14cd56d5956aed143164604fee8c/morpheus-astro-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "18b6968aac449ae4bdc6190d410a88d4", "sha256": "807717d2935ed09f4cc9494f866b77e93d89b4244fa15da372a50e6942480ae6" }, "downloads": -1, "filename": "morpheus_astro-0.4.5-py3-none-any.whl", "has_sig": false, "md5_digest": "18b6968aac449ae4bdc6190d410a88d4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1066351, "upload_time": "2019-04-18T00:31:13", "url": "https://files.pythonhosted.org/packages/39/b0/e6dc7128eaf3143bf133ce90178853471f4edf58f2ef00fe09fc6825e8e1/morpheus_astro-0.4.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f3131b6d5a65518492e2ab1195e548e", "sha256": "0864cbeb8f88f1c5b676c56a27bea188bbb1708245e2d9c512b662c67f5c22f4" }, "downloads": -1, "filename": "morpheus-astro-0.4.5.tar.gz", "has_sig": false, "md5_digest": "3f3131b6d5a65518492e2ab1195e548e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1051698, "upload_time": "2019-04-18T00:31:14", "url": "https://files.pythonhosted.org/packages/ac/27/dfda90470a24e0869da5685920de1380fb73b80cc204d78c73aef22ed7f2/morpheus-astro-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "f3ba7ac5dd5701ddb47591517eea1a9b", "sha256": "d2e7b2c4c7f96c801464f147459c250e480d37096a9f1d250e97af7758a6fdfc" }, "downloads": -1, "filename": "morpheus_astro-0.4.6-py3-none-any.whl", "has_sig": false, "md5_digest": "f3ba7ac5dd5701ddb47591517eea1a9b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1066348, "upload_time": "2019-04-18T17:36:15", "url": "https://files.pythonhosted.org/packages/66/94/7bbef548bf3cfda493a8c437d587a3abc8b34db39752294d4c5de4da91e0/morpheus_astro-0.4.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7fb3c962294a33552c65569018346316", "sha256": "45842f5f46b85f43bd2b03947d774bfbfdf50d06fc1702c9ea28aedb2a414e6c" }, "downloads": -1, "filename": "morpheus-astro-0.4.6.tar.gz", "has_sig": false, "md5_digest": "7fb3c962294a33552c65569018346316", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1051689, "upload_time": "2019-04-18T17:36:17", "url": "https://files.pythonhosted.org/packages/1a/27/95017d34b62389ea4ff64700dfd10c587c333e13846e335da63d6cf94ef5/morpheus-astro-0.4.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f3ba7ac5dd5701ddb47591517eea1a9b", "sha256": "d2e7b2c4c7f96c801464f147459c250e480d37096a9f1d250e97af7758a6fdfc" }, "downloads": -1, "filename": "morpheus_astro-0.4.6-py3-none-any.whl", "has_sig": false, "md5_digest": "f3ba7ac5dd5701ddb47591517eea1a9b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1066348, "upload_time": "2019-04-18T17:36:15", "url": "https://files.pythonhosted.org/packages/66/94/7bbef548bf3cfda493a8c437d587a3abc8b34db39752294d4c5de4da91e0/morpheus_astro-0.4.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7fb3c962294a33552c65569018346316", "sha256": "45842f5f46b85f43bd2b03947d774bfbfdf50d06fc1702c9ea28aedb2a414e6c" }, "downloads": -1, "filename": "morpheus-astro-0.4.6.tar.gz", "has_sig": false, "md5_digest": "7fb3c962294a33552c65569018346316", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1051689, "upload_time": "2019-04-18T17:36:17", "url": "https://files.pythonhosted.org/packages/1a/27/95017d34b62389ea4ff64700dfd10c587c333e13846e335da63d6cf94ef5/morpheus-astro-0.4.6.tar.gz" } ] }