{ "info": { "author": "Eugen Wintersberger, Dominik Kriegner", "author_email": "eugen.wintersberger@desy.de, dominik.kriegner@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "Programming Language :: C", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Physics" ], "description": "xrayutilities\r\n=============\r\n\r\n[![Build\r\nStatus Travis CI](https://travis-ci.org/dkriegner/xrayutilities.svg?branch=master)](https://travis-ci.org/dkriegner/xrayutilities)\r\n[![Build Status AppVeyor](https://ci.appveyor.com/api/projects/status/t8cb5jj0atklxay3/branch/master?svg=true)](https://ci.appveyor.com/project/dkriegner/xrayutilities)\r\n\r\n\r\nxrayutilities is a collection of scripts used to analyze and simulate x-ray\r\ndiffraction data. It consists of a Python package and several routines coded\r\nin C. For analysis the package is especially useful for the reciprocal space\r\nconversion of diffraction data taken with linear and area detectors. For\r\nsimulations code for X-ray reflectivity, kinematical and dynamical diffraction\r\nsimulation of crystal truncation rods as well as fundamental parameters powder\r\ndiffraction is included.\r\n\r\n\r\nCopyright (C) 2009-2018 Dominik Kriegner \r\n\r\nCopyright (C) 2009-2013 Eugen Wintersberger \r\n\r\n\r\nMailing list and issue tracker\r\n------------------------------\r\n\r\nTo get in touch with us or report an issue please use the mailing list\r\n(https://sourceforge.net/p/xrayutilities/mailman/xrayutilities-users/) or the\r\nGithub issue tracker (https://github.com/dkriegner/xrayutilities/issues). When\r\nyou want to follow announcements of major changes or new releases its\r\nrecommended to [sign up for the mailing\r\nlist](https://sourceforge.net/projects/xrayutilities/lists/xrayutilities-users)\r\n\r\n\r\nContents\r\n--------\r\n\r\n* *examples*: directory with example scripts and configurations\r\n* *xrayutilities*: directory with the sources for the Python package\r\n* *tests*: directory with the unittest scripts\r\n* *setup.py*: distutils install script used for the package installation\r\n* *xrayutilities.pdf*: pdf-file with documentation of the package\r\n\r\n\r\nInstallation (pip)\r\n==================\r\nUsing the python package manager pip you can install xrayutilities by executing\r\n\r\n pip install xrayutilities\r\n\r\nor for a user installation (without admin access) use\r\n\r\n pip install --user xrayutilities\r\n\r\nIf installation using above's command fails due to missing OpenMP libraries, use\r\n\r\n pip install --global-option=\"--without-openmp\" xrayutilities\r\n\r\n\r\nInstallation (source)\r\n=====================\r\nInstalling xrayutilities from source is an easy process done by executing\r\n\r\n python setup.py install\r\n\r\nor\r\n\r\n python setup.py install --prefix=\r\n\r\nin the source folder of xrayutilities on the command line/terminal. The first\r\ncommand installs in the systems default directories, whereas in the second\r\ncommand you can manually specify the installation path.\r\n\r\nBy default the setup.py script tries to use OpenMP. If you do not want to use\r\nOpenMP or do not have it available use the *--without-openmp* option for the\r\ninstallation:\r\n\r\n python setup.py --without-openmp install --prefix=\r\n\r\nRequirements\r\n------------\r\nThe following requirements are needed for installing and using *xrayutilities*:\r\n\r\n- Python (version 2.7 or >= 3.2)\r\n- C-compiler (preferential with OpenMP support)\r\n- h5py\r\n- scipy (version >= 0.13.0)\r\n- numpy (version >= 1.8)\r\n- setuptools (to provide the pkg_resources module)\r\n- lmfit (optional)\r\n- matplotlib (optional)\r\n- python-lzma (optional)\r\n\r\nWhen building from source you also might need:\r\n\r\n- python dev headers\r\n- unittest2 (optional - only if you want to run the tests)\r\n- sphinx (optional - only when you want to build the documentation)\r\n- numpydoc (optional - only when you want to build the documentation)\r\n\r\nrefer to your operating system documentation to find out how to install\r\nthose packages. On Microsoft Windows refer to the Documentation for the\r\neasiest way of the installation (Python(x,y) or WinPython).\r\n\r\nPython-2.7 and Python-3.X compatibility\r\n=======================================\r\n\r\nThe current development focuses on Python-3.X and we ask all users to update to\r\nPython-3 if possible, however, xrayutilities can be used with Python-2.7 as\r\nwell. Care was taken to make this possible from the same code-base.\r\n\r\nThe Python package configuration\r\n================================\r\n\r\nThe following steps should only be necessary for user local installation to\r\nensure the Python module is found by the Python interpreter:\r\nIn this case the module is installed under\r\n*/lib[64]/python?.?/site-packages* on Unix systems and\r\n*/Lib/site-packages* on Windows systems.\r\n\r\nIf you have installed the Python package in a directory unknown to your local\r\nPython distribution, you have to tell Python where to look for the Package.\r\nThere are several ways how to do this:\r\n\r\n- add the directory where the package is installed to your\r\n *PYTHONPATH* environment variable.\r\n\r\n- add the path to sys.path in the *.pythonrc* file placed in your home\r\n directory\r\n\r\n import sys\r\n sys.path.append(\"path to the xrayutilities package\")\r\n\r\n- simply apply the previous method in every script where you want to\r\n use the xrayutilities package before importing the package\r\n\r\n import sys\r\n sys.path.append(\"path to the xrayutilities package\")\r\n import xrayutilities\r\n\r\nObtaining the source code\r\n=========================\r\n\r\nThe sources are hosted on sourceforge in git repository.\r\nUse\r\n\r\n git clone https://github.com/dkriegner/xrayutilities.git\r\n\r\nto clone the git repository. If you would like to have commit rights\r\ncontact one of the administrators.\r\n\r\nUpdate\r\n======\r\n\r\nif you already installed xrayutilities you can update it by navigating into\r\nits source folder and obtain the new sources by ::\r\n\r\n git pull\r\n\r\nor download the new tarball from sourceforge\r\n(http://sf.net/projects/xrayutilities) if any code changed during the update you\r\nneed to reinstall the Python package. To determine the path in which\r\nxrayutilities where installed previously use\r\n\r\n python -c \"import xrayutilities as xu; print xu.__file__\"\r\n /usr/local/lib64/python2.7/site-packages/xrayutilities/__init__.pyc\r\n\r\nif the output is e.g.: */usr/local/lib64/python2.7/site-packages/xrayutilities/__init__.py*\r\nyou previously installed xrayutilities in */usr/local*, which should be used\r\nagain as install path. Use ::\r\n\r\n python setup.py install --prefix=\r\n\r\nto install the updated package.\r\n\r\n\r\nDocumentation\r\n=============\r\n\r\nDocumentation for xrayutilities is found in the *xrayutilities.pdf* file or on the\r\nwebpage http://xrayutilities.sourceforge.io\r\n\r\nThe API-documentation can also be browsed by\r\n\r\n pydoc -p PORT\r\n\r\nin any web-browser, after the installation is finished.\r\n\r\n\r\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://xrayutilities.sourceforge.net", "keywords": "", "license": "GPLv2", "maintainer": "Dominik Kriegner", "maintainer_email": "dominik.kriegner@gmail.com", "name": "xrayutilities", "package_url": "https://pypi.org/project/xrayutilities/", "platform": "", "project_url": "https://pypi.org/project/xrayutilities/", "project_urls": { "Homepage": "http://xrayutilities.sourceforge.net" }, "release_url": "https://pypi.org/project/xrayutilities/1.5.3/", "requires_dist": [ "numpy (>=1.9.2)", "scipy (>=0.11.0)", "h5py", "setuptools", "lmfit ; extra == 'fit'", "lzma ; extra == 'lzma'", "matplotlib ; extra == 'plot'" ], "requires_python": "", "summary": "package for x-ray diffraction data evaluation", "version": "1.5.3" }, "last_serial": 5948953, "releases": { "0.99.1": [ { "comment_text": "", "digests": { "md5": "678ff1b51b7b656605b06312ae28fc4f", "sha256": "ab73ac1ae07e8e924f1b0932ddfc2e64ddaec8ce8ff5d9797c5513aeca75972d" }, "downloads": -1, "filename": "xrayutilities-0.99.1.tar.gz", "has_sig": false, "md5_digest": "678ff1b51b7b656605b06312ae28fc4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9354933, "upload_time": "2013-07-03T09:52:11", "url": "https://files.pythonhosted.org/packages/02/13/141dec54c7df74f623d945731c6add4bad2210205594afb8d7817cf00885/xrayutilities-0.99.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "79ea5527e63c0e0cc2db4b24dc864eef", "sha256": "45fccab17a66954d0960bca1f6b55978484f181efdaa6d4cd23ea67686ae4d38" }, "downloads": -1, "filename": "xrayutilities-0.99.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "79ea5527e63c0e0cc2db4b24dc864eef", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5398561, "upload_time": "2013-07-03T10:19:03", "url": "https://files.pythonhosted.org/packages/2e/3e/a9eb408a0cde11cacb9711b72090690b7606f9617849ccbccab212f00ae7/xrayutilities-0.99.1.win32-py2.7.exe" } ], "0.99.2": [ { "comment_text": "", "digests": { "md5": "f71498319e8b8a3d74d8deb3e8b873e6", "sha256": "3b718a32decee2556364b173f450432ef24b4e03045d9974d1e27dcfed841d55" }, "downloads": -1, "filename": "xrayutilities-0.99.2.tar.gz", "has_sig": false, "md5_digest": "f71498319e8b8a3d74d8deb3e8b873e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9368243, "upload_time": "2013-07-18T07:49:36", "url": "https://files.pythonhosted.org/packages/50/b9/06edcd79a1165fc9184e94f13eead8327531d59d81e9850262c64b2b5c21/xrayutilities-0.99.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "e5a2f60717c34b3b8e5f2058ce2bca98", "sha256": "91fc1d9324fc41a9ba013dcd043fdce38688d5b254468af223ea9249892da893" }, "downloads": -1, "filename": "xrayutilities-0.99.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "e5a2f60717c34b3b8e5f2058ce2bca98", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5399270, "upload_time": "2013-07-18T07:50:30", "url": "https://files.pythonhosted.org/packages/17/6a/fc4642ccf83ecfa7196b17948dafda704d7cefc85863d69cadffbc08bc1a/xrayutilities-0.99.2.win32-py2.7.exe" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "f8a52d97a0f0fee98b057c36762fe185", "sha256": "20729741c0c6676d335d1aec3fb73e3df8efc8d35bc490e12a1af55d877e9b3c" }, "downloads": -1, "filename": "xrayutilities-1.0.tar.gz", "has_sig": false, "md5_digest": "f8a52d97a0f0fee98b057c36762fe185", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9367128, "upload_time": "2013-07-22T13:58:37", "url": "https://files.pythonhosted.org/packages/10/76/a4ee16bab7c04ee6bf4e02576e6dc66eca8424da6a524ccc13c79d0e2761/xrayutilities-1.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "77737c4dd478a6e8af46fcdc0af6781f", "sha256": "fc560f7850401268d82a7cd65c7284dbe702df0050a569c4700c2503b58179e3" }, "downloads": -1, "filename": "xrayutilities-1.0.win32-py2.7.exe", "has_sig": false, "md5_digest": "77737c4dd478a6e8af46fcdc0af6781f", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5400334, "upload_time": "2013-07-22T14:00:37", "url": "https://files.pythonhosted.org/packages/fe/d9/76f50188e163e73601406b8ca08e2c1a6d131e799f6513d09fdb55491215/xrayutilities-1.0.win32-py2.7.exe" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "7cf334c9e58aef76f35cd70d1d548c41", "sha256": "9ab9d2f3ad60057cd558ab47e2adfb604af80eaddd32b55c6a44c904e03de4c2" }, "downloads": -1, "filename": "xrayutilities-1.0.1.tar.gz", "has_sig": false, "md5_digest": "7cf334c9e58aef76f35cd70d1d548c41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9370161, "upload_time": "2013-09-14T10:22:27", "url": "https://files.pythonhosted.org/packages/35/9b/bbe05fee56278328d71e21ac170efa92f6476d7288b1cfbe1cc9ae2715e6/xrayutilities-1.0.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "d2328d812a10fefe6e54f6f44b61fe87", "sha256": "cb638e0ed532c876e6cf2ba5b901abf7d61ba0366aa699016d9f9761efd68b46" }, "downloads": -1, "filename": "xrayutilities-1.0.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "d2328d812a10fefe6e54f6f44b61fe87", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5401132, "upload_time": "2013-09-14T10:23:46", "url": "https://files.pythonhosted.org/packages/66/c7/c0f4001977703f5939e4b028910c79e04b2650a23a3bf2afb800aad65551/xrayutilities-1.0.1.win32-py2.7.exe" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "aa4d63fbd68ec9e9aeed1fe2000fc539", "sha256": "12a7517741980412c8ee13a35aa6d911f46bcc0786767127cb934365a1fa71b8" }, "downloads": -1, "filename": "xrayutilities-1.0.2.tar.gz", "has_sig": false, "md5_digest": "aa4d63fbd68ec9e9aeed1fe2000fc539", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9528563, "upload_time": "2013-09-17T11:56:49", "url": "https://files.pythonhosted.org/packages/3a/09/755498990c87a860f3c9cd92c24d6811dd770194d89e92c604229c6e7e16/xrayutilities-1.0.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "b18f15dcecf14a09aa927a625c6bbb89", "sha256": "15822f431d3b07f9efa4798fa359348c74d4e12e3ee5a8ccb1723121f4e98c6a" }, "downloads": -1, "filename": "xrayutilities-1.0.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "b18f15dcecf14a09aa927a625c6bbb89", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5402476, "upload_time": "2013-09-17T11:58:09", "url": "https://files.pythonhosted.org/packages/6a/92/87086a263887ff5185ba183fae313dd186baaa06460f3e4ceb026c1276e2/xrayutilities-1.0.2.win32-py2.7.exe" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "9dabd8f56aed9d2c20507c3eaa7869b2", "sha256": "a31599b41e03a5f15fa30d00ec466731e4e894573d1d47ee405192f5967ec24b" }, "downloads": -1, "filename": "xrayutilities-1.0.3.tar.gz", "has_sig": false, "md5_digest": "9dabd8f56aed9d2c20507c3eaa7869b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9428583, "upload_time": "2013-10-24T22:42:34", "url": "https://files.pythonhosted.org/packages/c3/97/9fed0dd27373131ff387a65a34f99771024a286806816a0e2b49a4d2bd1a/xrayutilities-1.0.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "b8d12ff409cf51367d8c5978b097761a", "sha256": "3bfe2f86f3e1a844b3c8f8576516ec90af1e7f3a23151ea0c2b3ca5680637a0a" }, "downloads": -1, "filename": "xrayutilities-1.0.3.win32-py2.7.exe", "has_sig": false, "md5_digest": "b8d12ff409cf51367d8c5978b097761a", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5403211, "upload_time": "2013-10-24T22:45:15", "url": "https://files.pythonhosted.org/packages/65/6d/8465eb692790177b2582a698c8bf62affba9b3915b90d3f781f58ecbdb5c/xrayutilities-1.0.3.win32-py2.7.exe" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "dbb54d7a4a43ed8001a9fcd1e697d50a", "sha256": "b9b718d26915a321dfb92fe78e37f2a4d30170f1a75ae6b3148ee4e13f6bfd80" }, "downloads": -1, "filename": "xrayutilities-1.0.4.tar.gz", "has_sig": false, "md5_digest": "dbb54d7a4a43ed8001a9fcd1e697d50a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9449067, "upload_time": "2013-12-22T13:42:55", "url": "https://files.pythonhosted.org/packages/33/41/8eb2da859640b2892c8ec025334cc0520c65c3e9aa26857266ccec31ffab/xrayutilities-1.0.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "78aacf1d2ae49cd170c1004fbc72a667", "sha256": "0808ee5e14740b8c5f0225d907a8267069ae9bead7b7e9cad8df991a664b5c86" }, "downloads": -1, "filename": "xrayutilities-1.0.4.win32-py2.7.exe", "has_sig": false, "md5_digest": "78aacf1d2ae49cd170c1004fbc72a667", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5410919, "upload_time": "2013-12-22T13:57:33", "url": "https://files.pythonhosted.org/packages/d7/09/c2ae5a7d07b10a09ac345523d3a01038cc5ba346f1093381394ff90844e7/xrayutilities-1.0.4.win32-py2.7.exe" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "bfcf43b901cb5c17537553077cc4e015", "sha256": "632f1b7daf005f937b2c4fda752de048d3fbdd574d3fec2831cf580a8e54fb5c" }, "downloads": -1, "filename": "xrayutilities-1.0.5.tar.gz", "has_sig": false, "md5_digest": "bfcf43b901cb5c17537553077cc4e015", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8573935, "upload_time": "2014-02-09T21:55:47", "url": "https://files.pythonhosted.org/packages/b1/4b/73aa60f38a9cfce0ea1a94e1d21fbaf25bad82ae22d5e5c5024d9f014bec/xrayutilities-1.0.5.tar.gz" }, { "comment_text": "", "digests": { "md5": "ddf9a6a9ef6f1c2a670e172600415320", "sha256": "f92c6b7bf996cb41e5dc15e36422ed5e9abcbb25782e54e564b8168cd3d85162" }, "downloads": -1, "filename": "xrayutilities-1.0.5.win32-py2.7.exe", "has_sig": false, "md5_digest": "ddf9a6a9ef6f1c2a670e172600415320", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5411774, "upload_time": "2014-02-10T17:12:38", "url": "https://files.pythonhosted.org/packages/69/7c/56db97e7ec071d7566e3a6e6b148a2c0ad318f17c75fd00c5c0b1c7e0c60/xrayutilities-1.0.5.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "8716e910bd42abab5165830a6cd005b6", "sha256": "139e731aa5380164912dc633cce18685865770b0638ff83640f28c8d6df11312" }, "downloads": -1, "filename": "xrayutilities-1.0.5.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "8716e910bd42abab5165830a6cd005b6", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5435289, "upload_time": "2014-02-12T18:38:01", "url": "https://files.pythonhosted.org/packages/42/1f/b5df254e8669a1ad54e59f830c4c6a5091bb5032dcc8eadb917ed50fe137/xrayutilities-1.0.5.win-amd64-py2.7.exe" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "743b8cf3d7ab07b82a9907bc3befdf0b", "sha256": "4529b1c6f8b04c4e55a6f41c37ed64e33fad73ca179ff02815637df77baccba2" }, "downloads": -1, "filename": "xrayutilities-1.0.6.tar.gz", "has_sig": false, "md5_digest": "743b8cf3d7ab07b82a9907bc3befdf0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8589356, "upload_time": "2014-04-15T16:06:46", "url": "https://files.pythonhosted.org/packages/2c/9c/d4bae4a44161cdec684bd35d18034e3d0ef864fe39d5ae88229c41575a5e/xrayutilities-1.0.6.tar.gz" }, { "comment_text": "", "digests": { "md5": "2137798f0c8a68b02fdb6286cb50a006", "sha256": "a8ca35003581b3e9603c20478d0f8697ce94296c0f95d5762992b4ea79e74e87" }, "downloads": -1, "filename": "xrayutilities-1.0.6.win32-py2.7.exe", "has_sig": false, "md5_digest": "2137798f0c8a68b02fdb6286cb50a006", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5419136, "upload_time": "2014-04-15T20:03:20", "url": "https://files.pythonhosted.org/packages/4b/77/53194cb2e7322537e9027900e3fd44dc426fcf3eb19efbd7652e46999a66/xrayutilities-1.0.6.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "7ed7b6fba539ecbfc66b7b741e97d079", "sha256": "509f3d1e9ce7daaaccdc7e18d3c72e9d92433e65e30598b0889e268c2363bb70" }, "downloads": -1, "filename": "xrayutilities-1.0.6.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "7ed7b6fba539ecbfc66b7b741e97d079", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 5444485, "upload_time": "2014-04-16T09:21:17", "url": "https://files.pythonhosted.org/packages/2f/65/5531e9986ad26787d86db425357655ceb0e8c68f7310ee7204226a122bb2/xrayutilities-1.0.6.win-amd64-py2.7.exe" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "22efb3afc2e28940ebb4b211b154b0f7", "sha256": "4aba89b3044a6a83ef29c020813534fb9df880fb61a36bc187cc4cf7136ba9af" }, "downloads": -1, "filename": "xrayutilities-1.1.0.tar.gz", "has_sig": false, "md5_digest": "22efb3afc2e28940ebb4b211b154b0f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11537689, "upload_time": "2014-10-09T16:28:03", "url": "https://files.pythonhosted.org/packages/b4/21/61bd37b761ef80fe65107e7286320cc4ab262a889594fc974427b7ea9611/xrayutilities-1.1.0.tar.gz" }, { "comment_text": "32-bit", "digests": { "md5": "3ee82866c0955265264e6821edb7f2fa", "sha256": "71d506300a67e698f514431499f798c887beb4838e9088b59496e5399cafb3cc" }, "downloads": -1, "filename": "xrayutilities-1.1.0.win32-py2.7.exe", "has_sig": false, "md5_digest": "3ee82866c0955265264e6821edb7f2fa", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3744652, "upload_time": "2014-10-09T16:29:27", "url": "https://files.pythonhosted.org/packages/1f/d1/299a076b86317ce932341c5003a8a5dc9954c24492ef57fd1b7c5926b55f/xrayutilities-1.1.0.win32-py2.7.exe" }, { "comment_text": "32-bit", "digests": { "md5": "2360ac659ef4659bf01c5617ac5b9311", "sha256": "f2aa62f1a440a5f618f79fe693f1f623b314fe530d596c09bb6ec4d90f0ac3a2" }, "downloads": -1, "filename": "xrayutilities-1.1.0.win32-py3.3.exe", "has_sig": false, "md5_digest": "2360ac659ef4659bf01c5617ac5b9311", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 3737695, "upload_time": "2014-10-09T18:31:04", "url": "https://files.pythonhosted.org/packages/80/50/55eceaf5323517e2a101be7ce68822a7e7a0a8e7a6e1bc13d62146262569/xrayutilities-1.1.0.win32-py3.3.exe" }, { "comment_text": "64-bit", "digests": { "md5": "6466b0cb711ad6d51fc2a05d0fa8b071", "sha256": "5be99f96b077cf6792cb3deaf2c9c7a8d2cbaacdc11951b8be307e76a7bce252" }, "downloads": -1, "filename": "xrayutilities-1.1.0.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "6466b0cb711ad6d51fc2a05d0fa8b071", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3781026, "upload_time": "2014-10-09T16:29:49", "url": "https://files.pythonhosted.org/packages/e9/30/69ced4d9cb79fd3d7c9c51c99e87e372d0e867f66f6c52850e5a6416b197/xrayutilities-1.1.0.win-amd64-py2.7.exe" }, { "comment_text": "64-bit", "digests": { "md5": "df19bfb2969c2f187dfec386f0d393a2", "sha256": "07aae76be799e94d3fa057d24195161bf2f490bc4d30da2cd11530468cfa7233" }, "downloads": -1, "filename": "xrayutilities-1.1.0.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "df19bfb2969c2f187dfec386f0d393a2", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 3776110, "upload_time": "2014-10-09T18:31:39", "url": "https://files.pythonhosted.org/packages/93/35/380ed4660f0c69b963a78ceefd6a00c8aaf3016c084909dcceb7f00d4d08/xrayutilities-1.1.0.win-amd64-py3.3.exe" } ], "1.1.0-beta": [ { "comment_text": "", "digests": { "md5": "7264873867c14452b9ce5bd8b8594ee7", "sha256": "c08d5c75ff839dd26d3d5d14c41ac203c164170aae3cd34d3c0d20aa3635ece5" }, "downloads": -1, "filename": "xrayutilities-1.1.0-beta.tar.gz", "has_sig": false, "md5_digest": "7264873867c14452b9ce5bd8b8594ee7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11586855, "upload_time": "2014-09-16T12:34:24", "url": "https://files.pythonhosted.org/packages/d9/eb/a166a7e2d81c2afb60edddad79bbc7266e3d8a34ae32861a6504b0e4334a/xrayutilities-1.1.0-beta.tar.gz" }, { "comment_text": "", "digests": { "md5": "c1a776123c296535b5fe55e436a3e1e1", "sha256": "97ebf0f966b3a2cd3d9f9a8bb0c2aea3db12f88b8d8c79923ad1d7f01b20f846" }, "downloads": -1, "filename": "xrayutilities-1.1.0-beta.win32-py2.7.exe", "has_sig": false, "md5_digest": "c1a776123c296535b5fe55e436a3e1e1", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3738709, "upload_time": "2014-09-16T12:40:45", "url": "https://files.pythonhosted.org/packages/8f/f7/d05d76a02a554d1bddaa74b95356c4a853170f07fdae3a3f2454641f5340/xrayutilities-1.1.0-beta.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "1fab7db64e5becdbba57ab7caee30f08", "sha256": "790ace3c946907c321ede2915c9cd5b35090f68a8504d97d551f5ebc19aef140" }, "downloads": -1, "filename": "xrayutilities-1.1.0-beta.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "1fab7db64e5becdbba57ab7caee30f08", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3775220, "upload_time": "2014-09-16T12:41:29", "url": "https://files.pythonhosted.org/packages/81/c6/48f4d6836bfda5c4bbfe327ff96045718e2720a32a7c3457d5296e4d86d1/xrayutilities-1.1.0-beta.win-amd64-py2.7.exe" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "344fd57a3542937240e772257a080e18", "sha256": "2c932053fcbe0272c6b01b6d4628bad9fdc72358beb832d54b104f78fdb2cc86" }, "downloads": -1, "filename": "xrayutilities-1.1.1.tar.gz", "has_sig": false, "md5_digest": "344fd57a3542937240e772257a080e18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11556156, "upload_time": "2015-01-22T10:21:35", "url": "https://files.pythonhosted.org/packages/06/96/3f33df1ca7d0d7607b5b247e3f03679d89df2f9cdd65d6af0762ef6ebfc3/xrayutilities-1.1.1.tar.gz" }, { "comment_text": "prepared with Winpython + VS2008", "digests": { "md5": "f707b632146ed323b5156def9e6cbab3", "sha256": "a22850020f950cdc92001bdc6322acb73706ed3621d0872c204bfeda5f6b0125" }, "downloads": -1, "filename": "xrayutilities-1.1.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "f707b632146ed323b5156def9e6cbab3", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3754559, "upload_time": "2015-01-22T11:30:24", "url": "https://files.pythonhosted.org/packages/5c/90/68849bc75034c79e241764e3f3661113e6cf21ef03501e6771b75dff7f15/xrayutilities-1.1.1.win32-py2.7.exe" }, { "comment_text": "prepared with Winpython + VS2008", "digests": { "md5": "8e2f195768de366a7eb30b55ad5c7df0", "sha256": "4e0d98aa2df44b4e036f4765db66390c15975fe98d9d316f8e0519f05b110732" }, "downloads": -1, "filename": "xrayutilities-1.1.1.win32-py3.3.exe", "has_sig": false, "md5_digest": "8e2f195768de366a7eb30b55ad5c7df0", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 3749387, "upload_time": "2015-01-22T11:30:39", "url": "https://files.pythonhosted.org/packages/8c/e7/0b4cbe89f719ef5a2855a905bfd13754d876a08c1988b35d58258fb5b2d0/xrayutilities-1.1.1.win32-py3.3.exe" }, { "comment_text": "prepared with Winpython + VS2008", "digests": { "md5": "ce4afc828951dc6af552c8f5af3d5cc7", "sha256": "9e65ae0870fd0b6bc5129e6a1035e3d6ed91c5ad46c68b05653342be10c8dd73" }, "downloads": -1, "filename": "xrayutilities-1.1.1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "ce4afc828951dc6af552c8f5af3d5cc7", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3792175, "upload_time": "2015-01-22T11:29:51", "url": "https://files.pythonhosted.org/packages/6b/0f/c3c2b395af82212f93b19730a7b56cf965d6a9017febe6306285b5565b69/xrayutilities-1.1.1.win-amd64-py2.7.exe" }, { "comment_text": "prepared with Winpython + VS2008", "digests": { "md5": "555622f7209a379a0bd59362f33e38d0", "sha256": "45dc612415ee6b3bd4f1cf374818eb2a2b5b1f6e5c5cbd0ca45c986519b51ae1" }, "downloads": -1, "filename": "xrayutilities-1.1.1.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "555622f7209a379a0bd59362f33e38d0", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 3790642, "upload_time": "2015-01-22T11:30:07", "url": "https://files.pythonhosted.org/packages/17/75/0218fbca30f18b05fbef026a6b5b2e65e3cce106eceba4959b5cfd60d65c/xrayutilities-1.1.1.win-amd64-py3.3.exe" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "64de16c5ee228c52c19bad41e5fa1a4a", "sha256": "2cb739949938206d0d08fb2aeaa8dd790cd4c36f1f2524e3ff324c43e5c4c515" }, "downloads": -1, "filename": "xrayutilities-1.1.2.tar.gz", "has_sig": false, "md5_digest": "64de16c5ee228c52c19bad41e5fa1a4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11481448, "upload_time": "2015-04-22T12:20:46", "url": "https://files.pythonhosted.org/packages/00/11/b01efc9444099dfbcc49cbce65395caf0c846823939ebda947adb0603a3a/xrayutilities-1.1.2.tar.gz" }, { "comment_text": "prepared with WinPython", "digests": { "md5": "0df50f3d6c6d1a7b3448231edf685af2", "sha256": "62eed49558a9afb5d74349a635e008f0bf19755f8ed4e02c7601ded86a1c41b0" }, "downloads": -1, "filename": "xrayutilities-1.1.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "0df50f3d6c6d1a7b3448231edf685af2", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3756718, "upload_time": "2015-04-22T12:56:03", "url": "https://files.pythonhosted.org/packages/ab/54/41888369eb05ea101f5fec0beb61bad755bd1b477fc98d33576a6d47220d/xrayutilities-1.1.2.win32-py2.7.exe" }, { "comment_text": "prepared with WinPython", "digests": { "md5": "9cb24b1331b59ba22df3d4f36f11c172", "sha256": "0a1cf527aac379609591409a65908aa0d5fd9289cd8f31e4cc7548f63db992c1" }, "downloads": -1, "filename": "xrayutilities-1.1.2.win32-py3.3.exe", "has_sig": false, "md5_digest": "9cb24b1331b59ba22df3d4f36f11c172", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 3751547, "upload_time": "2015-04-22T12:56:28", "url": "https://files.pythonhosted.org/packages/59/95/41883684126e24c3f1cfaee41fd9ae2433c2ec04f65d365da497b6d7ad81/xrayutilities-1.1.2.win32-py3.3.exe" }, { "comment_text": "prepared with WinPython", "digests": { "md5": "417e5fecbb4f127d9b094331be2cce61", "sha256": "8dffb9f2c4d2de5ac9ed271c92c4c5e4b51b373d9594dafa2fd202c4963c0edb" }, "downloads": -1, "filename": "xrayutilities-1.1.2.win32-py3.4.exe", "has_sig": false, "md5_digest": "417e5fecbb4f127d9b094331be2cce61", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 3751481, "upload_time": "2015-04-22T12:56:57", "url": "https://files.pythonhosted.org/packages/90/6c/4ec3e4faab012727c2c11241ae4eb1e5629a21e724fffdaca46c5dd43e55/xrayutilities-1.1.2.win32-py3.4.exe" }, { "comment_text": "prepared with WinPython 64bit", "digests": { "md5": "5ddfc9badf6a809d0001f034660c1603", "sha256": "3cb00371d5aa08d90aa4c6d152b52167ed37b558a48ce2b7fb9f9e869ed528e4" }, "downloads": -1, "filename": "xrayutilities-1.1.2.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "5ddfc9badf6a809d0001f034660c1603", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3794333, "upload_time": "2015-04-22T12:57:21", "url": "https://files.pythonhosted.org/packages/4f/80/3376dc427ba23d6f5a56492461584df0d565ac4d305f2335b9dcdd23dd4a/xrayutilities-1.1.2.win-amd64-py2.7.exe" }, { "comment_text": "prepared with WinPython 64bit", "digests": { "md5": "0b1af05e6dc7f3b9eec5ccc78aa833bd", "sha256": "0834083773e6626322860a31db7785e656cb73e85f9f59982e1dba3bd54b0e60" }, "downloads": -1, "filename": "xrayutilities-1.1.2.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "0b1af05e6dc7f3b9eec5ccc78aa833bd", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 3792801, "upload_time": "2015-04-22T12:57:45", "url": "https://files.pythonhosted.org/packages/a9/93/4c7b018bc243c68db39f033fbe3873a31931e9f00085f93010b1665b5832/xrayutilities-1.1.2.win-amd64-py3.3.exe" }, { "comment_text": "prepared with WinPython 64bit", "digests": { "md5": "8e6a021036cf6c6b9d51a5c3bf94f2c0", "sha256": "e4f7b4d13c0acf9dc441d63f1f59813901a881203bf90563b10380f9f5e4f0ab" }, "downloads": -1, "filename": "xrayutilities-1.1.2.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "8e6a021036cf6c6b9d51a5c3bf94f2c0", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 3792829, "upload_time": "2015-04-22T12:58:01", "url": "https://files.pythonhosted.org/packages/3a/0f/171aa786477f615f55b84ed6bc1281aa2933438dd55cfaac6ae622594d5f/xrayutilities-1.1.2.win-amd64-py3.4.exe" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "3aaa353f00d6dcf9e14fc3b9f68a6c8d", "sha256": "b2ae3f653c5f82233d5012828d9f34872e294b0ce5d3d59dd6fe02aa28dec5ee" }, "downloads": -1, "filename": "xrayutilities-1.2.0.tar.gz", "has_sig": false, "md5_digest": "3aaa353f00d6dcf9e14fc3b9f68a6c8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11522441, "upload_time": "2015-08-03T13:51:22", "url": "https://files.pythonhosted.org/packages/65/6a/d23b5cc011ac037ba9a1c956ae0ecbcf6e1226e7e5fc1d04786a0b6a1b7a/xrayutilities-1.2.0.tar.gz" }, { "comment_text": "prepared with WinPython 32bit", "digests": { "md5": "d860b8ab8f40c6cf97e36a0a1b1fa6ab", "sha256": "5cce059c8e319d00536712da8b89bec613beb20004f857c6ad4f16874c9dd7aa" }, "downloads": -1, "filename": "xrayutilities-1.2.0.win32-py2.7.exe", "has_sig": false, "md5_digest": "d860b8ab8f40c6cf97e36a0a1b1fa6ab", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3795774, "upload_time": "2015-08-03T14:31:44", "url": "https://files.pythonhosted.org/packages/6a/6d/7f6962ae1edb1fbcf75f83a9bf59e439eac1a73e428d0e17e97561042efa/xrayutilities-1.2.0.win32-py2.7.exe" }, { "comment_text": "prepared with WinPython 32bit", "digests": { "md5": "e0d05cb298cd6c11e7cc56aa0be0cd02", "sha256": "3a72f589f70b4e813b07a2ed941ba0f14e422785a6a6dafdea639d1ca84252d4" }, "downloads": -1, "filename": "xrayutilities-1.2.0.win32-py3.4.exe", "has_sig": false, "md5_digest": "e0d05cb298cd6c11e7cc56aa0be0cd02", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 3790535, "upload_time": "2015-08-03T14:32:54", "url": "https://files.pythonhosted.org/packages/79/eb/65192b4025f3b9acd2c1604d71e232eebbce5d843a3988a005e89d8d12c1/xrayutilities-1.2.0.win32-py3.4.exe" }, { "comment_text": "prepared with WinPython 64bit", "digests": { "md5": "5c70bad0f681f356d6650b201d8996ad", "sha256": "2ea9bacfbad5631d7b7e617b29e53e5ae47b4a42a8f68261c6f7c56a7bd46705" }, "downloads": -1, "filename": "xrayutilities-1.2.0.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "5c70bad0f681f356d6650b201d8996ad", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3833388, "upload_time": "2015-08-03T14:32:18", "url": "https://files.pythonhosted.org/packages/0e/80/7b675120223c140aa86910fdf864ea2f8b6c0a8cbd31fad421cf68552c91/xrayutilities-1.2.0.win-amd64-py2.7.exe" }, { "comment_text": "prepared with WinPython 64bit", "digests": { "md5": "230a91e4e968cd7579ffc97a15a07e1f", "sha256": "737e2ea9df4c58aedfbfb22e3601282b08dd1eaec1a62581dd93bea4bc286f37" }, "downloads": -1, "filename": "xrayutilities-1.2.0.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "230a91e4e968cd7579ffc97a15a07e1f", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 3831883, "upload_time": "2015-08-03T14:33:15", "url": "https://files.pythonhosted.org/packages/83/7f/f203625ba3287a37f7cdef32f4bd0fcedd241695c2f4a79a450eaac59a7a/xrayutilities-1.2.0.win-amd64-py3.4.exe" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "57140403564b9bf836887df09acd1c84", "sha256": "73438d91645c533b37e301a9a1850a78218a100bb3dd98e873c770c58fb0368c" }, "downloads": -1, "filename": "xrayutilities-1.2.1.tar.gz", "has_sig": false, "md5_digest": "57140403564b9bf836887df09acd1c84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11548683, "upload_time": "2016-01-08T15:55:19", "url": "https://files.pythonhosted.org/packages/c0/e2/05f5bc7b9201044b5e912f8078e01c4140e237d12307eed211b90048606e/xrayutilities-1.2.1.tar.gz" }, { "comment_text": "prepared with WinPython 32bit", "digests": { "md5": "5a2256ef760c549f820d41bed5a72e82", "sha256": "1b97bbd071f99803b840a7e2da40943c19af2d3444b413e6b0ffb6e9baf77fca" }, "downloads": -1, "filename": "xrayutilities-1.2.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "5a2256ef760c549f820d41bed5a72e82", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3812699, "upload_time": "2016-01-08T16:14:05", "url": "https://files.pythonhosted.org/packages/1f/f3/1c84175c70af0843e000c6101a913063493f7936003d4970fbbca8717017/xrayutilities-1.2.1.win32-py2.7.exe" }, { "comment_text": "prepared with WinPython 32bit", "digests": { "md5": "7de3fb8eb776f07901e9bc371dcd87c5", "sha256": "12dbc5c6393ba64dd5265ef5923e29f1a4ea89f3a43d256c97637006c0f0dc6c" }, "downloads": -1, "filename": "xrayutilities-1.2.1.win32-py3.4.exe", "has_sig": false, "md5_digest": "7de3fb8eb776f07901e9bc371dcd87c5", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 3807458, "upload_time": "2016-01-08T16:14:31", "url": "https://files.pythonhosted.org/packages/8d/f8/d6a110271df987492be6bf3b9188c8c3aee58e09088035c1ca7d5a383e5b/xrayutilities-1.2.1.win32-py3.4.exe" }, { "comment_text": "prepared with WinPython 64bit", "digests": { "md5": "90f1122c6d5505f527615696e1657f40", "sha256": "2f2cbb5a400c9597f50b0803c31029193004f8af3c86b6cc91b49aacc4d94c67" }, "downloads": -1, "filename": "xrayutilities-1.2.1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "90f1122c6d5505f527615696e1657f40", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3852071, "upload_time": "2016-01-08T16:14:59", "url": "https://files.pythonhosted.org/packages/fd/de/c3a4c408203ba7e650882a452846fe046101bb1775f5f245bf3dd0483868/xrayutilities-1.2.1.win-amd64-py2.7.exe" }, { "comment_text": "prepared with WinPython 64bit", "digests": { "md5": "b9896e3a6551b9c4e7ad4c5074d06798", "sha256": "b77a3f8fd7a8d1faf40f428c95261ef26b1f03e02f1230a9ee751b57e2971cf2" }, "downloads": -1, "filename": "xrayutilities-1.2.1.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "b9896e3a6551b9c4e7ad4c5074d06798", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 3850560, "upload_time": "2016-01-08T16:15:21", "url": "https://files.pythonhosted.org/packages/76/38/748ceb0b716ad03b8e0e7a3a583d7825babc1df9aa37d90a9119d44ea2b5/xrayutilities-1.2.1.win-amd64-py3.4.exe" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "ee980ad71da06f516f0c311cd75082e9", "sha256": "65ac6feea531b8e77b0c44f265ae10312de7898d43f310d1ac04be593cc5bbcc" }, "downloads": -1, "filename": "xrayutilities-1.3.0.tar.gz", "has_sig": false, "md5_digest": "ee980ad71da06f516f0c311cd75082e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12238167, "upload_time": "2016-05-18T22:21:28", "url": "https://files.pythonhosted.org/packages/0c/8a/f82783aa917ef65112b04ce7a48f10c28c69842e8e5ccad7ee5b60d98e7a/xrayutilities-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "a983bd5833a97e95163484ca440eff24", "sha256": "3eade3e6f5c1cd4877389fdef1bd874d0c219f92ebd46ada8c80ee962d2bffd8" }, "downloads": -1, "filename": "xrayutilities-1.3.1.tar.gz", "has_sig": false, "md5_digest": "a983bd5833a97e95163484ca440eff24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12238288, "upload_time": "2016-05-19T01:32:36", "url": "https://files.pythonhosted.org/packages/61/95/ae5f8d348cacb14ba008003a934c902558112147deb6d008f7ce5191fee4/xrayutilities-1.3.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "585ca2b14dde40b7e818e9424519700a", "sha256": "6d66f1bf411f781e38c594110a3ec9bf8bc98df896b5af2f57008f894b07b685" }, "downloads": -1, "filename": "xrayutilities-1.3.1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "585ca2b14dde40b7e818e9424519700a", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3925779, "upload_time": "2016-05-19T01:40:21", "url": "https://files.pythonhosted.org/packages/a8/7d/08449ca806002b43b7c842aa482e672a5f17f9ce3ac868eb4ce12e182e95/xrayutilities-1.3.1.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "cc3f1f91fec7cb3e38864d2855b8ddfb", "sha256": "6372794a19085c0387121d44787527544e47cdda715c6ee49f70603716258cc8" }, "downloads": -1, "filename": "xrayutilities-1.3.1.win-amd64-py3.5.exe", "has_sig": false, "md5_digest": "cc3f1f91fec7cb3e38864d2855b8ddfb", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 3839754, "upload_time": "2016-05-19T01:40:44", "url": "https://files.pythonhosted.org/packages/ec/9c/ce18cd451677d4060bd3143e9859ba6cac1fc511c0723eacd703c3eb2038/xrayutilities-1.3.1.win-amd64-py3.5.exe" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "2089bcfad7a81468e0d618c074d107a9", "sha256": "13bbe1af50b256a9afad232e8deba17e38c0c19740f162268eaff8e2f37628ec" }, "downloads": -1, "filename": "xrayutilities-1.3.3-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "2089bcfad7a81468e0d618c074d107a9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 3642544, "upload_time": "2016-08-24T16:19:19", "url": "https://files.pythonhosted.org/packages/c5/61/579c26b34a12db3fead6509639eba57856088f1d0a256c68bafac47adc2c/xrayutilities-1.3.3-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "dbe0f23e589efbe34578b30dcfa4fc54", "sha256": "3524f74b26cc249ecd0fd517430cda43e086fb2a6d71f97bbc1f2aec07c97975" }, "downloads": -1, "filename": "xrayutilities-1.3.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "dbe0f23e589efbe34578b30dcfa4fc54", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 3649479, "upload_time": "2016-08-24T16:56:35", "url": "https://files.pythonhosted.org/packages/82/f9/61abd9cc521d76562cc40265f83f56f595c93b829d9cda76d49fbe84d57b/xrayutilities-1.3.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "005311cb7cee35e07ea26bfb0b2b93ce", "sha256": "ec5288ac3dfcd48a71c851ddb81673b097ab345532873f6fc029eb6fa8aa38ce" }, "downloads": -1, "filename": "xrayutilities-1.3.3.tar.gz", "has_sig": false, "md5_digest": "005311cb7cee35e07ea26bfb0b2b93ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12247827, "upload_time": "2016-08-24T16:18:00", "url": "https://files.pythonhosted.org/packages/0e/a9/0f874c29add327ade12f28dd99f03b71840ac0d88ee1ea028af98dbe246a/xrayutilities-1.3.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "c94e65ec3a406aa785f88f43118e815d", "sha256": "e302d7f91c1273e4879becfb96f157457108b0eb5a03b2debc9659a5719707f3" }, "downloads": -1, "filename": "xrayutilities-1.3.3.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "c94e65ec3a406aa785f88f43118e815d", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3869432, "upload_time": "2016-08-24T16:19:10", "url": "https://files.pythonhosted.org/packages/da/d4/56b3c120ae4bca153c40ff1acce569b06404b42fcbfd79995c7692c6c636/xrayutilities-1.3.3.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "8688ba86bf665dfcdad60d194f83e50c", "sha256": "25974ffd4ee53214d989aaa9c5e27e061b0f7c76b51af24b44830d82c6a09f2d" }, "downloads": -1, "filename": "xrayutilities-1.3.3.win-amd64-py3.5.exe", "has_sig": false, "md5_digest": "8688ba86bf665dfcdad60d194f83e50c", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 3788838, "upload_time": "2016-08-24T16:56:27", "url": "https://files.pythonhosted.org/packages/76/78/03270f2879a0039dbd73298b4d889f283ccd8ef858768a2240da9dfb8798/xrayutilities-1.3.3.win-amd64-py3.5.exe" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "39774c861ddf0ae3aabcc152e303f2b3", "sha256": "ae640fe4c01e8baf8d16b4b9eb521659f13345ed6f74371c2158333c66c42b89" }, "downloads": -1, "filename": "xrayutilities-1.4.0-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "39774c861ddf0ae3aabcc152e303f2b3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3749537, "upload_time": "2017-02-10T10:41:25", "url": "https://files.pythonhosted.org/packages/fa/4d/47c5f0f1c8cef16022b858191d01088c7887d440d9bc4b66cb1f78a8e241/xrayutilities-1.4.0-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cd60dd8ebdd95363d0df752d658d73d2", "sha256": "c2542a348216e3afd2a96dcfb0e7ae9c083beb3decfe3a172993c8efcd2d3fba" }, "downloads": -1, "filename": "xrayutilities-1.4.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "cd60dd8ebdd95363d0df752d658d73d2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3756479, "upload_time": "2017-02-09T16:25:57", "url": "https://files.pythonhosted.org/packages/41/5a/3e06faf050e27141c98f39b10e22a685cb375502fc7fe3c1556b06172794/xrayutilities-1.4.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "09c702e7d38a1aa324d8db7369609951", "sha256": "8345479c125e35e5ecd64556f407f5fbb5a82e460c725f4fae6859f3670935de" }, "downloads": -1, "filename": "xrayutilities-1.4.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "09c702e7d38a1aa324d8db7369609951", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3756477, "upload_time": "2017-02-09T16:26:02", "url": "https://files.pythonhosted.org/packages/e8/4a/58a67103c3dd97565488b17aafb7d7ec48daa7594cf942d10665066c70ae/xrayutilities-1.4.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "bddca370bdedc2153601282a5c0d8a4b", "sha256": "1e7762735f63358e245c81c5bd97852736ff1f4afe810e66c481b73b99f88aec" }, "downloads": -1, "filename": "xrayutilities-1.4.0-py2.7.10-win-amd64.egg", "has_sig": false, "md5_digest": "bddca370bdedc2153601282a5c0d8a4b", "packagetype": "bdist_egg", "python_version": "2.7.10", "requires_python": null, "size": 4096704, "upload_time": "2017-02-10T10:43:45", "url": "https://files.pythonhosted.org/packages/39/42/c3ebdd6cf82c11fadff76b3efe9ac685f1e5aaeb627f4a7855a06f39de72/xrayutilities-1.4.0-py2.7.10-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "5a13f1f95f7983b10220dc5cd6ae0e16", "sha256": "4c55b0e8b3027a1eff39d8b6d3ace02462017682e370c2d4bc454011b15da8c7" }, "downloads": -1, "filename": "xrayutilities-1.4.0-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "5a13f1f95f7983b10220dc5cd6ae0e16", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 4108966, "upload_time": "2017-02-09T16:24:38", "url": "https://files.pythonhosted.org/packages/b8/78/2b4a40dc1ec14e2021f345b7d9ea291757c33832675e24f2043954787571/xrayutilities-1.4.0-py3.5-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "f835b0fb7d0ebe75256d07af45b1fa7c", "sha256": "d1e7f693bc73e56e4bd0841e25adaeff6b5b5bc4c4893d493527454bd2957557" }, "downloads": -1, "filename": "xrayutilities-1.4.0-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "f835b0fb7d0ebe75256d07af45b1fa7c", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 4112041, "upload_time": "2017-02-09T16:24:43", "url": "https://files.pythonhosted.org/packages/b4/20/f6ff8c69f0d1e2d25bcc57c892b8b47be55072847f7db25ca8572bcf5d4f/xrayutilities-1.4.0-py3.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "2268cbb7e8a33bc350835cee0e770e79", "sha256": "b51f4b31182cda20e06d5f0de6b09fa5a8f60bf72732097459d3d08e1654fb6c" }, "downloads": -1, "filename": "xrayutilities-1.4.0.tar.gz", "has_sig": false, "md5_digest": "2268cbb7e8a33bc350835cee0e770e79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12666073, "upload_time": "2017-02-09T15:43:13", "url": "https://files.pythonhosted.org/packages/a3/ae/b7aa51c168b190c123ef1de38cdf8a9157283c4e5a2fac0968ce414d7bf2/xrayutilities-1.4.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "80a6d06edaedb7d37c0b1f1854e7ccdf", "sha256": "5c50c733d7c6c588c60fc5d4973bc46bcc42a7e9abcc4ddaaee38748e5ef1ab5" }, "downloads": -1, "filename": "xrayutilities-1.4.0.win-amd64-py2.7.10.exe", "has_sig": false, "md5_digest": "80a6d06edaedb7d37c0b1f1854e7ccdf", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 3976764, "upload_time": "2017-02-10T10:43:56", "url": "https://files.pythonhosted.org/packages/e2/76/33f603966f48df26bff70a59b3b3211122147d372bea18e5d34d397568f9/xrayutilities-1.4.0.win-amd64-py2.7.10.exe" }, { "comment_text": "", "digests": { "md5": "a9a3ca484bbdf0e67674faeb93e18eec", "sha256": "128530f2f5bd35af01cd66c9ebd51e7c24afb241129e1045346659032f980440" }, "downloads": -1, "filename": "xrayutilities-1.4.0.win-amd64-py3.5.exe", "has_sig": false, "md5_digest": "a9a3ca484bbdf0e67674faeb93e18eec", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4347772, "upload_time": "2017-02-09T16:25:23", "url": "https://files.pythonhosted.org/packages/8e/ea/6cf9a741fdb3869a95c04e3d00b344ba60ef43ba53a839f4c1f9fb7ff410/xrayutilities-1.4.0.win-amd64-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "70e7509b0133ec726bf7e33777061d3e", "sha256": "c5315f6e67e4d9af12d4bee57b91526d740d257739bd8b7316b5f79379cdc677" }, "downloads": -1, "filename": "xrayutilities-1.4.0.win-amd64-py3.6.exe", "has_sig": false, "md5_digest": "70e7509b0133ec726bf7e33777061d3e", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4349819, "upload_time": "2017-02-09T16:25:29", "url": "https://files.pythonhosted.org/packages/58/53/a147493d39c88ce2b4de7e071b23f2b06b45abd5ec2a561bfc261642b32e/xrayutilities-1.4.0.win-amd64-py3.6.exe" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "07a416bc324f0926068a64651e95b498", "sha256": "c5ac684a9b14ca6511197c8a94c6a6f9a846cb6087fdef623f11fa2433db8d61" }, "downloads": -1, "filename": "xrayutilities-1.4.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "07a416bc324f0926068a64651e95b498", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3746816, "upload_time": "2017-04-03T16:49:52", "url": "https://files.pythonhosted.org/packages/32/49/d92dcb995bd0a94de2366aa0272be86ce02a1b8040b1aa0db66ed0b3e9ce/xrayutilities-1.4.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c74b20dbb00ed8f9000e5d47e1380bdd", "sha256": "461e1038c46926b07926e28f031588b4b48e1ccf15778c7e286663a4feb67b39" }, "downloads": -1, "filename": "xrayutilities-1.4.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c74b20dbb00ed8f9000e5d47e1380bdd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3754959, "upload_time": "2017-04-03T16:50:02", "url": "https://files.pythonhosted.org/packages/12/43/3afb1a7a41dec6c67624dc20d05699df879409bd7a642b8558f41dd6efc7/xrayutilities-1.4.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5d05ef7052c1e7b4b168fa67b93beeef", "sha256": "1672fd3e9fe70f413db3ae7a658bed171f46764ff48d62bc51f6906b861407a7" }, "downloads": -1, "filename": "xrayutilities-1.4.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5d05ef7052c1e7b4b168fa67b93beeef", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3746818, "upload_time": "2017-04-03T16:50:06", "url": "https://files.pythonhosted.org/packages/54/b4/6c272d97ad299c3130fa79b76bdfc1b0c6b2ea93db276107ae6e92162636/xrayutilities-1.4.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d462634d9c0cd5c2b7e19c0c3b3dc3b3", "sha256": "fde29033e481fbfba35fac05e4e0773e59a1933ac00b5bed2a20dbe9665343b4" }, "downloads": -1, "filename": "xrayutilities-1.4.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d462634d9c0cd5c2b7e19c0c3b3dc3b3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3754959, "upload_time": "2017-04-03T16:50:12", "url": "https://files.pythonhosted.org/packages/c2/96/ee615a16b5298976e121cea8982908e96e6ff9dce1d44c3c0df68e7d3aa0/xrayutilities-1.4.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8cf36daabf01c3c5373c967f4dce9076", "sha256": "244b083573fa17f43199b512b07ab519d907405a91bf1777114ab05c22859ef1" }, "downloads": -1, "filename": "xrayutilities-1.4.1-py3.5-win32.egg", "has_sig": false, "md5_digest": "8cf36daabf01c3c5373c967f4dce9076", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 4099403, "upload_time": "2017-04-03T16:50:22", "url": "https://files.pythonhosted.org/packages/9a/3d/b4b5ac2690abdbeb121e68777cc0dbc3e8db64a192d285e8800238a4c859/xrayutilities-1.4.1-py3.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "6c3f7da72f7bee873495a9c47003eaf0", "sha256": "33d5d0b89f930b7704a05d3988512233ab546693b0c6eae9fc7d138170ab38d8" }, "downloads": -1, "filename": "xrayutilities-1.4.1-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "6c3f7da72f7bee873495a9c47003eaf0", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 4107781, "upload_time": "2017-04-03T16:50:17", "url": "https://files.pythonhosted.org/packages/ae/ea/7b39137498c4d295dbfc7a8ab9d45567adb089c8f8eb7ccd33954567ef3d/xrayutilities-1.4.1-py3.5-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "84483c8ad7e335c1149c9f7c14280f69", "sha256": "256bcdc025639ef7a82e1dc8f17d581e44e32a1cbe0db7b638d82746c4f7b555" }, "downloads": -1, "filename": "xrayutilities-1.4.1-py3.6-win32.egg", "has_sig": false, "md5_digest": "84483c8ad7e335c1149c9f7c14280f69", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 4102449, "upload_time": "2017-04-03T16:50:31", "url": "https://files.pythonhosted.org/packages/ab/dc/6cad50e52213ec91850b9a6546986e3b24109233af9b3957c6a99f725308/xrayutilities-1.4.1-py3.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "8e8a52f750afc9584e5b113277d8436a", "sha256": "27b42eafb761eb881f1f4bae79b3db3381f38d4ed870cd28af616a720db5f648" }, "downloads": -1, "filename": "xrayutilities-1.4.1.tar.gz", "has_sig": false, "md5_digest": "8e8a52f750afc9584e5b113277d8436a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12669271, "upload_time": "2017-04-03T16:18:01", "url": "https://files.pythonhosted.org/packages/a7/fc/f1baac69c47f53b48b522e685af7bc8c0150e4911e885773f47b74d103c0/xrayutilities-1.4.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "d1acc2705a720cbd62870c636d63f840", "sha256": "bceac486f4ae411d771407b98f7afc12972dcb9c935f4e09c85d8bd2bbca6118" }, "downloads": -1, "filename": "xrayutilities-1.4.1.win32-py3.5.exe", "has_sig": false, "md5_digest": "d1acc2705a720cbd62870c636d63f840", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4208597, "upload_time": "2017-04-03T16:50:52", "url": "https://files.pythonhosted.org/packages/7b/9e/68a61ef6f3f6c5de6a0635754b70c6194f8a71f65adc5c300774b63f7a28/xrayutilities-1.4.1.win32-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "ee27485b7a501c944ffdffa27e405d5e", "sha256": "5f057f5d1c55d85418019216dbae2ea1697e3a04bfdae1b1b81f2cd118a0686f" }, "downloads": -1, "filename": "xrayutilities-1.4.1.win32-py3.6.exe", "has_sig": false, "md5_digest": "ee27485b7a501c944ffdffa27e405d5e", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4208599, "upload_time": "2017-04-03T16:50:58", "url": "https://files.pythonhosted.org/packages/6a/e6/3d0764c89be0ea5bc3c25070269747256977676592747476adb30caa2932/xrayutilities-1.4.1.win32-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "5f55e475899ba98548a83741983a35e9", "sha256": "f5472a14be32105fdd46e25c6c17301591443a4d89e3e0a074e7cc62f455f481" }, "downloads": -1, "filename": "xrayutilities-1.4.1.win-amd64-py3.5.exe", "has_sig": false, "md5_digest": "5f55e475899ba98548a83741983a35e9", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4346270, "upload_time": "2017-04-03T16:50:43", "url": "https://files.pythonhosted.org/packages/bc/77/448cacdd3e072d285ee3288fa886f55c5f4ae635f6421292585fdfa06cca/xrayutilities-1.4.1.win-amd64-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "24ab2819b60174cd9bd1382f56bcf0cd", "sha256": "abecae2ca32086c8672d659e2ca84ba4a1256953b597df3f57861a59dcf89fdb" }, "downloads": -1, "filename": "xrayutilities-1.4.1.win-amd64-py3.6.exe", "has_sig": false, "md5_digest": "24ab2819b60174cd9bd1382f56bcf0cd", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4346271, "upload_time": "2017-04-03T16:50:47", "url": "https://files.pythonhosted.org/packages/77/da/66b707d8a3154dbe3bcb60bb3d299d68ab07ae3be50b34e22f7c91d79e35/xrayutilities-1.4.1.win-amd64-py3.6.exe" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "70341f67e17297bac724d1978b7ae830", "sha256": "a93798593ff59e1647f8ddad7b840641fc23327d91030e5e9ccb5c1bdb072226" }, "downloads": -1, "filename": "xrayutilities-1.4.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "70341f67e17297bac724d1978b7ae830", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3740607, "upload_time": "2017-11-28T20:31:57", "url": "https://files.pythonhosted.org/packages/be/0b/b23c594bf195a0907336ea8d4aac6d00a830dc3df16f3668ca1a5ca90f27/xrayutilities-1.4.2-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "3fabe30e350cd9fcb83295d5b069d388", "sha256": "a305de571875a4ff64ccd3126699364fba4b42e9158446c403c3ddfcf0f99b12" }, "downloads": -1, "filename": "xrayutilities-1.4.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "3fabe30e350cd9fcb83295d5b069d388", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3752711, "upload_time": "2017-11-28T20:32:16", "url": "https://files.pythonhosted.org/packages/1f/9f/1dd5fef2671c6a672c39e8d9d56d00477554c01bf67f38b81f5ff2bfad89/xrayutilities-1.4.2-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ff05feadd79c6d554f2deae59d96586e", "sha256": "a9082164550b319e9b88b489e597392fdb3e49df2809933f9e33ab3c82ea0c11" }, "downloads": -1, "filename": "xrayutilities-1.4.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ff05feadd79c6d554f2deae59d96586e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3744710, "upload_time": "2017-11-28T20:32:35", "url": "https://files.pythonhosted.org/packages/0d/38/2734643b221be2d13ded812463e70ca4524f38bfd097adf0816fcb79812b/xrayutilities-1.4.2-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "6281fded6f062182e25bbcd97ce47c5c", "sha256": "32aed49407a25117bb0d0d76f0e5837fa3d62d2655389116c31153693814ec5b" }, "downloads": -1, "filename": "xrayutilities-1.4.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6281fded6f062182e25bbcd97ce47c5c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3752852, "upload_time": "2017-11-28T20:32:56", "url": "https://files.pythonhosted.org/packages/aa/84/1d5f62f395ea036cda2dcf32c37218db7a6dbaa78866a2942e83868f5522/xrayutilities-1.4.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "da2b84ecfeeaae77b58320909a6bc6e0", "sha256": "76e39a6061a37188f647b0038981269046c18981d1d653cf9f2e98a9b62091a6" }, "downloads": -1, "filename": "xrayutilities-1.4.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "da2b84ecfeeaae77b58320909a6bc6e0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3744710, "upload_time": "2017-11-28T20:33:15", "url": "https://files.pythonhosted.org/packages/e6/03/2158645ab221e2c93e791f6b9d92c8aac56dd61121062f3dfa1d6349a9db/xrayutilities-1.4.2-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "01d43fe8bcdcf66af459009f4014ef4c", "sha256": "dbeeba1a59288ac5b6f7c8b818acafe70716285dfea73c03ae0c0f82a344a757" }, "downloads": -1, "filename": "xrayutilities-1.4.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "01d43fe8bcdcf66af459009f4014ef4c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3752851, "upload_time": "2017-11-28T20:33:33", "url": "https://files.pythonhosted.org/packages/ed/a8/f7bec3d72cdb73231643e35c7a1a337d455aa702b4980ba87c3b5ad17acc/xrayutilities-1.4.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8dbca3fee78059ecf9b35892647e0024", "sha256": "551ba91de77873936fd9cebe40b84b555a7ea2e3cbe38eb5d9f60f905038c461" }, "downloads": -1, "filename": "xrayutilities-1.4.2.tar.gz", "has_sig": false, "md5_digest": "8dbca3fee78059ecf9b35892647e0024", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12706964, "upload_time": "2017-11-28T20:35:12", "url": "https://files.pythonhosted.org/packages/4b/e2/5bd19be54d673f53ef37b11eb7783a6a13084b00be2cc9dfe0637b1f50e8/xrayutilities-1.4.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "e72207efaac77b5d613be7db33fbade5", "sha256": "67987d101d3380128ac2a94fea9bd6e9163fc16f2126b44f2acdee53a3f903c3" }, "downloads": -1, "filename": "xrayutilities-1.4.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "e72207efaac77b5d613be7db33fbade5", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3940643, "upload_time": "2017-11-28T20:35:33", "url": "https://files.pythonhosted.org/packages/9b/b9/49777cd7860e8f3cf40c2e0c0bf6b2185d1cb256407b9f0b9e643e6c8bb8/xrayutilities-1.4.2.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "4b483596b2a711e059cc65e81fd12add", "sha256": "4b8ccf831b8f6e2baf3ab0f0fe4e9d33fc7396c3855c1741aaec468f7fd996cb" }, "downloads": -1, "filename": "xrayutilities-1.4.2.win32-py3.5.exe", "has_sig": false, "md5_digest": "4b483596b2a711e059cc65e81fd12add", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4206924, "upload_time": "2017-11-28T20:35:54", "url": "https://files.pythonhosted.org/packages/ac/9a/103bd637f0cc42e5fc5d95226e6c8539b405224312ce04ad4000fa88f5a0/xrayutilities-1.4.2.win32-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "384191bff49d81f399bc94e91fed2435", "sha256": "c7d9dba61e6b83d0dcd22579144333a44fd8649bf3b2db7bb2f03e1ce2256c09" }, "downloads": -1, "filename": "xrayutilities-1.4.2.win32-py3.6.exe", "has_sig": false, "md5_digest": "384191bff49d81f399bc94e91fed2435", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4206924, "upload_time": "2017-11-28T20:36:16", "url": "https://files.pythonhosted.org/packages/5d/39/52e0e8e5b92c0ec560c82fd06f814afdf1bf0844a7b83dca5cb5a0c3891b/xrayutilities-1.4.2.win32-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "707e2135806573422fc18ed61d933620", "sha256": "89005e38d5b7b9601f63e9c0bf4bb83eb0ca0d9bd3edf32c5073194432ea20f4" }, "downloads": -1, "filename": "xrayutilities-1.4.2.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "707e2135806573422fc18ed61d933620", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3980389, "upload_time": "2017-11-28T20:36:37", "url": "https://files.pythonhosted.org/packages/53/de/ca590e89c5ae609ef455b5f720f998c4f2eda4012736921ecb2a875dc585/xrayutilities-1.4.2.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "9127dd7b31c38c0d5450fcf74ed60142", "sha256": "a139dd507e580237f42d124e7786eb428d759b83d27c0255eda6d944c09496e8" }, "downloads": -1, "filename": "xrayutilities-1.4.2.win-amd64-py3.5.exe", "has_sig": false, "md5_digest": "9127dd7b31c38c0d5450fcf74ed60142", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4344598, "upload_time": "2017-11-28T20:37:02", "url": "https://files.pythonhosted.org/packages/63/91/2b2ba7d5584b0574cb2377e760807bf4d22f64daa9e3e9fcde24a28cd72c/xrayutilities-1.4.2.win-amd64-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "0087f7f3d8f97213715f869e535844bb", "sha256": "82424376c8f19d87a457dd012ff77cc255f20cec5550af2b5c7bfc05175104cc" }, "downloads": -1, "filename": "xrayutilities-1.4.2.win-amd64-py3.6.exe", "has_sig": false, "md5_digest": "0087f7f3d8f97213715f869e535844bb", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4344596, "upload_time": "2017-11-28T20:37:24", "url": "https://files.pythonhosted.org/packages/89/84/c521a90146d8124d560f0ce5fab159b29fef816279e29bb488f5c5b3d8fb/xrayutilities-1.4.2.win-amd64-py3.6.exe" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "a9918036f8f9ca6578f6e94235572cc4", "sha256": "6bf8fda40574b1ad0371f7240ca130eb96114d3e2610b999c2cd1e49e36fa150" }, "downloads": -1, "filename": "xrayutilities-1.5.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "a9918036f8f9ca6578f6e94235572cc4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3751167, "upload_time": "2018-07-05T07:27:09", "url": "https://files.pythonhosted.org/packages/0e/ae/013ebbcd4b4d598ce43a04c7c65228bcda2f43103b710b67b6e5e35af3fc/xrayutilities-1.5.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e60248d2a3dccd3b2c2877ca8986c33f", "sha256": "82d20c2c8d674770f534da8f0a40c6138d48364e888af31bcc3112eb7c6690c2" }, "downloads": -1, "filename": "xrayutilities-1.5.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e60248d2a3dccd3b2c2877ca8986c33f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3763334, "upload_time": "2018-07-05T07:27:13", "url": "https://files.pythonhosted.org/packages/16/51/e29d254b373f5e1f392a58f70f70feae14938a476734a903c19840e2461f/xrayutilities-1.5.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "773ef11466923c67326b12dea93ecc16", "sha256": "638c8b97e349f3373fe1dc44ec1080d7700e466f9ae593ceecc32d41f3f99b73" }, "downloads": -1, "filename": "xrayutilities-1.5.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "773ef11466923c67326b12dea93ecc16", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3755249, "upload_time": "2018-07-05T07:27:16", "url": "https://files.pythonhosted.org/packages/eb/07/c833e4e47c846bdc3a62fbb686b2dd00dffa20e13daf04c3c3ae8f5ca8b3/xrayutilities-1.5.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e87059dc6273f6568db29b335092c9d7", "sha256": "5e445960980b1c0be576cfeb57548e1ba3b5e7557919da8a4748c024282ef777" }, "downloads": -1, "filename": "xrayutilities-1.5.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e87059dc6273f6568db29b335092c9d7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3763429, "upload_time": "2018-07-05T07:27:20", "url": "https://files.pythonhosted.org/packages/23/18/c2d6575f2ffc7eb29dc464e5a08dd084285c64b57aea1a415f97244b4192/xrayutilities-1.5.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9cedf31d40a89865a6d57d07a8f61b06", "sha256": "789a91cd840f8bf47f67ad9ca396d69b48f34564802ccf374bdceb3471d44538" }, "downloads": -1, "filename": "xrayutilities-1.5.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "9cedf31d40a89865a6d57d07a8f61b06", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3755281, "upload_time": "2018-07-05T07:27:24", "url": "https://files.pythonhosted.org/packages/a3/98/6423b645ae3cccb3810dbd2284647b81a31f300a10396c7108bd93ec5ef7/xrayutilities-1.5.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "bb8519f1192090780e8832365ab91859", "sha256": "46852f62c0c33c75559cb932407a47377d6a73fdeba099b2d80c05d7d879629d" }, "downloads": -1, "filename": "xrayutilities-1.5.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "bb8519f1192090780e8832365ab91859", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3763456, "upload_time": "2018-07-05T07:27:28", "url": "https://files.pythonhosted.org/packages/eb/95/b27e1c18ee2f5954d971efad9ad2eb2ece64758733755c2e69b0e2452c35/xrayutilities-1.5.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d2c33abbc14b71fe58b08b2b91cf92f1", "sha256": "7bf1606a54acd8ed168113e0ac3e308c6912f2eab23f9dbb53e44f475b5daf4f" }, "downloads": -1, "filename": "xrayutilities-1.5.0-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "d2c33abbc14b71fe58b08b2b91cf92f1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 4130300, "upload_time": "2018-07-05T07:27:32", "url": "https://files.pythonhosted.org/packages/a8/0e/0fb1aa69fcf6ca163297b62e63c828c91358336c0142e7edde648fbd17fb/xrayutilities-1.5.0-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "5cef310adfcb204009994c041e6dac61", "sha256": "c4c345f77048529ad9b6937163456efaeb22ff89609df294c0e4614a153d68bd" }, "downloads": -1, "filename": "xrayutilities-1.5.0-py3.5-linux-x86_64.egg", "has_sig": false, "md5_digest": "5cef310adfcb204009994c041e6dac61", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 4135217, "upload_time": "2018-07-05T07:27:36", "url": "https://files.pythonhosted.org/packages/ae/cb/b20ab1e6c781a87c6ccffe4c81548f04ca891fcfbda93f34469c004912b6/xrayutilities-1.5.0-py3.5-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "fcb06b6c7a0f4eab1b9cc73da23ba350", "sha256": "f76b844dcce715f1668efff248dcef9f1aed46f8a2006eab25c6287b87f55fbc" }, "downloads": -1, "filename": "xrayutilities-1.5.0.tar.gz", "has_sig": false, "md5_digest": "fcb06b6c7a0f4eab1b9cc73da23ba350", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12770767, "upload_time": "2018-07-05T07:27:42", "url": "https://files.pythonhosted.org/packages/bb/fc/bcc6a0de326f6adf8e8fa655ca9b8cc1dbabc059f6bb02d8517f246ea2c4/xrayutilities-1.5.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "263f65b5e0e5d1b178c5fb793bfcf1df", "sha256": "7d08372bf1f4154746f7841175d10d952ae2654f044ff5c909a06e1aa334d657" }, "downloads": -1, "filename": "xrayutilities-1.5.0.win32-py2.7.exe", "has_sig": false, "md5_digest": "263f65b5e0e5d1b178c5fb793bfcf1df", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3955137, "upload_time": "2018-07-05T07:27:46", "url": "https://files.pythonhosted.org/packages/ad/fe/63836aea8f28e86a03d537828d68e38ea1651d79b9c5cbb43dbfb46958eb/xrayutilities-1.5.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "739cb6741def8029beb366cf1f8c11e3", "sha256": "93882615ceb04311e7224dd32c4efa79e4f6b35f5e42cabd703e497556ba4485" }, "downloads": -1, "filename": "xrayutilities-1.5.0.win32-py3.5.exe", "has_sig": false, "md5_digest": "739cb6741def8029beb366cf1f8c11e3", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4221379, "upload_time": "2018-07-05T07:27:49", "url": "https://files.pythonhosted.org/packages/60/21/81d7ab6781c70dcd1eee34c95969084e6ffaafc772a1145ebfa028d33269/xrayutilities-1.5.0.win32-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "2c275cd685f62bcba46b8b00fdcfe95c", "sha256": "475684582b418f55edfb1cadbb6a9318721be64f01f7cbf390a22cf59c3b5652" }, "downloads": -1, "filename": "xrayutilities-1.5.0.win32-py3.6.exe", "has_sig": false, "md5_digest": "2c275cd685f62bcba46b8b00fdcfe95c", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4221427, "upload_time": "2018-07-05T07:27:52", "url": "https://files.pythonhosted.org/packages/7d/80/b734de29d0641fa8ff521a6d9fc7c19beba44936e31cf65ed2be68f84d69/xrayutilities-1.5.0.win32-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "46ad7f131a9e72e29d7ea407d1988dcb", "sha256": "f504b5af4e864cc9c6ab92377ca27131b8e5a82bd6f221d2c4d251ebf65187c9" }, "downloads": -1, "filename": "xrayutilities-1.5.0.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "46ad7f131a9e72e29d7ea407d1988dcb", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3994946, "upload_time": "2018-07-05T07:27:55", "url": "https://files.pythonhosted.org/packages/6d/05/73a1607cb67447151f1ba1a14693ab0e6c44e6028cf5a104267678d0780f/xrayutilities-1.5.0.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "c55f197fce40519a888e62cf06b28437", "sha256": "ed7dd23627e14649a780e69809cacc80c2b3c2229f744cedb4a658ef43ecaf2a" }, "downloads": -1, "filename": "xrayutilities-1.5.0.win-amd64-py3.5.exe", "has_sig": false, "md5_digest": "c55f197fce40519a888e62cf06b28437", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4359088, "upload_time": "2018-07-05T07:27:59", "url": "https://files.pythonhosted.org/packages/c3/28/6b7e5c894e08889603faf7e6e0afe23fa76eaf076fc015f3c9702527c12e/xrayutilities-1.5.0.win-amd64-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "2dd273dd8a5dfe7ffa078f36fd7f987f", "sha256": "45e6a02164feb67779d1550b493470da37dbcaf037904a015a383f3c89b4c09a" }, "downloads": -1, "filename": "xrayutilities-1.5.0.win-amd64-py3.6.exe", "has_sig": false, "md5_digest": "2dd273dd8a5dfe7ffa078f36fd7f987f", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4359135, "upload_time": "2018-07-05T07:28:02", "url": "https://files.pythonhosted.org/packages/9d/6b/61b6cf726fa560eeb9cd55471b2b90be3117026fd885ba35b1c9f59aeb50/xrayutilities-1.5.0.win-amd64-py3.6.exe" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "90d884cc01b99b7ea2ad6c5e51a95c06", "sha256": "26cc94a86b5f15cfd180f5fa49bddb5d5cd4c0987722f7411307fc2a6dfde49f" }, "downloads": -1, "filename": "xrayutilities-1.5.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "90d884cc01b99b7ea2ad6c5e51a95c06", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3760118, "upload_time": "2019-01-07T17:00:48", "url": "https://files.pythonhosted.org/packages/2e/66/2c8b98cdcf92197c98f7f7e7de6b96a6c2f5b6fc1aa9b260d33fb4e0f8fc/xrayutilities-1.5.1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "559472642deee19eea9f0df83cab9e22", "sha256": "9dd5805a5c2184d67ffa6fda27b933961ab7a6262e86e3e6de100833b456ac1a" }, "downloads": -1, "filename": "xrayutilities-1.5.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "559472642deee19eea9f0df83cab9e22", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3772285, "upload_time": "2019-01-07T17:00:56", "url": "https://files.pythonhosted.org/packages/58/b2/9352ebd127d7bfcc45b81a3f75db9258bd7bc99d33eaa6a3ce963d7fef7d/xrayutilities-1.5.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "98b0f791e07c6b87921f6adbe9dee6cb", "sha256": "b047d12b90f51da90d7a8b9133c08abf406676e83557bc47bb1d938ddb5156ad" }, "downloads": -1, "filename": "xrayutilities-1.5.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "98b0f791e07c6b87921f6adbe9dee6cb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3764203, "upload_time": "2019-01-07T17:01:03", "url": "https://files.pythonhosted.org/packages/7c/88/b34abb02795bddc309903022cd319ac4485717a244bb08e9ceb1b0afca44/xrayutilities-1.5.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "78f5d91a42a2bac380282c6419f0730a", "sha256": "11fdfdeccc1f6af15deaca1d42c3dcf33f7d603dbf9257dcb5f513d0227f1f15" }, "downloads": -1, "filename": "xrayutilities-1.5.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "78f5d91a42a2bac380282c6419f0730a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3772349, "upload_time": "2019-01-07T17:01:11", "url": "https://files.pythonhosted.org/packages/e3/49/c6293b2727070a889ebced42e3e3c2b753e72eb7e21117ba3b61439bb4be/xrayutilities-1.5.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4430cb644a18e497f044b00a91daf6a5", "sha256": "61e06f49ee8ffa9890971380b4f8a9cf40f2500f1e192f59002a8f6131e190e8" }, "downloads": -1, "filename": "xrayutilities-1.5.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "4430cb644a18e497f044b00a91daf6a5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3764229, "upload_time": "2019-01-07T17:01:21", "url": "https://files.pythonhosted.org/packages/e4/ee/7d5a1c452be8e58c2f694037b362bda3e711a9229c8acf76b5dbadaf8f2a/xrayutilities-1.5.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d59b03e485f9092ec3a3f7e351a16be0", "sha256": "df20b15589036ba6b1c7caf4a240e2ebd19f3380e528b7cc27783696de95c6a4" }, "downloads": -1, "filename": "xrayutilities-1.5.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d59b03e485f9092ec3a3f7e351a16be0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3772372, "upload_time": "2019-01-07T17:01:34", "url": "https://files.pythonhosted.org/packages/1b/19/5f8843fb76ad0acd18d785f753db1218b60e792c0edbed517c45e26beed4/xrayutilities-1.5.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ead050a7214eec9f811806f94c97ef95", "sha256": "1f003c9fb671614622251726e1f64a466612ae985a5f4a4afa108b3a7cffec51" }, "downloads": -1, "filename": "xrayutilities-1.5.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "ead050a7214eec9f811806f94c97ef95", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 3764232, "upload_time": "2019-01-07T17:01:48", "url": "https://files.pythonhosted.org/packages/f4/cc/4f52cc11a1140c37a6ecd68b8ee2d9cbe68e9df9f530ffe37e6a8d0de692/xrayutilities-1.5.1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "60158e2d1ac776bb9662a8cfa368233f", "sha256": "41f6c2de2143a27419a8ceb6d35bf76c38053439504abe680e45fd36e8037dbb" }, "downloads": -1, "filename": "xrayutilities-1.5.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "60158e2d1ac776bb9662a8cfa368233f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 3772372, "upload_time": "2019-01-07T17:02:02", "url": "https://files.pythonhosted.org/packages/61/4e/f60a92ab318da4662124c17872bc49d9b351ba9f2d837275f6343ae08c06/xrayutilities-1.5.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "35fd6929d9c80ff7f5567a0226a889ef", "sha256": "99b9e1f9b67851ed13efd8f33f64053e3f809e8b09c52c49303d22b770c2c1c6" }, "downloads": -1, "filename": "xrayutilities-1.5.1.tar.gz", "has_sig": false, "md5_digest": "35fd6929d9c80ff7f5567a0226a889ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14319794, "upload_time": "2019-01-07T17:02:25", "url": "https://files.pythonhosted.org/packages/16/85/46d3f88c40f52c7d3741c6f76964f8cae25e11c789b58d83f62b7033d472/xrayutilities-1.5.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "47f47efeeaea11ac252916ea51f285f0", "sha256": "b4cbd2b89d6b18c52e33d9b82fbcde0a76ba4f80dc6210b4e3492961a832c5ed" }, "downloads": -1, "filename": "xrayutilities-1.5.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "47f47efeeaea11ac252916ea51f285f0", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3956497, "upload_time": "2019-01-07T17:02:34", "url": "https://files.pythonhosted.org/packages/e2/32/f4d3022607a91fa826a93ef7a0eb586488c8160f3918b89892b22c38dd66/xrayutilities-1.5.1.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "15cf1a9894400d3440dc30d171bd052d", "sha256": "7297ce0c2f9ff55c475024eeae2c7cd9ce202e82fdb4a3a387f37003952757a1" }, "downloads": -1, "filename": "xrayutilities-1.5.1.win32-py3.5.exe", "has_sig": false, "md5_digest": "15cf1a9894400d3440dc30d171bd052d", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4222738, "upload_time": "2019-01-07T17:02:47", "url": "https://files.pythonhosted.org/packages/92/22/2f4c736c11c41760d28a6cdffddd458e05d815c9806247ded34a1c2b823f/xrayutilities-1.5.1.win32-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "842ed918c90137afc4cba2c6ae4e0ab2", "sha256": "1a7bc8b5c8998e823c57cf035cbae1e27f68207704374e100860f181f582d800" }, "downloads": -1, "filename": "xrayutilities-1.5.1.win32-py3.6.exe", "has_sig": false, "md5_digest": "842ed918c90137afc4cba2c6ae4e0ab2", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4222787, "upload_time": "2019-01-07T17:03:05", "url": "https://files.pythonhosted.org/packages/27/a4/c08b29a50b9935ba13a4e52f8ec8f55e9c1cb8c0f144bc96bbdf0adaa62d/xrayutilities-1.5.1.win32-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "df05dbfa719d372d43d25e46f484f9e2", "sha256": "914ff4ecb9797497c0f5312a30f522cfd4c7dcd9f12a173dcd3097ddd15d9e16" }, "downloads": -1, "filename": "xrayutilities-1.5.1.win32-py3.7.exe", "has_sig": false, "md5_digest": "df05dbfa719d372d43d25e46f484f9e2", "packagetype": "bdist_wininst", "python_version": "3.7", "requires_python": null, "size": 4222788, "upload_time": "2019-01-07T17:03:15", "url": "https://files.pythonhosted.org/packages/45/4b/63a4d22e46539a4fb984d9c393d5820a4a54768b6fe5099b363c9c2d364c/xrayutilities-1.5.1.win32-py3.7.exe" }, { "comment_text": "", "digests": { "md5": "c3f3d2af7fce2076faa9555ac0fac70a", "sha256": "8eeac4f5bd9156e9bf2a4a7b28328f226caa30ad32e4a276775cbd547ff5fabd" }, "downloads": -1, "filename": "xrayutilities-1.5.1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "c3f3d2af7fce2076faa9555ac0fac70a", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3996306, "upload_time": "2019-01-07T17:03:23", "url": "https://files.pythonhosted.org/packages/e5/0a/dfcb666e167266bf46817d00b5d144b668c411adbe79ce1e889854a605ac/xrayutilities-1.5.1.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "c3b525ea2c135397aa9fd1ac68d4519f", "sha256": "10fd447dc55cbefab1b627d0ff7c7ccec1724742d1746ba6a2af4b7cf9aebf07" }, "downloads": -1, "filename": "xrayutilities-1.5.1.win-amd64-py3.5.exe", "has_sig": false, "md5_digest": "c3b525ea2c135397aa9fd1ac68d4519f", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4360411, "upload_time": "2019-01-07T17:03:32", "url": "https://files.pythonhosted.org/packages/88/1b/7f0bc715be16b629f65066e5cd8c658bc8d81019d2cf783cbabbfe6b3fbb/xrayutilities-1.5.1.win-amd64-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "c11b3dd4ac183926c3fe341b8b12b1e1", "sha256": "fbbf886e71a3546ce6d8e2ec6ea54b62e54cc8258cd7b89a8c5f8960fcd42451" }, "downloads": -1, "filename": "xrayutilities-1.5.1.win-amd64-py3.6.exe", "has_sig": false, "md5_digest": "c11b3dd4ac183926c3fe341b8b12b1e1", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4360459, "upload_time": "2019-01-07T17:03:40", "url": "https://files.pythonhosted.org/packages/4a/42/f14a194034ada207cbc47177628571aaf52bb65d3eaabeffd880357268e6/xrayutilities-1.5.1.win-amd64-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "ad1a0372c2a29817cfa14422ec4a071f", "sha256": "ea54efe9ea0d8628c94a727f1b284063ff41fa7b3da195a694e29f637041b3ad" }, "downloads": -1, "filename": "xrayutilities-1.5.1.win-amd64-py3.7.exe", "has_sig": false, "md5_digest": "ad1a0372c2a29817cfa14422ec4a071f", "packagetype": "bdist_wininst", "python_version": "3.7", "requires_python": null, "size": 4360459, "upload_time": "2019-01-07T17:03:48", "url": "https://files.pythonhosted.org/packages/d7/cf/0bf9072b65dfe2bc6e1f5956a520d5f33939ae7795bb2b138032bc8df5ef/xrayutilities-1.5.1.win-amd64-py3.7.exe" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "971a82099ae1da43242fbcdd025a4f82", "sha256": "3f938a1e6f916492d00a672608d1c0e476dcbec5b117e548d154fe382ffc2841" }, "downloads": -1, "filename": "xrayutilities-1.5.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "971a82099ae1da43242fbcdd025a4f82", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3766374, "upload_time": "2019-06-28T14:41:52", "url": "https://files.pythonhosted.org/packages/c2/57/ac0b2a93b89b066ee8e65e528df5e92c05dd1ac804e02dfc329f16bc7cab/xrayutilities-1.5.2-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0e4c262e837cd531bf575bde88d0369a", "sha256": "e464da5da1aa98be4b7e75b47d98a3cbacdae822cedb95f9bf49d59db96b3145" }, "downloads": -1, "filename": "xrayutilities-1.5.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "0e4c262e837cd531bf575bde88d0369a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3778540, "upload_time": "2019-06-28T14:42:01", "url": "https://files.pythonhosted.org/packages/b4/f8/b13e1af073f0dd1e268b34595730d7e47fd18bc133628cfe1593d97e9354/xrayutilities-1.5.2-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7f839a88ce3a3a64ea274b11ef3db6f8", "sha256": "24556da2e3155ff4ade4fd7be98fe583afbf4810efc68bdfd61d5e5bb4c39cd3" }, "downloads": -1, "filename": "xrayutilities-1.5.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "7f839a88ce3a3a64ea274b11ef3db6f8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3770462, "upload_time": "2019-06-28T14:42:10", "url": "https://files.pythonhosted.org/packages/51/1c/039264471c0b5bd14e27677b915e8a1aab06145efdfcc7f68a2a996c4cf9/xrayutilities-1.5.2-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c56b985fa97ecd9736b00e72de955927", "sha256": "49310ab02d8091e52d6d982d13eb3be6be5df856c9229b1f53c72238be664306" }, "downloads": -1, "filename": "xrayutilities-1.5.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c56b985fa97ecd9736b00e72de955927", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3778618, "upload_time": "2019-06-28T14:42:19", "url": "https://files.pythonhosted.org/packages/23/82/8bd63661760a9b83b132736ad85555c3a9afa3dd59f993addafdd79f3abe/xrayutilities-1.5.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "763f4bb3062f3af5b17632df5a8f1fa5", "sha256": "47f1f8a5268d761c1fcecb3788d4a631da5cd8bc58a790182d0b4868fc22f751" }, "downloads": -1, "filename": "xrayutilities-1.5.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "763f4bb3062f3af5b17632df5a8f1fa5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3770488, "upload_time": "2019-06-28T14:42:26", "url": "https://files.pythonhosted.org/packages/4b/99/b1e169bdbc37fc2d0c23a82df58dc2835d5bb7f83cf00fe5d294adb2b048/xrayutilities-1.5.2-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "72ae855cf399a1485d03045ade386c3b", "sha256": "e27fa357e8d47a793042c65713a5322217e0fe7b8ead549afd0642f4a815f1f4" }, "downloads": -1, "filename": "xrayutilities-1.5.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "72ae855cf399a1485d03045ade386c3b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3778648, "upload_time": "2019-06-28T14:42:36", "url": "https://files.pythonhosted.org/packages/a9/76/0f66eaed696e5adfbc6fef537e9565cdf2a313139b077ee620bd1c258797/xrayutilities-1.5.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1e94b60016a77cb0b4ab43fd50f3b88a", "sha256": "e1a65ae63cc8db71a18aba04e3def13f6c06aa4120262b4cb2633bb830d86bfe" }, "downloads": -1, "filename": "xrayutilities-1.5.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "1e94b60016a77cb0b4ab43fd50f3b88a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 3770488, "upload_time": "2019-06-28T14:42:44", "url": "https://files.pythonhosted.org/packages/77/7e/991df89091ab5e241aa7a9de84f79006dc1c7b18241ae4b403bdea16b3a3/xrayutilities-1.5.2-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2743c6119fbf294c7cfcb0da39cbb833", "sha256": "efc4b34a739acfcdfb27ed41731408f0b796181e1553bb6362a9eedcffdb1441" }, "downloads": -1, "filename": "xrayutilities-1.5.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2743c6119fbf294c7cfcb0da39cbb833", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 3778648, "upload_time": "2019-06-28T14:42:52", "url": "https://files.pythonhosted.org/packages/48/7d/979305d41c4b84c7da4ea830e2770f9f2fd4d6c8c596383c48992154d7c8/xrayutilities-1.5.2-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4259d2592daa724fdea01cd8143230df", "sha256": "1a7b8c699df3a7e137d93e82e53d1437a8352a4611b38e2d72af71d7986393b1" }, "downloads": -1, "filename": "xrayutilities-1.5.2.tar.gz", "has_sig": false, "md5_digest": "4259d2592daa724fdea01cd8143230df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14822713, "upload_time": "2019-06-28T14:43:17", "url": "https://files.pythonhosted.org/packages/4e/f2/864f03386c8a4d1b26c8f39234f8cfd8d778252fb2144f9c95a3d41a6ad8/xrayutilities-1.5.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "f0c5e42543e5038d83461e2cd0c72b6e", "sha256": "340194e7cf724615e0f6819ef0d2b43d4110985455e1171cc011e46a0c1dbcea" }, "downloads": -1, "filename": "xrayutilities-1.5.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "f0c5e42543e5038d83461e2cd0c72b6e", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3964217, "upload_time": "2019-06-28T14:43:27", "url": "https://files.pythonhosted.org/packages/d7/f1/b47e51f71dc62f715d1b934ebc3bfc2bf8698154f82ad463eeaafc56bba9/xrayutilities-1.5.2.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "9c3f3dc24d744fc44768daef68649bc6", "sha256": "1d16aefd1670a3f8fb847ee7c36d5140c7bc54d931b7c90a6680134bdaef8371" }, "downloads": -1, "filename": "xrayutilities-1.5.2.win32-py3.5.exe", "has_sig": false, "md5_digest": "9c3f3dc24d744fc44768daef68649bc6", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4229059, "upload_time": "2019-06-28T14:43:35", "url": "https://files.pythonhosted.org/packages/2e/9b/5d330e9be21053e4b9ed89fdcf7c78c5fc12779eedb073d42c569906b209/xrayutilities-1.5.2.win32-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "deb0783f831bf2314466da79774b52a5", "sha256": "a94f7c99020e4ab2b13353b846bfa29e1f0ddaa3555c0063a38fac234b0cdeab" }, "downloads": -1, "filename": "xrayutilities-1.5.2.win32-py3.6.exe", "has_sig": false, "md5_digest": "deb0783f831bf2314466da79774b52a5", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4230508, "upload_time": "2019-06-28T14:43:44", "url": "https://files.pythonhosted.org/packages/bb/e3/74c12e423bde9dcc5a400573f0b261fbf70b618bde330bb9709c4001f2a5/xrayutilities-1.5.2.win32-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "8e9ecc561105126a82cf72207322318f", "sha256": "1560176f91ec5bd7d8a2a073b29ab919def7f6ff10c031d10efaf6806b6a1cef" }, "downloads": -1, "filename": "xrayutilities-1.5.2.win32-py3.7.exe", "has_sig": false, "md5_digest": "8e9ecc561105126a82cf72207322318f", "packagetype": "bdist_wininst", "python_version": "3.7", "requires_python": null, "size": 4230509, "upload_time": "2019-06-28T14:43:53", "url": "https://files.pythonhosted.org/packages/d6/f8/85c600b57d4f911ce0675f149f632a27bd6fadc207e72802589c5843440b/xrayutilities-1.5.2.win32-py3.7.exe" }, { "comment_text": "", "digests": { "md5": "e13c5079622a8833cf2f567df4cb2789", "sha256": "7c79a2c6d6a2f7780ad7f025feeb41714766214003759f8e65d101163bf1f77d" }, "downloads": -1, "filename": "xrayutilities-1.5.2.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "e13c5079622a8833cf2f567df4cb2789", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 4004023, "upload_time": "2019-06-28T14:44:02", "url": "https://files.pythonhosted.org/packages/3f/b6/144b742c7bebbaf5ca5ae99bf71006024f7d72676640af8820659c93920f/xrayutilities-1.5.2.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "6a5ccdfb1a11cc4847df214d8348eca8", "sha256": "3dd73a60c30c8898260b71cca26cb98f3ae046bef55f238386a360024344e012" }, "downloads": -1, "filename": "xrayutilities-1.5.2.win-amd64-py3.5.exe", "has_sig": false, "md5_digest": "6a5ccdfb1a11cc4847df214d8348eca8", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4366741, "upload_time": "2019-06-28T14:44:10", "url": "https://files.pythonhosted.org/packages/e4/b7/e46f2c6edf67b2a3a6924a57c647faabc3f891b7bc8d320cd2669f353ae0/xrayutilities-1.5.2.win-amd64-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "8a7fbf5cb5b3cc647d02658ea860f40f", "sha256": "5f1355e05f324a12d64f81a875ee569e31500537a1fffba400f38026e6b5cf26" }, "downloads": -1, "filename": "xrayutilities-1.5.2.win-amd64-py3.6.exe", "has_sig": false, "md5_digest": "8a7fbf5cb5b3cc647d02658ea860f40f", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4368193, "upload_time": "2019-06-28T14:44:19", "url": "https://files.pythonhosted.org/packages/44/12/01f3e2f475309a97256ab1792e892ae0502a51554decbcdb8a681ac395f5/xrayutilities-1.5.2.win-amd64-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "76ae6faec6c597efa83db27794b96f73", "sha256": "365ce4b29ba7a30988fe0dbc4e40e0a12c2fe427d92229963c510bede5154005" }, "downloads": -1, "filename": "xrayutilities-1.5.2.win-amd64-py3.7.exe", "has_sig": false, "md5_digest": "76ae6faec6c597efa83db27794b96f73", "packagetype": "bdist_wininst", "python_version": "3.7", "requires_python": null, "size": 4368192, "upload_time": "2019-06-28T14:44:28", "url": "https://files.pythonhosted.org/packages/a3/8f/38a13f790f5346fee96ca9f1f266441f6fed00952293f2734afaf26e52b8/xrayutilities-1.5.2.win-amd64-py3.7.exe" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "6c803dc0a05a8a6a3a44cd1e0af9b5b5", "sha256": "475ad50b0a1eaf2ab8345bae51d9009e89040811f619a40fcf3e7361afe2f998" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "6c803dc0a05a8a6a3a44cd1e0af9b5b5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3767419, "upload_time": "2019-10-09T10:11:43", "url": "https://files.pythonhosted.org/packages/9f/fe/d8056b1f7af6c0b8842eb20850eb90d35938e6debd31ff94eacb5c58829e/xrayutilities-1.5.3-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "83af7c8575f6421fcf2b95c53874c8f4", "sha256": "584b1f2c8f3ea1968aa5f2c6fa7b9ead12aaae4558a3367dd1dddc0751c41090" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "83af7c8575f6421fcf2b95c53874c8f4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3779581, "upload_time": "2019-10-09T10:11:46", "url": "https://files.pythonhosted.org/packages/8b/71/4ae59b01328ffc8d05644ee8dfeb1a2d02ec40607b8c5109993b345ca469/xrayutilities-1.5.3-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5145a201a8c91e6c4d85033517703b22", "sha256": "ce044284d2e9bd3a750a1dc5b5b9d8c56343bb195edc59f336ecbd7fa183ed8a" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "5145a201a8c91e6c4d85033517703b22", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3771505, "upload_time": "2019-10-09T10:11:49", "url": "https://files.pythonhosted.org/packages/f1/76/d894865a3f8566c628fe6c877caf323aeed6636afde067313efd25223f96/xrayutilities-1.5.3-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "37424380d4daaa4974c0eafa5e8e7762", "sha256": "93f8cd1ad37ce9808ce8fad796b9d832dd91df4ab3f53a3f6db47e523bb5209f" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "37424380d4daaa4974c0eafa5e8e7762", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3779661, "upload_time": "2019-10-09T10:11:53", "url": "https://files.pythonhosted.org/packages/24/db/91893d887e92a472f5fa66900df61102e90e4254ead7b0f982f3ebc6cb5c/xrayutilities-1.5.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ace64d47b48f85448456c10d1c381a6b", "sha256": "78dc5efa1edf4785b52d05c7269f7fc06d381fe779b14b473f1fa75562ab62ad" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "ace64d47b48f85448456c10d1c381a6b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3771531, "upload_time": "2019-10-09T10:11:57", "url": "https://files.pythonhosted.org/packages/c6/2d/fab93648e9ae1a13ef9316bc91d329e603deb437aebd8fdfea41d32da539/xrayutilities-1.5.3-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "dc161b8c4c7db05c1993288a8fe03a57", "sha256": "9e4a39e0b0e19c1d755b17ada2c43568bb293e0dab5e718c33f92d74fee02812" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "dc161b8c4c7db05c1993288a8fe03a57", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3779689, "upload_time": "2019-10-09T10:12:01", "url": "https://files.pythonhosted.org/packages/f8/eb/e413fbb926b61114b10ba5591b8bbcbff14cc4047a7561558c56d6fc3f84/xrayutilities-1.5.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3c4504bd0586d67ed968401158120fae", "sha256": "c67b38fd7718f3cbd3438f1442d46527889c84353e724245300056e0193d9a4e" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3c4504bd0586d67ed968401158120fae", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 3771531, "upload_time": "2019-10-09T10:12:05", "url": "https://files.pythonhosted.org/packages/c8/03/04c034c1ede446af5b7533601f6f8fb050cecbff0ed4a77da1ac9131d81a/xrayutilities-1.5.3-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8382def2539dd431c9467644b57405e5", "sha256": "58e5ff0e11b82442dcf513fe390fc52181034a61dcd88b1d9cc5d5cbd019c876" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8382def2539dd431c9467644b57405e5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 3779679, "upload_time": "2019-10-09T10:12:09", "url": "https://files.pythonhosted.org/packages/d1/40/476c8848c581ac0732261ec84564f461536892bd54cd08b050cf72893b4d/xrayutilities-1.5.3-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fa974a677f330881673a7fd59fea8c66", "sha256": "d5c0735f9345438cf61daea6f9624ce40f45afdb90f4195a0673729d4a977135" }, "downloads": -1, "filename": "xrayutilities-1.5.3-py3.6-linux-x86_64.egg", "has_sig": false, "md5_digest": "fa974a677f330881673a7fd59fea8c66", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 4159290, "upload_time": "2019-10-09T10:12:12", "url": "https://files.pythonhosted.org/packages/5d/4a/4d1e2428f2a9d39e40b0a39c659e3cbe18cf934cb1d5bb27e2a5319d07f7/xrayutilities-1.5.3-py3.6-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "6aa1d2b2e14681ed3c3e7273982d5d39", "sha256": "0121283875d288e595b68f5a9d60dd5ee1cbe9d233a16a80d0f735b812338133" }, "downloads": -1, "filename": "xrayutilities-1.5.3.tar.gz", "has_sig": false, "md5_digest": "6aa1d2b2e14681ed3c3e7273982d5d39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14821859, "upload_time": "2019-10-09T10:12:17", "url": "https://files.pythonhosted.org/packages/bb/65/76932673a97e33088f1eaa2245e9573f896ab9d1ea1726e5f5912dc92b3e/xrayutilities-1.5.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "fa0e9fda7f913c0f599c333b09241485", "sha256": "3fbad42bd7d0f722e4cec36bf3acaa7770b8c26728fde96be484f7bd25e6f3ff" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win32-py2.7.exe", "has_sig": false, "md5_digest": "fa0e9fda7f913c0f599c333b09241485", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3965301, "upload_time": "2019-10-09T10:12:22", "url": "https://files.pythonhosted.org/packages/20/6b/c06c0d7c85cd532684ae37fecab6d270930d72d601c3f1f5fccf87768392/xrayutilities-1.5.3.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "4cb4e24625e8e0f0e4563a62d741fe4e", "sha256": "91b1ce4110637d0cdb4e883779226514315439ef24d33b5659c99644daac0fef" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win32-py3.5.exe", "has_sig": false, "md5_digest": "4cb4e24625e8e0f0e4563a62d741fe4e", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4230145, "upload_time": "2019-10-09T10:12:26", "url": "https://files.pythonhosted.org/packages/36/23/443c77228337badd759ad5a43b147c975fb981892be714bad05e983c498e/xrayutilities-1.5.3.win32-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "0c1a64e44f1bbb5bcbdc8b72f135fa1b", "sha256": "b5640f8d143657e12984fa7ca907aa8b713c8849eaba7c538d7a648e36cf36c4" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win32-py3.6.exe", "has_sig": false, "md5_digest": "0c1a64e44f1bbb5bcbdc8b72f135fa1b", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4231589, "upload_time": "2019-10-09T10:12:30", "url": "https://files.pythonhosted.org/packages/59/63/8e66c8ded8549acb09708020a8b1d0a9b4d7dfa30bca1dcd00fed933f708/xrayutilities-1.5.3.win32-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "23e9124c4cec4fc741eaa2ce17a4f343", "sha256": "7502f488de3bf033925582ad732589f86b008a47a00731b8b6aa7eaf6c4eb9d2" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win32-py3.7.exe", "has_sig": false, "md5_digest": "23e9124c4cec4fc741eaa2ce17a4f343", "packagetype": "bdist_wininst", "python_version": "3.7", "requires_python": null, "size": 4231591, "upload_time": "2019-10-09T10:12:33", "url": "https://files.pythonhosted.org/packages/a5/99/ac19731ebad8bac35c9292ef5d1e45f0b73ac68bd1641266e2be82405c9a/xrayutilities-1.5.3.win32-py3.7.exe" }, { "comment_text": "", "digests": { "md5": "3fd387325cd52dd41c851ddedd86f858", "sha256": "5e9bb5015919cbc9d4ea426828ec650480fa0472199e11852d7baeb657d6cf32" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "3fd387325cd52dd41c851ddedd86f858", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 4005104, "upload_time": "2019-10-09T10:12:38", "url": "https://files.pythonhosted.org/packages/c1/6a/87d60764857c82ffb5309d9c639ce4db29ec26b63919034ed57d344adea9/xrayutilities-1.5.3.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "707ca0e60252159d6fadf3ce66195caf", "sha256": "b27820b3432f62f4a250cb21010f7a36a935c6c9c1aed956e7f66a3c9de69a87" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win-amd64-py3.5.exe", "has_sig": false, "md5_digest": "707ca0e60252159d6fadf3ce66195caf", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4367827, "upload_time": "2019-10-09T10:12:41", "url": "https://files.pythonhosted.org/packages/3f/ff/e1cf309cd053203bd30856e1a6f7f364c3e89b645adb5b3fe90ec102955b/xrayutilities-1.5.3.win-amd64-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "7c8e2393d677dbea148e5849eca73251", "sha256": "4ab5a258f43ffe2a0ecf46221f417bfb118b437892a781b6906d230d779974af" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win-amd64-py3.6.exe", "has_sig": false, "md5_digest": "7c8e2393d677dbea148e5849eca73251", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4369272, "upload_time": "2019-10-09T10:12:44", "url": "https://files.pythonhosted.org/packages/fe/70/9ab8edf257f7dbcbc0dc5207d905ae4ed8a5f4502016548dc394d573fbfc/xrayutilities-1.5.3.win-amd64-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "e82f5496e85524c9e09de4b5202b5fee", "sha256": "93d8d99db46a5146bdc5da5342093f52bb7cbf1da8b9c2b34fe5bda696adf6de" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win-amd64-py3.7.exe", "has_sig": false, "md5_digest": "e82f5496e85524c9e09de4b5202b5fee", "packagetype": "bdist_wininst", "python_version": "3.7", "requires_python": null, "size": 4369267, "upload_time": "2019-10-09T10:12:48", "url": "https://files.pythonhosted.org/packages/fc/ca/4d0287a30abc4738d8f4e0f801962f760cceaf7d49be84daad2ad1a55f86/xrayutilities-1.5.3.win-amd64-py3.7.exe" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6c803dc0a05a8a6a3a44cd1e0af9b5b5", "sha256": "475ad50b0a1eaf2ab8345bae51d9009e89040811f619a40fcf3e7361afe2f998" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "6c803dc0a05a8a6a3a44cd1e0af9b5b5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3767419, "upload_time": "2019-10-09T10:11:43", "url": "https://files.pythonhosted.org/packages/9f/fe/d8056b1f7af6c0b8842eb20850eb90d35938e6debd31ff94eacb5c58829e/xrayutilities-1.5.3-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "83af7c8575f6421fcf2b95c53874c8f4", "sha256": "584b1f2c8f3ea1968aa5f2c6fa7b9ead12aaae4558a3367dd1dddc0751c41090" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "83af7c8575f6421fcf2b95c53874c8f4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3779581, "upload_time": "2019-10-09T10:11:46", "url": "https://files.pythonhosted.org/packages/8b/71/4ae59b01328ffc8d05644ee8dfeb1a2d02ec40607b8c5109993b345ca469/xrayutilities-1.5.3-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5145a201a8c91e6c4d85033517703b22", "sha256": "ce044284d2e9bd3a750a1dc5b5b9d8c56343bb195edc59f336ecbd7fa183ed8a" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "5145a201a8c91e6c4d85033517703b22", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3771505, "upload_time": "2019-10-09T10:11:49", "url": "https://files.pythonhosted.org/packages/f1/76/d894865a3f8566c628fe6c877caf323aeed6636afde067313efd25223f96/xrayutilities-1.5.3-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "37424380d4daaa4974c0eafa5e8e7762", "sha256": "93f8cd1ad37ce9808ce8fad796b9d832dd91df4ab3f53a3f6db47e523bb5209f" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "37424380d4daaa4974c0eafa5e8e7762", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3779661, "upload_time": "2019-10-09T10:11:53", "url": "https://files.pythonhosted.org/packages/24/db/91893d887e92a472f5fa66900df61102e90e4254ead7b0f982f3ebc6cb5c/xrayutilities-1.5.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ace64d47b48f85448456c10d1c381a6b", "sha256": "78dc5efa1edf4785b52d05c7269f7fc06d381fe779b14b473f1fa75562ab62ad" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "ace64d47b48f85448456c10d1c381a6b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3771531, "upload_time": "2019-10-09T10:11:57", "url": "https://files.pythonhosted.org/packages/c6/2d/fab93648e9ae1a13ef9316bc91d329e603deb437aebd8fdfea41d32da539/xrayutilities-1.5.3-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "dc161b8c4c7db05c1993288a8fe03a57", "sha256": "9e4a39e0b0e19c1d755b17ada2c43568bb293e0dab5e718c33f92d74fee02812" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "dc161b8c4c7db05c1993288a8fe03a57", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3779689, "upload_time": "2019-10-09T10:12:01", "url": "https://files.pythonhosted.org/packages/f8/eb/e413fbb926b61114b10ba5591b8bbcbff14cc4047a7561558c56d6fc3f84/xrayutilities-1.5.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3c4504bd0586d67ed968401158120fae", "sha256": "c67b38fd7718f3cbd3438f1442d46527889c84353e724245300056e0193d9a4e" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3c4504bd0586d67ed968401158120fae", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 3771531, "upload_time": "2019-10-09T10:12:05", "url": "https://files.pythonhosted.org/packages/c8/03/04c034c1ede446af5b7533601f6f8fb050cecbff0ed4a77da1ac9131d81a/xrayutilities-1.5.3-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8382def2539dd431c9467644b57405e5", "sha256": "58e5ff0e11b82442dcf513fe390fc52181034a61dcd88b1d9cc5d5cbd019c876" }, "downloads": -1, "filename": "xrayutilities-1.5.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8382def2539dd431c9467644b57405e5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 3779679, "upload_time": "2019-10-09T10:12:09", "url": "https://files.pythonhosted.org/packages/d1/40/476c8848c581ac0732261ec84564f461536892bd54cd08b050cf72893b4d/xrayutilities-1.5.3-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fa974a677f330881673a7fd59fea8c66", "sha256": "d5c0735f9345438cf61daea6f9624ce40f45afdb90f4195a0673729d4a977135" }, "downloads": -1, "filename": "xrayutilities-1.5.3-py3.6-linux-x86_64.egg", "has_sig": false, "md5_digest": "fa974a677f330881673a7fd59fea8c66", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 4159290, "upload_time": "2019-10-09T10:12:12", "url": "https://files.pythonhosted.org/packages/5d/4a/4d1e2428f2a9d39e40b0a39c659e3cbe18cf934cb1d5bb27e2a5319d07f7/xrayutilities-1.5.3-py3.6-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "6aa1d2b2e14681ed3c3e7273982d5d39", "sha256": "0121283875d288e595b68f5a9d60dd5ee1cbe9d233a16a80d0f735b812338133" }, "downloads": -1, "filename": "xrayutilities-1.5.3.tar.gz", "has_sig": false, "md5_digest": "6aa1d2b2e14681ed3c3e7273982d5d39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14821859, "upload_time": "2019-10-09T10:12:17", "url": "https://files.pythonhosted.org/packages/bb/65/76932673a97e33088f1eaa2245e9573f896ab9d1ea1726e5f5912dc92b3e/xrayutilities-1.5.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "fa0e9fda7f913c0f599c333b09241485", "sha256": "3fbad42bd7d0f722e4cec36bf3acaa7770b8c26728fde96be484f7bd25e6f3ff" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win32-py2.7.exe", "has_sig": false, "md5_digest": "fa0e9fda7f913c0f599c333b09241485", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 3965301, "upload_time": "2019-10-09T10:12:22", "url": "https://files.pythonhosted.org/packages/20/6b/c06c0d7c85cd532684ae37fecab6d270930d72d601c3f1f5fccf87768392/xrayutilities-1.5.3.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "4cb4e24625e8e0f0e4563a62d741fe4e", "sha256": "91b1ce4110637d0cdb4e883779226514315439ef24d33b5659c99644daac0fef" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win32-py3.5.exe", "has_sig": false, "md5_digest": "4cb4e24625e8e0f0e4563a62d741fe4e", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4230145, "upload_time": "2019-10-09T10:12:26", "url": "https://files.pythonhosted.org/packages/36/23/443c77228337badd759ad5a43b147c975fb981892be714bad05e983c498e/xrayutilities-1.5.3.win32-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "0c1a64e44f1bbb5bcbdc8b72f135fa1b", "sha256": "b5640f8d143657e12984fa7ca907aa8b713c8849eaba7c538d7a648e36cf36c4" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win32-py3.6.exe", "has_sig": false, "md5_digest": "0c1a64e44f1bbb5bcbdc8b72f135fa1b", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4231589, "upload_time": "2019-10-09T10:12:30", "url": "https://files.pythonhosted.org/packages/59/63/8e66c8ded8549acb09708020a8b1d0a9b4d7dfa30bca1dcd00fed933f708/xrayutilities-1.5.3.win32-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "23e9124c4cec4fc741eaa2ce17a4f343", "sha256": "7502f488de3bf033925582ad732589f86b008a47a00731b8b6aa7eaf6c4eb9d2" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win32-py3.7.exe", "has_sig": false, "md5_digest": "23e9124c4cec4fc741eaa2ce17a4f343", "packagetype": "bdist_wininst", "python_version": "3.7", "requires_python": null, "size": 4231591, "upload_time": "2019-10-09T10:12:33", "url": "https://files.pythonhosted.org/packages/a5/99/ac19731ebad8bac35c9292ef5d1e45f0b73ac68bd1641266e2be82405c9a/xrayutilities-1.5.3.win32-py3.7.exe" }, { "comment_text": "", "digests": { "md5": "3fd387325cd52dd41c851ddedd86f858", "sha256": "5e9bb5015919cbc9d4ea426828ec650480fa0472199e11852d7baeb657d6cf32" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "3fd387325cd52dd41c851ddedd86f858", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 4005104, "upload_time": "2019-10-09T10:12:38", "url": "https://files.pythonhosted.org/packages/c1/6a/87d60764857c82ffb5309d9c639ce4db29ec26b63919034ed57d344adea9/xrayutilities-1.5.3.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "707ca0e60252159d6fadf3ce66195caf", "sha256": "b27820b3432f62f4a250cb21010f7a36a935c6c9c1aed956e7f66a3c9de69a87" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win-amd64-py3.5.exe", "has_sig": false, "md5_digest": "707ca0e60252159d6fadf3ce66195caf", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 4367827, "upload_time": "2019-10-09T10:12:41", "url": "https://files.pythonhosted.org/packages/3f/ff/e1cf309cd053203bd30856e1a6f7f364c3e89b645adb5b3fe90ec102955b/xrayutilities-1.5.3.win-amd64-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "7c8e2393d677dbea148e5849eca73251", "sha256": "4ab5a258f43ffe2a0ecf46221f417bfb118b437892a781b6906d230d779974af" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win-amd64-py3.6.exe", "has_sig": false, "md5_digest": "7c8e2393d677dbea148e5849eca73251", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 4369272, "upload_time": "2019-10-09T10:12:44", "url": "https://files.pythonhosted.org/packages/fe/70/9ab8edf257f7dbcbc0dc5207d905ae4ed8a5f4502016548dc394d573fbfc/xrayutilities-1.5.3.win-amd64-py3.6.exe" }, { "comment_text": "", "digests": { "md5": "e82f5496e85524c9e09de4b5202b5fee", "sha256": "93d8d99db46a5146bdc5da5342093f52bb7cbf1da8b9c2b34fe5bda696adf6de" }, "downloads": -1, "filename": "xrayutilities-1.5.3.win-amd64-py3.7.exe", "has_sig": false, "md5_digest": "e82f5496e85524c9e09de4b5202b5fee", "packagetype": "bdist_wininst", "python_version": "3.7", "requires_python": null, "size": 4369267, "upload_time": "2019-10-09T10:12:48", "url": "https://files.pythonhosted.org/packages/fc/ca/4d0287a30abc4738d8f4e0f801962f760cceaf7d49be84daad2ad1a55f86/xrayutilities-1.5.3.win-amd64-py3.7.exe" } ] }