{ "info": { "author": "Joshua J. Gabriel, Michael Ashton", "author_email": "joshgabriel92@ufl.edu, ashtonmv@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering" ], "description": ".. image:: https://travis-ci.org/henniggroup/MPInterfaces.svg?branch=master\n.. image:: https://codecov.io/gh/henniggroup/MPInterfaces/coverage.svg?branch=master\n\nMPinterfaces is a python package that enables high throughput Density\nFunctional Theory(DFT) analysis of arbitrary material interfaces(two dimensional\nmaterials, hetero-structure, ligand capped\nnanoparticles and surfaces in the presence of solvents) using\nVASP_, VASPsol_, LAMMPS_, materialsproject_ database\nas well as their open source tools_ and a little bit of ase_.\n\n.. _materialsproject: https://github.com/materialsproject\n\n.. _VASPsol: https://github.com/henniggroup/VASPsol\n\n.. _VASP: http://www.vasp.at/\n\n.. _tools: https://github.com/materialsproject\n\n.. _LAMMPS: http://lammps.sandia.gov/\n\n.. _ase: https://wiki.fysik.dtu.dk/ase/\n\n.. image:: https://github.com/henniggroup/MPInterfaces/blob/master/docs/mpinterfaces-logo.png\n :width: 75 %\n :align: center\n\nInstallation\n==============\n\nPrepping - Setting up Virtual Environments with Miniconda\n---------------------------------------------------------\n\nWe recommend setting up virtual environment\nusing Miniconda which can be installed according to their instructions from https://conda.io/miniconda.html\n\nFollow the following steps to set up virtual environment using Miniconda\n\n$ conda create -n name_of_your_environment python=3.6\n\nOn Mac OS and Linux\n\n$ source activate name_of_your_environment\n\nInstall some useful packages with conda and link them to your created miniconda\nvirtual environment \n\n$ conda install numpy scipy matplotlib ipython pandas\n\nOn Windows:\n\n$ activate name_of_your_environment\n\nNote: You will need to have C++ libraries properly\ninstalled for the package to install correctly on Windows.\n\nFor teaching and demo purposes, we recommend using Microsoft Azure notebooks,\nan example of which is at https://notebooks.azure.com/JoshGabriel92/libraries/PourbaixCourse\nwhich contains two notebooks that illustrate installing pymatgen and pyhull for on the fly\ndata science tutorials. We have one notebook FeOH_Example.ipynb for Pourbaix diagrams and an MPInterfacesDemo that illustrate other features of the MPInterfaces code with more to come.\n\nNote for SuperComputer Clusters with Linux OS:\n\nHiperGator2 and other linux based supercomputing clusters\nhave shared modules one of which are the C++ modules under gcc.\nThis needs to be loaded before any of the aforementioned\ngcc/5.2.0 has all the shared libraries\nrequired for a successful installation.\n\nDo the following on HiperGator2 before you create\nthe Miniconda environment:\n\n$ module purge\n$ module load gcc/5.2.0\n\nGet the stable release version from PyPI\n----------------------------------------\n\nOnce you have a nicely prepped virtual environment with miniconda\nand you do not seek to do extensive code development/contributions,\nwe recommend installing from PyPI with:\n\n$ pip install MPInterfaces_Latest\n\nConfiguration\n--------------\n\nOnce installed MPInterfaces and its modules are available for usage in the\nvirtual environment that you created. To use the MPInterfaces\npackage for managing DFT calculations with the queuing system on your supercomputing cluster\n(SLURM ad PBS suppported) we recommend using the command line functionality \"mpint_flow\" which is a command already installed into your virtual environment\npath upon installation.\n\nTo understand its usage do:\n\n$ mpint_flow -h\n\nThe mpint_flow command has a total of 6 subcommands, the first of which is load_settings and\nwill be used to load your configuration file. By configuring, we mean setting environment\nvariables for the pymatgen package and the submit file format for the batch queuing system.\n\n$ mpint_flow load_settings -i '{\"MAPI_KEY\":\"your_Materials_Project_Key\",\"potentials\":\"path/to/your/pseudopotentials\"}'\n\nThis loads your MAPI_KEY (materials project API key) and the POTCAR environment variable PMG_VASP_PSP_DIR\n\nNOTE: your pseudopotentials should be arranged according to the directory structure:\n\nPOTCAR -\n - POT_GGA_PAW_PBE\n - Element\n - POTCAR\n - PSCTR\n - POT_LDA_PAW\n - Element\n - POTCAR\n - PSCTR\n ..etc.\n\nFor the batch system integration:\n\n$ mpint_flow load_settings -i '{\"QUEUE_SYSTEM\":\"your_batch_system\"}'\n\nand for the submit file using ipython:\n\n$ ipython\n\n.. code_block:: python\n\n import yaml\n from mpinterfaces import QUEUE_TEMPLATE\n qtemp = yaml.load(open(QUEUE_TEMPLATE+'qtemplate.yaml'))\n print (qtemp)\n # view the default qtemp and edit the keys and values according to\n # your batch system and finally doing qtemp.update({your_submit_file_as_a_dict})\n with open(QUEUE_TEMPLATE+'qtemplate.yaml', 'w') as new_qtemp:\n yaml.dump(qtemp, new_qtemp, default_flow_style=False)\n\nOther configuration variables to configure include the path to your VASP binaries and the\nvdW kernel file.\n\nYou can find a list of all such configuration variables by opening the config file that\nwas created for you by MPInterfaces in your home directory: ~/.mpint_config.yaml\n\n$ mpint_flow load_settings -i '{\"normal_binary\":\"your_non_2D_vasp_binary\"}'\n\nRunning your first project\n---------------------------\n\nAn example project_file.yaml is available in your PACKAGE_PATH and\nwe recommend that you read and understand this file and the comments\nentered in it. You can create your own workflows based on this file by copying\nit to your desired working directory, preferrably scratch space on your supercomputer.\n\nWhen in your desired project directory, you can start your first project by doing:\n\n$ mpint_flow start_project -i project_file.yaml\n\nTo validate the first step with MaterialsProject's Custodian package with its VaspErrorHandlers, use:\n\n$ mpint_flow check_project -i project_file.yaml\n\nIf errors are encountered they are corrected as per Custodian's handlers and will be documented in\nthe __CustodianReport.yaml files. If you do not agree with the correction\nyou can always go to the individual directories listed in the CustodianReport.yaml and change according\nto your decision.\n\nTo rerun the jobs which failed:\n\n$ mpint_flow rerun_project -i __CustodianReport.yaml\n\nTo go to the next step of your computational workflow:\n\n$ mpint_flow continue_project -i project_file.yaml\n\nTo analyze each step of your computational workflow by a specified script\n\n$ mpint_flow analyze_project -i project_file.yaml\n\n\nFor Developers\n--------------\n\nGet the latest bleeding edge version:\n\nIf you would like to develop and contribute we recommend getting the bleeding edge\ncopy from the github repository.\n\nIf you already have a local copy, steps 1 and 2 of the following instructions\ncan be skipped. Just do a \"git pull\" from the MPInterfaces folder and go to\nstep 3(if the local copy was installed in the develop mode this step can be skipped too).\n\nNote: on using virtual environments on your own machine, we recommend to use Miniconda.\n\n1. Clone the latest version from github\n\n - git clone https://github.com/henniggroup/MPInterfaces.git\n\n2. cd MPInterfaces\n\n3. python setup.py install(or develop)\n\n4. Copy the mpint_config.yaml file from config_files/mpint_config.yaml\n to mpinterfaces/mpint_config.yaml\n and update the file so that you have the following\n environment variables :\n\n - MAPI_KEY=the_key_obtained_from_materialsproject\n\n - PMG_VASP_PSP_DIR=path_to_vasp_potcar_files\n\n\nHow to Install Latest Pymatgen\n------------------------------\n\nSee http://pymatgen.org/#getting-pymatgen\n\n\nDocumentation\n==============\n\nA very minimal documentation is avaiable at\n\nhttp://henniggroup.github.io/MPInterfaces/\n\nand work is underway to improve it.\n\n\nUsage\n==========\n\nWe use pymatgen tools for all structure manipulation tasks, so it would\nbe a good idea to start from here:\n\nhttp://pymatgen.org/#using-pymatgen\n\nThe examples folder contain some sample scripts that demonstrate the\nusage of mpinterfaces as well as materialsproject packages. For basic\nusage please see **docs/usage.rst**.\n\n\nCite\n======\n\nIf you use MPInterfaces for your work, please cite the paper: mpinterfaces-paper_\n\n.. _mpinterfaces-paper: http://www.sciencedirect.com/science/article/pii/S0927025616302440\n\n\nLicense\n=======\n\nMPInterfaces is released under the MIT License.::\n\n Copyright (c) 2014-2017 Henniggroup Cornell/University of Florida & NIST\n\n Permission is hereby granted, free of charge, to any person obtaining a copy of\n this software and associated documentation files (the \"Software\"), to deal in\n the Software without restriction, including without limitation the rights to\n use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\n the Software, and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nContributing\n=============\n\nWe try to follow the coding style used by pymatgen(PEP8):\n\nhttp://pymatgen.org/contributing.html#coding-guidelines\n\n\nAuthors\n=========\n\nKiran Mathew\n\nJoshua Gabriel\n\nMichael Ashton\n\nArunima Singh\n\nJoshua T. Paul\n\nSeve G. Monahan\n\nRichard G. Hennig\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/henniggroup/MPInterfaces", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "MPInterfaces_Latest", "package_url": "https://pypi.org/project/MPInterfaces_Latest/", "platform": "", "project_url": "https://pypi.org/project/MPInterfaces_Latest/", "project_urls": { "Homepage": "https://github.com/henniggroup/MPInterfaces" }, "release_url": "https://pypi.org/project/MPInterfaces_Latest/2.0.3/", "requires_dist": null, "requires_python": "", "summary": "High throughput analysis of interfaces using VASP and Materials Project tools", "version": "2.0.3" }, "last_serial": 3258112, "releases": { "1.7.0": [ { "comment_text": "", "digests": { "md5": "978041e903b20c1d1a4f7c917eb92f03", "sha256": "22dc1528c9eb28f37d2d88032c031933bee08e030b8eb2191344fe21ac5fe3f8" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.7.0.tar.gz", "has_sig": false, "md5_digest": "978041e903b20c1d1a4f7c917eb92f03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 251216, "upload_time": "2017-09-15T20:32:18", "url": "https://files.pythonhosted.org/packages/d7/f7/d767b9e061c00d418a05b275bf2ba544f06ed855f1e5f3a18fb5e7026d40/MPInterfaces_Latest-1.7.0.tar.gz" } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "ae472d5270dfbdd94aaba3b25db00168", "sha256": "eab7c8dc2e7b7af0e4ce4eb11ed69c256e2ae6ad28152f8cec76d6e142c069eb" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.7.5.tar.gz", "has_sig": false, "md5_digest": "ae472d5270dfbdd94aaba3b25db00168", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 286140, "upload_time": "2017-09-26T03:29:10", "url": "https://files.pythonhosted.org/packages/72/84/dcb42eeb1c5a860956b704a68183cae0bd760f5f0beaf6e5f70637485625/MPInterfaces_Latest-1.7.5.tar.gz" } ], "1.7.6": [ { "comment_text": "", "digests": { "md5": "6c746cdf1ca7711a8c58fe30fea205ab", "sha256": "f3f269f1563a9f4a70a405b26b72f2610e38b819d976927a88cb352251633245" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.7.6.tar.gz", "has_sig": false, "md5_digest": "6c746cdf1ca7711a8c58fe30fea205ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 257990, "upload_time": "2017-09-26T03:30:37", "url": "https://files.pythonhosted.org/packages/30/97/dd433fee0826f7b87063bec7720e1250a28eb547a5619c5fc929d79f4a44/MPInterfaces_Latest-1.7.6.tar.gz" } ], "1.7.7": [ { "comment_text": "", "digests": { "md5": "cbf64f662ee7ebe6c1725cced6aef64f", "sha256": "dce083d97d76fa4bd945b2b3591cf3b2c9a7258e2be7d05d38e04492f1e8d413" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.7.7.tar.gz", "has_sig": false, "md5_digest": "cbf64f662ee7ebe6c1725cced6aef64f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258043, "upload_time": "2017-09-26T03:42:24", "url": "https://files.pythonhosted.org/packages/ac/54/2ab5e234b140f376a802df75b9be8bd8f7b8c38d33538e45b7e917430d17/MPInterfaces_Latest-1.7.7.tar.gz" } ], "1.7.8": [ { "comment_text": "", "digests": { "md5": "cfc969b429bc0faa3880685f7368b084", "sha256": "e0d9a3d184783b73d058f35b84b4e158b2f5bee9dcee2c06c9f69eaf2d904914" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.7.8.tar.gz", "has_sig": false, "md5_digest": "cfc969b429bc0faa3880685f7368b084", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258054, "upload_time": "2017-09-26T03:44:46", "url": "https://files.pythonhosted.org/packages/e4/41/0e99ddbcd42ae6b2f76785f88bc94e66a6fce1470fd54416ff6ac043bb19/MPInterfaces_Latest-1.7.8.tar.gz" } ], "1.7.9": [ { "comment_text": "", "digests": { "md5": "0c18f8ff89715037a43d481af759be1f", "sha256": "f7abb374e6467f3ba3cb33d3481b57a85c96b91d6686527b42d96801f361faa8" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.7.9.tar.gz", "has_sig": false, "md5_digest": "0c18f8ff89715037a43d481af759be1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258192, "upload_time": "2017-09-26T04:02:57", "url": "https://files.pythonhosted.org/packages/d5/26/4f23c2ecb9b17389788d1aeeb639f7f122b29ee0c6f30687e7d2da54fbd7/MPInterfaces_Latest-1.7.9.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "2f36193e7e5c0a5b47c682afd9e0dcc7", "sha256": "137cebac5697a2e92007ad12135ad7b5ffeb9fb36984a9388c5c4e54b22253f5" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.8.0.tar.gz", "has_sig": false, "md5_digest": "2f36193e7e5c0a5b47c682afd9e0dcc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258506, "upload_time": "2017-09-26T15:25:42", "url": "https://files.pythonhosted.org/packages/fd/7d/2fceb9666b00a1eb84b926bd57d32ee1bef7fee7bdbadf0f386767e6a73d/MPInterfaces_Latest-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "8628c0a8e5586af01ef3ef6f7f7305b6", "sha256": "ebf9f077a45b7a1bbea13634428c7267f807114078e044486620ef2859108441" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.8.1.tar.gz", "has_sig": false, "md5_digest": "8628c0a8e5586af01ef3ef6f7f7305b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258466, "upload_time": "2017-09-26T15:35:21", "url": "https://files.pythonhosted.org/packages/b3/34/f490d5d54a6e258b2bd82b83ed9767d4b89e9b8302651182c0fe14a36158/MPInterfaces_Latest-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "1a47909cb9b7f11812091334a4181a6b", "sha256": "7635ea88400d7ba4c49e12ffafdbfd7d61148ee4937ba1bc261fbc2ae3e3a3c3" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.8.2.tar.gz", "has_sig": false, "md5_digest": "1a47909cb9b7f11812091334a4181a6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258472, "upload_time": "2017-09-26T15:38:03", "url": "https://files.pythonhosted.org/packages/c1/b4/fe39bd044dd3509bc10fda3e188634d47acd7bfecf28a514b60c76299a36/MPInterfaces_Latest-1.8.2.tar.gz" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "076a435e9e2729d403b82a9e5725821c", "sha256": "4df7ff10120d8e284365f6f67e3a5da89d4ec135a9881d1bb518f2eb47bd80b0" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.8.3.tar.gz", "has_sig": false, "md5_digest": "076a435e9e2729d403b82a9e5725821c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258478, "upload_time": "2017-09-26T15:41:50", "url": "https://files.pythonhosted.org/packages/d9/ce/861bf53ef756940ecf419b401c5032bbc1ebf833f4f000d539ec6078c790/MPInterfaces_Latest-1.8.3.tar.gz" } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "8f3cef03f9220915b43d9e07f383e56a", "sha256": "59e630a5fa8c7ec51fcc8d4f51f502179f673c65297ae2ff9b75fd96eb760a43" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.8.4.tar.gz", "has_sig": false, "md5_digest": "8f3cef03f9220915b43d9e07f383e56a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258467, "upload_time": "2017-09-26T15:45:32", "url": "https://files.pythonhosted.org/packages/03/8d/883d500df3c7b08c9f8567043da51abee32e5fbc485b7c7734272e26edfc/MPInterfaces_Latest-1.8.4.tar.gz" } ], "1.8.5": [ { "comment_text": "", "digests": { "md5": "2962b28e88c1cecbc52d1dd02ebef50d", "sha256": "b6cb8cc0486c5d7c10e49859f6460c8b3ebcd12b57fa74e3363156fbc0d98675" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.8.5.tar.gz", "has_sig": false, "md5_digest": "2962b28e88c1cecbc52d1dd02ebef50d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258472, "upload_time": "2017-09-26T15:31:26", "url": "https://files.pythonhosted.org/packages/03/3f/a2ab11c240990489712360148794caddba51e666710a028d365463f89159/MPInterfaces_Latest-1.8.5.tar.gz" } ], "1.8.6": [ { "comment_text": "", "digests": { "md5": "dcab4c82dc4f4395f73d1f03202963e7", "sha256": "7b759bc4217fd956495626d2be69a826031ad6097db3d5e4a1358a48e182d618" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.8.6.tar.gz", "has_sig": false, "md5_digest": "dcab4c82dc4f4395f73d1f03202963e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258667, "upload_time": "2017-09-26T15:57:32", "url": "https://files.pythonhosted.org/packages/28/00/6075f969fa7c9ecbeb3e1b71c56d5d9aea473d186f44a19e26f0c1d396c3/MPInterfaces_Latest-1.8.6.tar.gz" } ], "1.8.7": [ { "comment_text": "", "digests": { "md5": "a865158450092023a5abe5ded9af2998", "sha256": "c7e20c8a512e80f7d3377db04652b39d77805d4ccfc2001c2aa80ff41ce27947" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.8.7.tar.gz", "has_sig": false, "md5_digest": "a865158450092023a5abe5ded9af2998", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258623, "upload_time": "2017-09-26T16:00:56", "url": "https://files.pythonhosted.org/packages/1a/a5/e7856cff2dc3c1498906417f34454d147d965cc18aafc9ee195b33adcb0d/MPInterfaces_Latest-1.8.7.tar.gz" } ], "1.8.8": [ { "comment_text": "", "digests": { "md5": "15ecc5da3dccd122fc25c33d116cb12e", "sha256": "5e5bdc1855a946b7aa2b7f01f8e47e4ef876b68f56b37f0ba49276b91492bc80" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.8.8.tar.gz", "has_sig": false, "md5_digest": "15ecc5da3dccd122fc25c33d116cb12e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258589, "upload_time": "2017-09-26T16:22:33", "url": "https://files.pythonhosted.org/packages/8d/e9/06bc5a3ca1a3a6a3c1761d5468911bf05e1ffb5cf51a336bd297b3cd6ff1/MPInterfaces_Latest-1.8.8.tar.gz" } ], "1.8.9": [ { "comment_text": "", "digests": { "md5": "b9fd9d835d344838b286db3b71c15080", "sha256": "eea67303495946c0eb6752d992ef3e0b7f26fa64258cccdddaa81366e5543e82" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.8.9.tar.gz", "has_sig": false, "md5_digest": "b9fd9d835d344838b286db3b71c15080", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 261375, "upload_time": "2017-09-26T18:29:20", "url": "https://files.pythonhosted.org/packages/b3/8f/12656cd4d1a17f7f3daff35452ea3e62d1243ea9e2095c2338b6bc4c7f84/MPInterfaces_Latest-1.8.9.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "4c5fdd397ac34f442005fb8089f760d2", "sha256": "e9e54104a698e05fd218a77729d9e8bcadbc75f7916b06aa5e425c30a30ede3c" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.9.0.tar.gz", "has_sig": false, "md5_digest": "4c5fdd397ac34f442005fb8089f760d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 261384, "upload_time": "2017-09-26T18:44:15", "url": "https://files.pythonhosted.org/packages/25/49/662d49bcc012781055d0eb308d969f66f760c8d60283d6d288e38e55f6c6/MPInterfaces_Latest-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "9dd6a27009d790f2110fb155e2676245", "sha256": "0024d6b371a9ab939627a3776aff79be4d15c736ed9a24998c16500d63c47fe3" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.9.1.tar.gz", "has_sig": false, "md5_digest": "9dd6a27009d790f2110fb155e2676245", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 279117, "upload_time": "2017-09-26T21:58:32", "url": "https://files.pythonhosted.org/packages/39/26/3d543f953c44673ba53aca02de0328f0792048bac0a0be38a89eaa967ecb/MPInterfaces_Latest-1.9.1.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "45c9c333caa7893a962e5b55811590a0", "sha256": "7112c5521bb50ba4faed02db28ded9f0005871a729c0c71ca1cd8424195cdb82" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.9.2.tar.gz", "has_sig": false, "md5_digest": "45c9c333caa7893a962e5b55811590a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 283985, "upload_time": "2017-09-27T14:53:48", "url": "https://files.pythonhosted.org/packages/3b/2e/651403b301b889fa504697ea150392c34690121a06865d9f27621e134a40/MPInterfaces_Latest-1.9.2.tar.gz" } ], "1.9.3": [ { "comment_text": "", "digests": { "md5": "39f194821caed1a474d932713caad2af", "sha256": "f340d654a46cf7d715d880032511d9968ee7357cf1abbc032b5b9015d62a3efb" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.9.3.tar.gz", "has_sig": false, "md5_digest": "39f194821caed1a474d932713caad2af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 283517, "upload_time": "2017-09-27T15:45:40", "url": "https://files.pythonhosted.org/packages/8e/3f/10981aeca05a8d20b363934061f771187a320a672e531f001a90eebc6b2b/MPInterfaces_Latest-1.9.3.tar.gz" } ], "1.9.4": [ { "comment_text": "", "digests": { "md5": "dffa5f1f9927ca41889ef07156cf5475", "sha256": "a90c56fb5cab5a9c7e8b70edbeaa0e069d8281165d68690895588a2a6ec29397" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.9.4.tar.gz", "has_sig": false, "md5_digest": "dffa5f1f9927ca41889ef07156cf5475", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 283522, "upload_time": "2017-09-27T15:54:19", "url": "https://files.pythonhosted.org/packages/4c/4c/ab0c803ae9179ef301d7c312b4d607a2d5bca5887afd0724e0676b9749de/MPInterfaces_Latest-1.9.4.tar.gz" } ], "1.9.5": [ { "comment_text": "", "digests": { "md5": "f2c29a14f841076e310424b46705c4fd", "sha256": "31e101be0bb6c11767ee2bfb5cd66482a9209c8fa1d184c0d0c21643957879b4" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.9.5.tar.gz", "has_sig": false, "md5_digest": "f2c29a14f841076e310424b46705c4fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 283468, "upload_time": "2017-09-27T16:34:43", "url": "https://files.pythonhosted.org/packages/d6/3e/536dcb53aecc2cecd7378103aed9acfc72ef7126ff5982262aebcb0079aa/MPInterfaces_Latest-1.9.5.tar.gz" } ], "1.9.6": [ { "comment_text": "", "digests": { "md5": "e6fcfabd76203ba04afac06f6803006a", "sha256": "04d6e235fa5d5a634c95154a59554df10719a2fd99e8dbf2bad5224c50c2d627" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.9.6.tar.gz", "has_sig": false, "md5_digest": "e6fcfabd76203ba04afac06f6803006a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 283464, "upload_time": "2017-09-27T19:50:48", "url": "https://files.pythonhosted.org/packages/fd/03/c25fe3919f5cb62609154933568364ab26f86d46de2ba10fc10618a065f6/MPInterfaces_Latest-1.9.6.tar.gz" } ], "1.9.7": [ { "comment_text": "", "digests": { "md5": "1d0f252fd7217f6cb86d2185397ceed4", "sha256": "94c14be9596d5baf699da44593d7dec407bf854db23317ad3238ed7f5a94fbc1" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.9.7.tar.gz", "has_sig": false, "md5_digest": "1d0f252fd7217f6cb86d2185397ceed4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 283466, "upload_time": "2017-09-30T09:53:03", "url": "https://files.pythonhosted.org/packages/e7/a7/1475b1f268f7845422f74f1b599b2bab84ab2741a323e88c9657f2ca119c/MPInterfaces_Latest-1.9.7.tar.gz" } ], "1.9.8": [ { "comment_text": "", "digests": { "md5": "ac9dc224ed10ceceb096a611b9ce86cf", "sha256": "b4679d988129cd3d2d6c12f85811c08e941a434c2cd48178beed2988bc079637" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.9.8.tar.gz", "has_sig": false, "md5_digest": "ac9dc224ed10ceceb096a611b9ce86cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 283478, "upload_time": "2017-09-30T09:56:12", "url": "https://files.pythonhosted.org/packages/fe/4e/f57a87222d7b94cd5e2d1684de02e5ccfbb5e8d583033bb315d762b02aa1/MPInterfaces_Latest-1.9.8.tar.gz" } ], "1.9.9": [ { "comment_text": "", "digests": { "md5": "ecc50e82c47e392d49648d6c2061f273", "sha256": "6ef1be62db298365dc5d1acadbd5ee4c21b91b7288632f83ff2aefbad0bc7b0b" }, "downloads": -1, "filename": "MPInterfaces_Latest-1.9.9.tar.gz", "has_sig": false, "md5_digest": "ecc50e82c47e392d49648d6c2061f273", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 284291, "upload_time": "2017-10-04T14:37:25", "url": "https://files.pythonhosted.org/packages/5e/0b/28c0068960b15b7614bd6d0332bda630b9820fe1e3d33f710deae912079f/MPInterfaces_Latest-1.9.9.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "ea9f91ffc479000d6a965a44d0c1856f", "sha256": "7e307524d05d2b0b975cf12bdd14d5491e783d8e741ff0a20d8a2cf07fe19aae" }, "downloads": -1, "filename": "MPInterfaces_Latest-2.0.0.tar.gz", "has_sig": false, "md5_digest": "ea9f91ffc479000d6a965a44d0c1856f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 284280, "upload_time": "2017-10-04T14:48:49", "url": "https://files.pythonhosted.org/packages/b4/43/be83506a83abd1cc3c13e128b7be02f72b82042c6596cb1fca09f7db501a/MPInterfaces_Latest-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "8277b01c523145ec24997f781d13005d", "sha256": "99245c7b6e9d6dc57421adfa5dcafda7db92b1d9906d37f15ca6e4c6a538e50d" }, "downloads": -1, "filename": "MPInterfaces_Latest-2.0.1.tar.gz", "has_sig": false, "md5_digest": "8277b01c523145ec24997f781d13005d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 284162, "upload_time": "2017-10-04T15:13:16", "url": "https://files.pythonhosted.org/packages/16/59/97efd532a335c46a40d2d6a1541db3e35e201554a5b4db437bf97acf9a32/MPInterfaces_Latest-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "61ffef9aae457df941ea75e8f671abf6", "sha256": "04f1825c60c9a370d7f0f0d935b1f3f37395fdd00e0f4466cdc914920ef795bb" }, "downloads": -1, "filename": "MPInterfaces_Latest-2.0.2.tar.gz", "has_sig": false, "md5_digest": "61ffef9aae457df941ea75e8f671abf6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 284308, "upload_time": "2017-10-04T18:15:52", "url": "https://files.pythonhosted.org/packages/9e/6a/34ad0f5bbcdca5a4e64fc94cef1d940fd3ae90ad3c773828464cc5c3f706/MPInterfaces_Latest-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "12cc5f664f7fa5ed8961ab1e6e2ea15b", "sha256": "83defe08566169efbe9cd61a8e52a47b63b283a266b7f3f86cfcadc4c8f8ffd3" }, "downloads": -1, "filename": "MPInterfaces_Latest-2.0.3.tar.gz", "has_sig": false, "md5_digest": "12cc5f664f7fa5ed8961ab1e6e2ea15b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 285009, "upload_time": "2017-10-17T22:01:31", "url": "https://files.pythonhosted.org/packages/33/b3/4699076923c175fde08e0604f8b046f0e1904c1bdd1978d68b7bd6b3edf3/MPInterfaces_Latest-2.0.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "12cc5f664f7fa5ed8961ab1e6e2ea15b", "sha256": "83defe08566169efbe9cd61a8e52a47b63b283a266b7f3f86cfcadc4c8f8ffd3" }, "downloads": -1, "filename": "MPInterfaces_Latest-2.0.3.tar.gz", "has_sig": false, "md5_digest": "12cc5f664f7fa5ed8961ab1e6e2ea15b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 285009, "upload_time": "2017-10-17T22:01:31", "url": "https://files.pythonhosted.org/packages/33/b3/4699076923c175fde08e0604f8b046f0e1904c1bdd1978d68b7bd6b3edf3/MPInterfaces_Latest-2.0.3.tar.gz" } ] }