{ "info": { "author": "Athul P. Girija", "author_email": "athulpg007@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Scientific/Engineering :: Physics" ], "description": "# AMAT\n\nAerocapture Mission Analysis Tool (AMAT) is designed to provide rapid mission analysis capability for aerocapture and Entry, Descent, and Landing (EDL) mission concepts to the planetary science community. AMAT was developed at the [Advanced Astrodynamics Concepts (AAC)](https://engineering.purdue.edu/AAC/) research group at Purdue University.\n\n\nSee [AMAT documentation](https://amat.readthedocs.io) for more details. \n\n[![Documentation Status](https://readthedocs.org/projects/amat/badge/?version=master)](https://amat.readthedocs.io/en/master/?badge=master) [![DOI](https://joss.theoj.org/papers/10.21105/joss.03710/status.svg)](https://doi.org/10.21105/joss.03710) [![PyPI version](https://badge.fury.io/py/AMAT.svg)](https://badge.fury.io/py/AMAT)\n\nIf you find AMAT useful in your work, please consider citing us: Girija et al., (2021). AMAT: A Python package for rapid conceptual design of aerocapture and atmospheric Entry, Descent, and Landing (EDL) missions in a Jupyter environment. *Journal of Open Source Software*, 6(67), 3710, [DOI: 10.21105/joss.03710](https://doi.org/10.21105/joss.03710)\n\n\nPlease note the public release version has a minimal working interplanetary dataset to run some of the example Jupyter notebooks because of data sharing policies of external collaborators.\n\n## Capabilities\n\nAMAT allows the user to perform low-fidelity broad sweep parametric studies; as well as high fidelity Monte Carlo simulations to quantify aerocapture performance. AMAT supports analysis for all atmosphere-bearing destinations in the Solar System: Venus, Earth, Mars, Jupiter, Saturn, Titan, Uranus, and Neptune.\n\n### Venus Aerocapture Trajectories\n![Venus Aerocapture Trajectory and Heating](https://raw.githubusercontent.com/athulpg007/AMAT/master/plots/craig-lyne-altitude-higher-res-lower-size.png)\n![Venus Aerocapture Trajectory and Heating](https://raw.githubusercontent.com/athulpg007/AMAT/master/plots/craig-lyne-heating-higher-res-lower-size.png)\n### Neptune Aerocapture Feasibility Chart\n![Neptune Aerocapture Feasibility](https://raw.githubusercontent.com/athulpg007/AMAT/master/plots/girijaSaikia2019b-higher-res-lower-size.png)\n### Monte Carlo Simulations\n![Monte Carlo Simulations](https://raw.githubusercontent.com/athulpg007/AMAT/master/plots/girijaSaikia2020b-fig-13-N5000.png)\n![Monte Carlo Simulations](https://raw.githubusercontent.com/athulpg007/AMAT/master/plots/girijaSaikia2020b-apo-histogram-N5000.png)\n\n\n## What kind of problems can AMAT solve?\n\nAMAT can be used to quickly assess the feasibility of an aerocapture mission concept using aerocapture feasibiility charts, and perform trade studies involving vehicle type, control authority, thermal protection system materials, and useful delivered mass to orbit. AMAT can also be used to set up and run high-fidelity Monte Carlo simulations of aerocapture trajectories considering delivery errors, atmospheric uncertainties, and aerodynamic uncertainties to evaluate system performance under uncertainty.\n\n### Examples\n\nAMAT comes with a number of example [Jupyter notebooks](https://amat.readthedocs.io/en/master/jupyter_link.html) to help users get started. The examples inculde:\n\n1. Venus aerocapture assesssment study\n2. Titan aerocapture assessment study\n3. Neptune aerocapture using blunt-body aeroshells\n4. Drag modulation aerocapture asssessment\n5. Planetary probe entry at various Solar System destinations\n\n## Features\n\n* Easy installation, only standard dependencies\n* Many examples and recreation of results from published literature\n* Extensive documented source code\n* Can be used for probe and lander Entry, Descent, Landing (EDL) calculations\n* Comes with a standard set of nominal atmospheric models\n\n## Installation \n\nNote: AMAT is designed to work with Python 3.0 or greater. You must have a Python 3 installation in your system.\n\nThere are three ways to install AMAT. \n\n### Option 1 : Install from pip (recommended)\n\nNote: Python Package Index limits the amount of additional data that can be packaged in the distribution, hence all data cannot be included in the built version. You will need to clone the GitHub repository to get the required data files, examples, and start using AMAT.\n\n#### For Linux/MacOS machines:\n * ```$ pip install AMAT```\n * ```$ git clone https://github.com/athulpg007/AMAT.git```\n\nIf you are unable to clone the repository, you can download the repository as a .zip file from GitHub and extract it.\n\nOnce AMAT is installed, run an example Jupyter notebook to check everything works correctly.\n * ```$ cd AMAT/examples```\n * ```$ jupyter-notebook```\n\nNote that you will need jupyterlab and pandas (for some examples) to run the example notebooks. Use ```pip install jupyterlab pandas``` to install Jupyter and pandas if it is not already installed on your system. \n\n\nThis will display the full list of example Jupyter notebooks included with AMAT. Open and run the ```example-01-hello-world``` notebook to get started with AMAT.\n\n#### For Windows machines:\n\nYou must have Anaconda installed. Open the Anaconda Prompt terminal:\n * ```$ pip install AMAT```\n\nOpen a Windows Powershell terminal and clone the GitHub reporistory. You must have Git installed.\n * ```$ git clone https://github.com/athulpg007/AMAT.git```\n\nRun an example Jupyter notebook. From the Anaconda Prompt terminal:\n * ```$ cd AMAT/examples```\n * ```$ jupyter-notebook```\n\nNote that you will need jupyterlab and pandas (for some examples) to run the example notebooks. Use ```pip install jupyterlab pandas``` to install Jupyter and pandas if it is not already installed on your system. \n\n\nThis will display the full list of example Jupyter notebooks included with AMAT. Open and run the ```example-01-hello-world``` notebook to get started with AMAT.\n\n\n### Option 2 : Install from source\n\nThis will clone the repository from GitHub and install AMAT from the source code.\n\n#### For Linux/MacOS machines:\n\nMake sure you have numpy, scipy, matplotlib and pandas installed. Most likely you already have these installed. If not, use the following commands to install these dependenies first. Open a terminal window (on Linux machines) and type the following commands. You must have pip installed.\n * ```$ pip install numpy scipy matplotlib pandas jupyterlab```\n\nClone the GitHub repository and install AMAT.\n * ```$ git clone https://github.com/athulpg007/AMAT.git```\n * ```$ cd AMAT```\n * ```$ python setup.py install```\n * ```$ cd examples```\n * ```$ jupyter-notebook```\n\n#### For Windows machines:\n\nOpen the Anaconda Prompt terminal to install the prerequisite packages.\n * ```$ pip install numpy scipy matplotlib```\n\nOpen a Windows Powershell terminal, clone the GitHub repository and install AMAT.\n * ```$ git clone https://github.com/athulpg007/AMAT.git```\n * ```$ cd AMAT```\n * ```$ python setup.py install```\n * ```$ cd examples```\n * ```$ jupyter-notebook```\n\nNote that you will need jupyterlab and pandas (for some examples) to run the example notebooks. Use ```pip install jupyterlab pandas``` to install Jupyter and pandas if it is not already installed on your system. \n\n\nTo uninstall AMAT:\n\n1. If you installed AMAT using pip:\n * ```$ pip uninstall AMAT```\n\n2. If you installed AMAT from source, from the main AMAT directory:\n * ```$ python setup.py develop -u```\n\nThis will remove the AMAT installation from Python. You may simply delete the root folder where AMAT was installed to completely remove the files.\n\n\n### Option 3 : Install in a virutalenv\n\nIf you plan to modifty the source code or add features, the recommended option is to to install it in a virtual environment. \n\n1. Change directory to where you want the virtual environment to be created.\n * ```$ cd home/path```\n\n2. Create a virutal environment and activate it.\n\nOn Linux/MacOS machines:\n * ```$ python3 -m venv env1```\n * ```$ source env1/bin/activate```\n\nOn Windows machines (from Anaconda Prompt):\n * ```$ conda create --name env1```\n * ```$ conda activate env1```\n * ```$ conda install pip```\n\n4. Follow the steps outlined in Option #2 (build from source) to clone the repository and install AMAT. If you make changes to the source code, remove the existing installation, update the setup file with a new version number, and re-install:\n * ```$ python setup.py develop -u```\n * ```$ python setup.py install```\n\nIf you want to create a new distrubution package:\n * ```$ python3 setup.py sdist bdist_wheel```\n\nTo re-make docs if you made changes to the source code (you must have Sphinx installed):\n * ```$ cd ~root/docs```\n * ```$ sphinx-apidoc -f -o source/ ../```\n * ```$ make html```\n\nIf you added a new AMAT module, appropriate changes must be made to docs/source/AMAT.rst.\n\n## Usage\n\n * ```from AMAT.planet import Planet```\n * ```from AMAT.vehicle import Vehicle```\n * ```from AMAT.launcher import Launcher```\n\n## License\n\nAMAT is an open source project licensed under the GNU General Public License Version 3.\n\n## Credits\n\nParts of the AMAT source code were originally developed in support of contracts between AAC and the Jet Propulsion Laboratory for various aerocapture mission studies between 2016 and 2020. Samples of atmospheric data from Global Reference Atmospheric Model (GRAM) software is used for illustration purpose only, and was developed by NASA Marshall Space Flight Center. The use of these GRAM models does not imply endorsement by NASA in any way whatsoever. A minimal working set of atmospheric profiles is included with AMAT to run the example notebooks. A minimal working interplanetary trajctory dataset is included with AMAT. The dataset was generated at Purdue University using the STOUR software package by Alec Mudek, and is also derived from trajectories published in the NASA Ice Giants Pre-Decadal Mission Study. The author plans to augment the interplanetary dataset with more publicly available information as it becomes available.\n\n## Support and Contribution\n\nIf you wish to contribute or report an issue, feel free to [contact me](mailto:athulpg007@gmail.com) or to use the [issue tracker](https://github.com/athulpg007/AMAT/issues) and [pull requests](https://github.com/athulpg007/AMAT/pulls) from the [code repository](https://github.com/athulpg007/AMAT).\n\nIf you wish to make a contribution, you can do as follows:\n\n * fork the GitHub repository \n * create a feature branch from *master* \n * add your feature and document it\n * run the tests \n * open a pull request\n\n## Extras\n\nThe AMAT repository includes representative atmospheric profiles for Solar System bodies, an Excel sheet with a comprehensive literature review of aerocapture, sample feasibility charts for aerocapture at all destinations, reference journal articles (by the author), a PDF version of the documentation, and the author's Ph.D. dissertation which provides more details on the methods and algorithms implemented in AMAT.\n\n## Reference Articles\n\nResults from these articles are used as benchmark examples.\n\n1. Craig, Scott, and James Evans Lyne. \"Parametric Study of Aerocapture for Missions to Venus.\" Journal of Spacecraft and Rockets Vol. 42, No. 6, pp. 1035-1038. [DOI: 10.2514/1.2589](https://arc.aiaa.org/doi/10.2514/1.2589)\n\n2. Putnam and Braun, \"Drag-Modulation Flight-Control System Options for Planetary Aerocapture\", Journal of Spacecraft and Rockets, Vol. 51, No. 1, 2014. [DOI:10.2514/1.A32589](https://arc.aiaa.org/doi/10.2514/1.A32589)\n\n3. Lu, Ye, and Sarag J. Saikia. \"Feasibility Assessment of Aerocapture for Future Titan Orbiter Missions.\" Journal of Spacecraft and Rockets Vol. 55, No. 5, pp. 1125-1135. [DOI: 10.2514/1.A34121](https://arc.aiaa.org/doi/10.2514/1.A34121)\n\n4. Girija, A. P., Lu, Y., & Saikia, S. J. \"Feasibility and Mass-Benefit Analysis of Aerocapture for Missions to Venus\". Journal of Spacecraft and Rockets, Vol. 57, No. 1, pp. 58-73. [DOI: 10.2514/1.A34529](https://arc.aiaa.org/doi/10.2514/1.A34529)\n\n5. Girija, A. P. et al. \"Feasibility and Performance Analysis of Neptune\nAerocapture Using Heritage Blunt-Body Aeroshells\", Journal of Spacecraft and Rockets, Vol. 57, No. 6, pp. 1186-1203. [DOI: 10.2514/1.A34719](https://arc.aiaa.org/doi/full/10.2514/1.A34719)\n\n6. Girija A. P. et al. \"Quantitative Assessment of Aerocapture and Applications to Future Missions\", Journal of Spacecraft and Rockets, 2022.\n[DOI: 10.2514/1.A35214](https://arc.aiaa.org/doi/full/10.2514/1.A35214)\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/athulpg007/AMAT", "keywords": "", "license": "GPL-3.0-or-later", "maintainer": "", "maintainer_email": "", "name": "AMAT", "package_url": "https://pypi.org/project/AMAT/", "platform": null, "project_url": "https://pypi.org/project/AMAT/", "project_urls": { "Homepage": "https://github.com/athulpg007/AMAT" }, "release_url": "https://pypi.org/project/AMAT/2.2.8/", "requires_dist": [ "numpy", "scipy", "matplotlib", "pandas" ], "requires_python": "", "summary": "Aerocapture Mission Analysis Tool", "version": "2.2.8", "yanked": false, "yanked_reason": null }, "last_serial": 13814382, "releases": { "0.0.1.dev1": [ { "comment_text": "", "digests": { "md5": "d208874793537a9fd6ceb34f29f83d4e", "sha256": "a922450d85c41ad90023d8eab6e8c50ba2f443802682e58872d744d6593d96f9" }, "downloads": -1, "filename": "AMAT-0.0.1.dev1-py3-none-any.whl", "has_sig": false, "md5_digest": "d208874793537a9fd6ceb34f29f83d4e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11893, "upload_time": "2019-10-25T18:21:14", "upload_time_iso_8601": "2019-10-25T18:21:14.380384Z", "url": "https://files.pythonhosted.org/packages/0f/8b/487187508220ba23c47b4a262683cc667937a47226881ac2cac1a60101a5/AMAT-0.0.1.dev1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e61ff83d2dba26fc75cb68bad2cb66ad", "sha256": "9a6356f3db4102cdc27d712b4a06960530b6629bc93678e3f2f342b602c496b4" }, "downloads": -1, "filename": "AMAT-0.0.1.dev1.tar.gz", "has_sig": false, "md5_digest": "e61ff83d2dba26fc75cb68bad2cb66ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6013, "upload_time": "2019-10-25T18:21:16", "upload_time_iso_8601": "2019-10-25T18:21:16.730095Z", "url": "https://files.pythonhosted.org/packages/b0/55/252f713979a9dc9eb1a1508b4bb6a5356ab5f9b161da1d28f1369e137644/AMAT-0.0.1.dev1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "dd0f887a10ca33412fde0032952567fc", "sha256": "d62752eaf75b63968e540213363dfc869b3e46b96706640055c8011bbf112771" }, "downloads": -1, "filename": "AMAT-2.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "dd0f887a10ca33412fde0032952567fc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42077, "upload_time": "2020-06-29T12:49:36", "upload_time_iso_8601": "2020-06-29T12:49:36.298278Z", "url": "https://files.pythonhosted.org/packages/4e/3c/fddf62112b18f4e44150591eb5d7fca1a470a5869b040ef7be606e4a3c22/AMAT-2.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09e934dc696293ff843780c9baf2cfd5", "sha256": "2598d45109ae168f9e5f69e75c527c59e694fed87d2f98b61214b68bf26334dc" }, "downloads": -1, "filename": "AMAT-2.0.8.tar.gz", "has_sig": false, "md5_digest": "09e934dc696293ff843780c9baf2cfd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7163047, "upload_time": "2020-06-29T12:49:47", "upload_time_iso_8601": "2020-06-29T12:49:47.445648Z", "url": "https://files.pythonhosted.org/packages/8f/e5/5d64877076b43c52e47876553914d7ffe1191a2829b6fd1d4df9cd24f48b/AMAT-2.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.9": [ { "comment_text": "", "digests": { "md5": "84bfea15e8779be0dbdb32e61b5f127b", "sha256": "a6f92f92cbab71113dd11690a4084d853298cae7dd6632f00e22bd670f6f602b" }, "downloads": -1, "filename": "AMAT-2.0.9-py3.7.egg", "has_sig": false, "md5_digest": "84bfea15e8779be0dbdb32e61b5f127b", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 80913, "upload_time": "2020-07-13T02:54:13", "upload_time_iso_8601": "2020-07-13T02:54:13.295038Z", "url": "https://files.pythonhosted.org/packages/a5/a5/1576f9957bde2fd0ca762bec938fb363d6c677e6a589cddb857aff1e1002/AMAT-2.0.9-py3.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67fab38fbdece6dedc5272f871553c38", "sha256": "2898a8cb93d831d3de33c7988e64b3b722aabf758b2ef6151bd858ee1e6e7c8f" }, "downloads": -1, "filename": "AMAT-2.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "67fab38fbdece6dedc5272f871553c38", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42286, "upload_time": "2020-07-13T02:54:11", "upload_time_iso_8601": "2020-07-13T02:54:11.937311Z", "url": "https://files.pythonhosted.org/packages/cd/2d/74f17a1c4bc168df87070e86d818778ad0091b5aeb78a2dedbf96b1de956/AMAT-2.0.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e00fabb8e0073022b3264be685b135ad", "sha256": "b592b561764aabf9a9706268ae37326595b777d3662f9651e10d9e69ef1ea118" }, "downloads": -1, "filename": "AMAT-2.0.9.tar.gz", "has_sig": false, "md5_digest": "e00fabb8e0073022b3264be685b135ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7163237, "upload_time": "2020-07-13T02:54:24", "upload_time_iso_8601": "2020-07-13T02:54:24.526348Z", "url": "https://files.pythonhosted.org/packages/b6/ac/cf5adaea1a23aa07c386daa4664fdf9dcd8f2e280687a80a2577642cf685/AMAT-2.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "6ca6a9ccbab0dcb735a31d732fe6a7bb", "sha256": "dc2fe70685f9bde2b6b222b0e90bbd8cfb6dd7d4100808d8c132177086fef42f" }, "downloads": -1, "filename": "AMAT-2.1.0-py3.7.egg", "has_sig": false, "md5_digest": "6ca6a9ccbab0dcb735a31d732fe6a7bb", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 81621, "upload_time": "2020-07-15T01:12:01", "upload_time_iso_8601": "2020-07-15T01:12:01.225465Z", "url": "https://files.pythonhosted.org/packages/f0/06/fcefc547e3023b44e20b4e5c303badd2ec42f75688457ae645569246c8e0/AMAT-2.1.0-py3.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "223231f5af6789b68fc1b6a7290fcbe8", "sha256": "47a98cf51ea776a389c4302b6c410f6b8b25a4cce34e10eff83c8e2f6161e96b" }, "downloads": -1, "filename": "AMAT-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "223231f5af6789b68fc1b6a7290fcbe8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42331, "upload_time": "2020-07-15T01:11:59", "upload_time_iso_8601": "2020-07-15T01:11:59.482950Z", "url": "https://files.pythonhosted.org/packages/20/16/ae89797e8a30bfab15862ae270db0fe0a4b8c7837a17a4ace491f670ed55/AMAT-2.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02ce4336a023edab6f44325e5d189f45", "sha256": "e5542ab3ba5f61cfe95283f8a984eb74f68392395105b5235679860b0028b003" }, "downloads": -1, "filename": "AMAT-2.1.0.tar.gz", "has_sig": false, "md5_digest": "02ce4336a023edab6f44325e5d189f45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10750193, "upload_time": "2020-07-15T01:12:17", "upload_time_iso_8601": "2020-07-15T01:12:17.240634Z", "url": "https://files.pythonhosted.org/packages/e7/2c/2fc7f1a69153148d096fb94badad758164c2436ac73ecf1b61d8686227ad/AMAT-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "b1c2fd1a0fc364220a9cafbbde8a9888", "sha256": "11df8c6d903d0b9e948f9ea2b53456132b3b0076cb12c9de7aa66fbb4944ff75" }, "downloads": -1, "filename": "AMAT-2.1.1-py3.7.egg", "has_sig": false, "md5_digest": "b1c2fd1a0fc364220a9cafbbde8a9888", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 81815, "upload_time": "2020-07-19T18:49:12", "upload_time_iso_8601": "2020-07-19T18:49:12.790886Z", "url": "https://files.pythonhosted.org/packages/e7/00/6df71dca8414895af07528faa2f580f4ac415d4c944882e6d580f43bb6aa/AMAT-2.1.1-py3.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2388fda136d10764da1ecd2a6fc399f5", "sha256": "018b3c06527262355613e407be79e82ab54a36b13385a5a6749dc1956134887a" }, "downloads": -1, "filename": "AMAT-2.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2388fda136d10764da1ecd2a6fc399f5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42170, "upload_time": "2020-07-19T18:49:11", "upload_time_iso_8601": "2020-07-19T18:49:11.665668Z", "url": "https://files.pythonhosted.org/packages/56/71/b0db2b2419f06afbebf4686322cbc18fc67846dd424312680bb2aed2ee88/AMAT-2.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa6c5b25fbad2c30e80f049cae9a7f2f", "sha256": "1f532ee20b4b939facf54666906ed0be91e0648ae356574ca353be2e3f9a8192" }, "downloads": -1, "filename": "AMAT-2.1.1.tar.gz", "has_sig": false, "md5_digest": "fa6c5b25fbad2c30e80f049cae9a7f2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12466168, "upload_time": "2020-07-19T18:49:56", "upload_time_iso_8601": "2020-07-19T18:49:56.113394Z", "url": "https://files.pythonhosted.org/packages/64/e6/56b5b134b0b12d3316a66f76f692afe8d285679f78d2dd2936fd1c4a7e9f/AMAT-2.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.10": [ { "comment_text": "", "digests": { "md5": "0f131642464bc24610c35bd1d90f6ea0", "sha256": "dd8a8b2bda597f1bf600b3b7d1b6d250ad60e475412aed50b128ea6a0673b2e2" }, "downloads": -1, "filename": "AMAT-2.1.10-py3-none-any.whl", "has_sig": false, "md5_digest": "0f131642464bc24610c35bd1d90f6ea0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44128, "upload_time": "2021-09-11T16:48:49", "upload_time_iso_8601": "2021-09-11T16:48:49.026091Z", "url": "https://files.pythonhosted.org/packages/a9/1d/631cf0f38fc10f46131d26a8375905935edaa7be2a392737d6c0077ffb68/AMAT-2.1.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "101cc7728a9f4373924fec0cde84852e", "sha256": "1bb3f3faf3577554f032f44fa6636d54df93cabe844f042461c47fe4b87c9a93" }, "downloads": -1, "filename": "AMAT-2.1.10.tar.gz", "has_sig": false, "md5_digest": "101cc7728a9f4373924fec0cde84852e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18302423, "upload_time": "2021-09-11T16:51:49", "upload_time_iso_8601": "2021-09-11T16:51:49.050871Z", "url": "https://files.pythonhosted.org/packages/68/dc/70d333c944898b132b07b659d939e451224f151dc1e1461c7022ab14237c/AMAT-2.1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.11": [ { "comment_text": "", "digests": { "md5": "bf51289b38b9ab6fa954b385d5737dd0", "sha256": "6e7e63db8e7b83de034b9838cac04372d575f6f3c4a5830729bab21e4eba4cbb" }, "downloads": -1, "filename": "AMAT-2.1.11-py3-none-any.whl", "has_sig": false, "md5_digest": "bf51289b38b9ab6fa954b385d5737dd0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44127, "upload_time": "2021-09-18T23:47:59", "upload_time_iso_8601": "2021-09-18T23:47:59.019224Z", "url": "https://files.pythonhosted.org/packages/c4/49/7003aef5ccca2682c36e944434fbb024b7887062188ee0be7f2a9a8fd76f/AMAT-2.1.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a587ebee7b682a4a57c347a079bcac30", "sha256": "b8871ca5b47d133be152a9aaa690be7879319e417443a69d40da52f384f72052" }, "downloads": -1, "filename": "AMAT-2.1.11.tar.gz", "has_sig": false, "md5_digest": "a587ebee7b682a4a57c347a079bcac30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18313387, "upload_time": "2021-09-18T23:48:27", "upload_time_iso_8601": "2021-09-18T23:48:27.294125Z", "url": "https://files.pythonhosted.org/packages/40/f3/788f1b9c2de74587724d8801ee1a2c8467fb3f1874f9329390b9eb0b1136/AMAT-2.1.11.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "47f355a68244890065010945baa9b343", "sha256": "c5793ac7b54b696b6dc380106ac53fff121be5aa5bdc1317e8768a23f5fa3eb4" }, "downloads": -1, "filename": "AMAT-2.1.2-py3.7.egg", "has_sig": false, "md5_digest": "47f355a68244890065010945baa9b343", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 83613, "upload_time": "2020-07-30T00:30:50", "upload_time_iso_8601": "2020-07-30T00:30:50.017559Z", "url": "https://files.pythonhosted.org/packages/84/0d/8ccfe0e54b83ef4911ddfd41baa2cd82c534cac9422d18450b9c819fd239/AMAT-2.1.2-py3.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b424ffb100bfddc588da0be95e59e8bb", "sha256": "61fa68cee808338d7f03ad07d7105c94d1ff9a9e963b9bbfe83f3297b5f57f81" }, "downloads": -1, "filename": "AMAT-2.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b424ffb100bfddc588da0be95e59e8bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43200, "upload_time": "2020-07-30T00:30:48", "upload_time_iso_8601": "2020-07-30T00:30:48.662086Z", "url": "https://files.pythonhosted.org/packages/23/ac/74c7a2cc6ae1c4648f11ef6a9728e0b0066f140670d618f428c6847197c0/AMAT-2.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "723813c5a34ca686da8764647d306f20", "sha256": "66a3b4e8bc53cd742dc9c2e676f51016730a589087bb8c42194c7b274535119f" }, "downloads": -1, "filename": "AMAT-2.1.2.tar.gz", "has_sig": false, "md5_digest": "723813c5a34ca686da8764647d306f20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13932437, "upload_time": "2020-07-30T00:31:39", "upload_time_iso_8601": "2020-07-30T00:31:39.011331Z", "url": "https://files.pythonhosted.org/packages/b9/c6/87c6fe6445f521244b879ae4d8b2ed6e757c22abc6e06cb68b378a9c4c11/AMAT-2.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "e94ae5e8e347a1034384a39761972a90", "sha256": "d5fa0b755344689b70ce74450708b711f146b33fbf8e4e3c991e203440559fda" }, "downloads": -1, "filename": "AMAT-2.1.3-py3.7.egg", "has_sig": false, "md5_digest": "e94ae5e8e347a1034384a39761972a90", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 83868, "upload_time": "2020-07-31T02:53:47", "upload_time_iso_8601": "2020-07-31T02:53:47.176098Z", "url": "https://files.pythonhosted.org/packages/f0/ca/b93d8353288d11ec542135174851609337df3585fd1a3f76ad8fdba5a1e7/AMAT-2.1.3-py3.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab9820e468f87e43d49f7a15f0e3acf4", "sha256": "26ee5b7e23721128fa36691cc7904b9876690ee53476d9b74e12513ec11b76c7" }, "downloads": -1, "filename": "AMAT-2.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ab9820e468f87e43d49f7a15f0e3acf4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43233, "upload_time": "2020-07-31T02:53:46", "upload_time_iso_8601": "2020-07-31T02:53:46.064715Z", "url": "https://files.pythonhosted.org/packages/f5/9a/4d99bec0b4cef698c45902614e570585b4d9cf207c043f1272d530498fc6/AMAT-2.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "867b77047b78c6e3a8e0bc00c99e20f0", "sha256": "47f6ae858cfe0ee4702eec46396ca42f1359336b8ce1a225c2f99d63ec6386cf" }, "downloads": -1, "filename": "AMAT-2.1.3.tar.gz", "has_sig": false, "md5_digest": "867b77047b78c6e3a8e0bc00c99e20f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15085548, "upload_time": "2020-07-31T02:54:39", "upload_time_iso_8601": "2020-07-31T02:54:39.713048Z", "url": "https://files.pythonhosted.org/packages/94/65/cf23f24b3b09ba04f729130f7ba89ff7925828326f47ca73810c78b5f72d/AMAT-2.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "3547648e5fbee89dd546040aa4b32217", "sha256": "18bb70100c0393b9dab31cdb3d78c8b90738179ffd4af9707eef0ad9eb9f2c55" }, "downloads": -1, "filename": "AMAT-2.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "3547648e5fbee89dd546040aa4b32217", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44052, "upload_time": "2021-07-31T17:32:19", "upload_time_iso_8601": "2021-07-31T17:32:19.177016Z", "url": "https://files.pythonhosted.org/packages/ae/e4/26a3d2a0a48fab38fb8929fd3564dd48d5431286d92ea1871b1bf03882a5/AMAT-2.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0efd639ee246573f7fe17f477bdf806f", "sha256": "e92a57e3958e6d515dde4d5907535cc7d5055df96c9d6d8210218583efa5bb8c" }, "downloads": -1, "filename": "AMAT-2.1.4.tar.gz", "has_sig": false, "md5_digest": "0efd639ee246573f7fe17f477bdf806f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16764367, "upload_time": "2021-07-31T17:32:27", "upload_time_iso_8601": "2021-07-31T17:32:27.654786Z", "url": "https://files.pythonhosted.org/packages/4e/9e/a8fd1492e1fba24358c98ef5614ac5dbfd95d6fd5909ccbc126fde1b01ad/AMAT-2.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "1ee3823933ef248d0024edd0fbbec468", "sha256": "76ff4461c42cfe6ca897869a59e1ba0e709e355ef9953f04c8a2404966f898e1" }, "downloads": -1, "filename": "AMAT-2.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "1ee3823933ef248d0024edd0fbbec468", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44108, "upload_time": "2021-07-31T19:28:11", "upload_time_iso_8601": "2021-07-31T19:28:11.225799Z", "url": "https://files.pythonhosted.org/packages/1a/db/97b050a61304883aeadef436a647f058cc0e24ae5b4cf9c2e3b999844abd/AMAT-2.1.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64608f4ccdf4f9b5d654032011340cd8", "sha256": "f65d824ebd9664503e16fbbe34d6a5cb4535772994b71fe73009203782799733" }, "downloads": -1, "filename": "AMAT-2.1.5.tar.gz", "has_sig": false, "md5_digest": "64608f4ccdf4f9b5d654032011340cd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16764661, "upload_time": "2021-07-31T19:28:15", "upload_time_iso_8601": "2021-07-31T19:28:15.893428Z", "url": "https://files.pythonhosted.org/packages/6a/21/ab06e53b399ae31eaa18e7c25ba1ced4cf881e339c8a23b936421ef38b79/AMAT-2.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.7": [ { "comment_text": "", "digests": { "md5": "f895b63cf89226abace1740867bcc8d5", "sha256": "ddfb9c03c4466a8a7ba44c0cc0e5243c8302a2d669defd8bc2ab958ed9a6c19e" }, "downloads": -1, "filename": "AMAT-2.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "f895b63cf89226abace1740867bcc8d5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44109, "upload_time": "2021-07-31T19:41:28", "upload_time_iso_8601": "2021-07-31T19:41:28.953165Z", "url": "https://files.pythonhosted.org/packages/a0/36/e3de5e707d821c9083ad08f1d8bbbd64e12fdb35f25810b33a4c4e40555a/AMAT-2.1.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7512a9cfa3d8bcab6a24b2623e74e686", "sha256": "c29811639a5034436c9c9f3e939a2a6157414b693ff669ad63ed61272efa7b0b" }, "downloads": -1, "filename": "AMAT-2.1.7.tar.gz", "has_sig": false, "md5_digest": "7512a9cfa3d8bcab6a24b2623e74e686", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16764642, "upload_time": "2021-07-31T19:41:33", "upload_time_iso_8601": "2021-07-31T19:41:33.095993Z", "url": "https://files.pythonhosted.org/packages/9f/06/5fb6d73ebc4d56d27aad5d16bdf664fb959505111d4fe540277a928060a8/AMAT-2.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.8": [ { "comment_text": "", "digests": { "md5": "6e30fde8860ed0ce25435d1736e93d01", "sha256": "211cacf3614ca068326ea02cbe00bbb8fc543cef169c442bb6ccf5832d9e33cf" }, "downloads": -1, "filename": "AMAT-2.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "6e30fde8860ed0ce25435d1736e93d01", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44116, "upload_time": "2021-07-31T19:58:46", "upload_time_iso_8601": "2021-07-31T19:58:46.815504Z", "url": "https://files.pythonhosted.org/packages/5d/9f/e84effffb1c6473b3cddb765e2e0abf6d909cc1ba3b46197063371cb33a7/AMAT-2.1.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b62029598ff71e5a6a19a3dfc9e8af5d", "sha256": "2ea08a3ca55a897e63bac0710f9ce2feabfd549a61aedea42257de5d1541176c" }, "downloads": -1, "filename": "AMAT-2.1.8.tar.gz", "has_sig": false, "md5_digest": "b62029598ff71e5a6a19a3dfc9e8af5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16764700, "upload_time": "2021-07-31T19:58:53", "upload_time_iso_8601": "2021-07-31T19:58:53.972070Z", "url": "https://files.pythonhosted.org/packages/a5/ce/23cc419a5576425c8da182339494b6797b4eb4768f998085f5d7edec47c1/AMAT-2.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.9": [ { "comment_text": "", "digests": { "md5": "f7d92d33d9938762b3b6993a9d955372", "sha256": "aeff4660e72dd908e99d30e22717c3cb50934001fd215f2fa0737236dfb25439" }, "downloads": -1, "filename": "AMAT-2.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "f7d92d33d9938762b3b6993a9d955372", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44150, "upload_time": "2021-09-11T15:33:33", "upload_time_iso_8601": "2021-09-11T15:33:33.470596Z", "url": "https://files.pythonhosted.org/packages/e4/89/d833f87d564b4588b4085f07801e3f92c903078271264ba1ed44960a8f7e/AMAT-2.1.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71fb61e974f2866f99b158896ad74cd3", "sha256": "74677fd05b0cfe0012f828f6ba4e45db0f40ae55ea951a17eea769ecd0a4eceb" }, "downloads": -1, "filename": "AMAT-2.1.9.tar.gz", "has_sig": false, "md5_digest": "71fb61e974f2866f99b158896ad74cd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18302246, "upload_time": "2021-09-11T15:34:58", "upload_time_iso_8601": "2021-09-11T15:34:58.498279Z", "url": "https://files.pythonhosted.org/packages/2c/07/aa1318470d2409fda275f033a2c9a9b64b5f04c9b312e8ef031be5d91c4d/AMAT-2.1.9.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "317fa644b0842dad9e97711da472b671", "sha256": "ab2187f57282b9dcae49c4cce62d22a8cb055e3e1f12aa19261d153944ba1935" }, "downloads": -1, "filename": "AMAT-2.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "317fa644b0842dad9e97711da472b671", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42824, "upload_time": "2021-11-04T03:26:04", "upload_time_iso_8601": "2021-11-04T03:26:04.312000Z", "url": "https://files.pythonhosted.org/packages/e7/94/cc0101ed525164ce739c1ec615622fbaa32983004dbcd296003c1b29f4cf/AMAT-2.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e900d78f2a2c13f28835601e2257c72", "sha256": "15e20da4151da2c05cd1f09c674593bb43ab26efe16d05e81d8067a8bf3e9971" }, "downloads": -1, "filename": "AMAT-2.2.1.tar.gz", "has_sig": false, "md5_digest": "9e900d78f2a2c13f28835601e2257c72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18314426, "upload_time": "2021-11-04T03:26:33", "upload_time_iso_8601": "2021-11-04T03:26:33.866436Z", "url": "https://files.pythonhosted.org/packages/22/d9/4b72a64fc75d25ebd90b9b552043c442abd59d8b9482e3e74bf2a7876f27/AMAT-2.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "5917a67bacf432d31e91cce523e514d6", "sha256": "ed53e332fd20b9e3c24da36b1162c6ee23b629a8441f6eb691d2110ca317e966" }, "downloads": -1, "filename": "AMAT-2.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "5917a67bacf432d31e91cce523e514d6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42826, "upload_time": "2021-11-05T23:55:36", "upload_time_iso_8601": "2021-11-05T23:55:36.376594Z", "url": "https://files.pythonhosted.org/packages/69/6e/8a9307ae5e89be96a54e59bc818c13f85d49bf3e431d60915a3ea545e8a4/AMAT-2.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acf41baed0c2c8ce3a1c21e2eec60691", "sha256": "7293e04aca428022cd9caae9a573e0e1b7d9dda1bab5ac6f5c531c30d49e1d1f" }, "downloads": -1, "filename": "AMAT-2.2.3.tar.gz", "has_sig": false, "md5_digest": "acf41baed0c2c8ce3a1c21e2eec60691", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18314447, "upload_time": "2021-11-05T23:55:47", "upload_time_iso_8601": "2021-11-05T23:55:47.939505Z", "url": "https://files.pythonhosted.org/packages/6f/b8/be85e970accd3e947d62ded72b2a3ab698ecc1c4d011f74b2b58e9961c38/AMAT-2.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.5": [ { "comment_text": "", "digests": { "md5": "f2c494f87483f2e14ae091d01b517a6a", "sha256": "240bdb8f73dafdc3d46af4ffd71587628ad700a862343ffc724005bc4bafb17e" }, "downloads": -1, "filename": "AMAT-2.2.5-py3.8.egg", "has_sig": false, "md5_digest": "f2c494f87483f2e14ae091d01b517a6a", "packagetype": "bdist_egg", "python_version": "3.8", "requires_python": null, "size": 87045, "upload_time": "2022-02-12T19:18:50", "upload_time_iso_8601": "2022-02-12T19:18:50.063841Z", "url": "https://files.pythonhosted.org/packages/66/b5/e10dcc88c97f7cb248cd172c90a5cb2c7ea406d7cf61f44bd953a5143344/AMAT-2.2.5-py3.8.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc8117fee29f6c8eea5544505ed3a374", "sha256": "032bd57d33243c8a1478e7c09744dac8457d62e0441862bae39f7ab6fed6ab05" }, "downloads": -1, "filename": "AMAT-2.2.5-py3-none-any.whl", "has_sig": false, "md5_digest": "fc8117fee29f6c8eea5544505ed3a374", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43384, "upload_time": "2022-02-12T19:18:48", "upload_time_iso_8601": "2022-02-12T19:18:48.339575Z", "url": "https://files.pythonhosted.org/packages/81/1c/a3590c2d69db9d3bafb0d7540c466cf2c7fdbad8e191f26e2222d28059eb/AMAT-2.2.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9aef8a36760d3ec5cd344143c06df52", "sha256": "0424b72105a6996b81fe4795b115c986afa0ec8d1cbee7ed3cf5ba91d6e9c945" }, "downloads": -1, "filename": "AMAT-2.2.5.tar.gz", "has_sig": false, "md5_digest": "d9aef8a36760d3ec5cd344143c06df52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22809869, "upload_time": "2022-02-12T19:19:27", "upload_time_iso_8601": "2022-02-12T19:19:27.559517Z", "url": "https://files.pythonhosted.org/packages/c3/e2/06d64dcd217ec9bb4ad58213ee96e68df504c51869d00068291d1b8b794f/AMAT-2.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.6": [ { "comment_text": "", "digests": { "md5": "b61274fb7c22bee9770d5c3ba71089de", "sha256": "0f665fc5e7d4c537e4aea8e95391217563cd96b1a056553b2c364cd84228805d" }, "downloads": -1, "filename": "AMAT-2.2.6-py3.8.egg", "has_sig": false, "md5_digest": "b61274fb7c22bee9770d5c3ba71089de", "packagetype": "bdist_egg", "python_version": "3.8", "requires_python": null, "size": 105268, "upload_time": "2022-05-02T08:49:58", "upload_time_iso_8601": "2022-05-02T08:49:58.738738Z", "url": "https://files.pythonhosted.org/packages/af/68/00ec931a3f0c2fce0676cd31e3875da7d512dd4dfb3b582f24374db2deb2/AMAT-2.2.6-py3.8.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b8f8cbbdcb4166ee5060fbbffdd834be", "sha256": "70fe6be795e7b2d27a47bac36d500f7e75b7e9d598fa1b79c72cc3b5f91c16e6" }, "downloads": -1, "filename": "AMAT-2.2.6-py3-none-any.whl", "has_sig": false, "md5_digest": "b8f8cbbdcb4166ee5060fbbffdd834be", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51311, "upload_time": "2022-05-02T08:49:56", "upload_time_iso_8601": "2022-05-02T08:49:56.759983Z", "url": "https://files.pythonhosted.org/packages/c0/bc/937a271bb542546b536e83afc8e68cc059a781ac5a54707b8f8ecc0e2bf2/AMAT-2.2.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a3987f61d2a2ad01c27f251c70a44f9", "sha256": "fa489032d821a4db81bfa09decc63a55678b15f48382be7e84c792ead9890cbf" }, "downloads": -1, "filename": "AMAT-2.2.6.tar.gz", "has_sig": false, "md5_digest": "3a3987f61d2a2ad01c27f251c70a44f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24450392, "upload_time": "2022-05-02T08:50:35", "upload_time_iso_8601": "2022-05-02T08:50:35.255419Z", "url": "https://files.pythonhosted.org/packages/e6/00/3e6b9c8fd24049609759032d38270d5ace2e1d921faa910a78b70ef5ba37/AMAT-2.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.7": [ { "comment_text": "", "digests": { "md5": "b3550405f08026fbeb446c5e8a0073b8", "sha256": "b4e5da97635f0921d4889f3cc32277d9545df11f537bd0e7dd7979b163d4138b" }, "downloads": -1, "filename": "AMAT-2.2.7-py3-none-any.whl", "has_sig": false, "md5_digest": "b3550405f08026fbeb446c5e8a0073b8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51011, "upload_time": "2022-05-10T03:29:25", "upload_time_iso_8601": "2022-05-10T03:29:25.740729Z", "url": "https://files.pythonhosted.org/packages/49/e1/a076c54074329e489688f281741640d91e0a68eb5b62da0aa46a753c6d94/AMAT-2.2.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4c03d4efdf0e24101bfea01a35e601e", "sha256": "1fd7f1ab5dc42c943c1bd8228ef0fc9139e5fbd174a00b92545425ad1fb53a5a" }, "downloads": -1, "filename": "AMAT-2.2.7.tar.gz", "has_sig": false, "md5_digest": "c4c03d4efdf0e24101bfea01a35e601e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25712415, "upload_time": "2022-05-10T03:30:12", "upload_time_iso_8601": "2022-05-10T03:30:12.200750Z", "url": "https://files.pythonhosted.org/packages/a6/da/d4963419cb980e646ee698f3199d20aa0b8ab73596fb1500a96a54c79b4a/AMAT-2.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.8": [ { "comment_text": "", "digests": { "md5": "6bad4569d37f67fcaf94dda0567a8a42", "sha256": "5430c5c8e67cdb9de03729882f3bdb48fafcbcbd6b92452815d6cfaf469bcfb6" }, "downloads": -1, "filename": "AMAT-2.2.8-py3-none-any.whl", "has_sig": false, "md5_digest": "6bad4569d37f67fcaf94dda0567a8a42", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 53148, "upload_time": "2022-05-14T04:30:59", "upload_time_iso_8601": "2022-05-14T04:30:59.727174Z", "url": "https://files.pythonhosted.org/packages/e7/14/7f49c3939b03ee9ce1ab23522139a6ee8835e540f0a1a00065c44d634db1/AMAT-2.2.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62154e8b87cee80a292e17092cb69648", "sha256": "6ac7dad48beffff87686f19e990d32cc49ad499205bac7844c00b2c010aa0633" }, "downloads": -1, "filename": "AMAT-2.2.8.tar.gz", "has_sig": false, "md5_digest": "62154e8b87cee80a292e17092cb69648", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36659787, "upload_time": "2022-05-14T04:32:16", "upload_time_iso_8601": "2022-05-14T04:32:16.622392Z", "url": "https://files.pythonhosted.org/packages/36/ad/83c5355561c84f1a498bf6136fecc08e039a1f1000d7f0e2ba052729b6dc/AMAT-2.2.8.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6bad4569d37f67fcaf94dda0567a8a42", "sha256": "5430c5c8e67cdb9de03729882f3bdb48fafcbcbd6b92452815d6cfaf469bcfb6" }, "downloads": -1, "filename": "AMAT-2.2.8-py3-none-any.whl", "has_sig": false, "md5_digest": "6bad4569d37f67fcaf94dda0567a8a42", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 53148, "upload_time": "2022-05-14T04:30:59", "upload_time_iso_8601": "2022-05-14T04:30:59.727174Z", "url": "https://files.pythonhosted.org/packages/e7/14/7f49c3939b03ee9ce1ab23522139a6ee8835e540f0a1a00065c44d634db1/AMAT-2.2.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62154e8b87cee80a292e17092cb69648", "sha256": "6ac7dad48beffff87686f19e990d32cc49ad499205bac7844c00b2c010aa0633" }, "downloads": -1, "filename": "AMAT-2.2.8.tar.gz", "has_sig": false, "md5_digest": "62154e8b87cee80a292e17092cb69648", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36659787, "upload_time": "2022-05-14T04:32:16", "upload_time_iso_8601": "2022-05-14T04:32:16.622392Z", "url": "https://files.pythonhosted.org/packages/36/ad/83c5355561c84f1a498bf6136fecc08e039a1f1000d7f0e2ba052729b6dc/AMAT-2.2.8.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }