{ "info": { "author": "Colin Palmer", "author_email": "colin.palmer@stfc.ac.uk", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "mrcfile.py\n==========\n\n|build-status| |pypi-version| |python-versions| |readthedocs|\n\n.. |build-status| image:: https://travis-ci.org/ccpem/mrcfile.svg?branch=master\n :target: https://travis-ci.org/ccpem/mrcfile\n :alt: Build Status\n\n.. |pypi-version| image:: https://img.shields.io/pypi/v/mrcfile.svg\n :target: https://pypi.python.org/pypi/mrcfile\n :alt: Python Package Index\n\n.. |python-versions| image:: https://img.shields.io/pypi/pyversions/mrcfile.svg\n :target: https://pypi.python.org/pypi/mrcfile\n :alt: Python Versions\n\n.. |readthedocs| image:: https://readthedocs.org/projects/mrcfile/badge/\n :target: http://mrcfile.readthedocs.org\n :alt: Documentation\n\n.. start_of_main_text\n\n``mrcfile`` is a Python implementation of the `MRC2014 file format`_, which\nis used in structural biology to store image and volume data.\n\nIt allows MRC files to be created and opened easily using a very simple API,\nwhich exposes the file's header and data as `numpy`_ arrays. The code runs in\nPython 2 and 3 and is fully unit-tested.\n\n.. _MRC2014 file format: http://www.ccpem.ac.uk/mrc_format/mrc2014.php\n.. _numpy: http://www.numpy.org/\n\nThis library aims to allow users and developers to read and write\nstandard-compliant MRC files in Python as easily as possible, and with no\ndependencies on any compiled libraries except `numpy`_. You can use it\ninteractively to inspect files, correct headers and so on, or in scripts and\nlarger software packages to provide basic MRC file I/O functions.\n\nKey Features\n------------\n\n* Clean, simple API for access to MRC files\n* Easy to install and use\n* Validation of files according to the MRC2014 format\n* Seamless support for gzip and bzip2 files\n* Memory-mapped file option for fast random access to very large files\n* Asynchronous opening option for background loading of multiple files\n* Runs in Python 2 & 3, on Linux, Mac OS X and Windows\n\nInstallation\n------------\n\nThe ``mrcfile`` library is available from the Python package index::\n\n pip install mrcfile\n\nIt is also included in the ``ccpem-python`` environment in the `CCP-EM`_\nsoftware suite.\n\n.. _CCP-EM: http://www.ccpem.ac.uk\n\nThe source code (including the full test suite) can be found `on GitHub`_.\n\n.. _on GitHub: https://github.com/ccpem/mrcfile\n\nBasic usage\n-----------\n\nThe easiest way to open a file is with the `mrcfile.open`_ and `mrcfile.new`_\nfunctions. These return an `MrcFile`_ object which represents an MRC file on\ndisk.\n\n.. _mrcfile.open: http://mrcfile.readthedocs.io/en/latest/source/mrcfile.html#mrcfile.open\n.. _mrcfile.new: http://mrcfile.readthedocs.io/en/latest/source/mrcfile.html#mrcfile.new\n.. _MrcFile: http://mrcfile.readthedocs.io/en/latest/usage_guide.html#using-mrcfile-objects\n\nTo open an MRC file and read a slice of data::\n\n >>> import mrcfile\n >>> with mrcfile.open('tests/test_data/EMD-3197.map') as mrc:\n ... mrc.data[10,10]\n ... \n array([ 2.58179283, 3.1406002 , 3.64495397, 3.63812137, 3.61837363,\n 4.0115056 , 3.66981959, 2.07317996, 0.1251585 , -0.87975615,\n 0.12517013, 2.07319379, 3.66982722, 4.0115037 , 3.61837196,\n 3.6381247 , 3.64495087, 3.14059472, 2.58178973, 1.92690361], dtype=float32)\n\nTo create a new file with a 2D data array, and change some values::\n\n >>> with mrcfile.new('tmp.mrc') as mrc:\n ... mrc.set_data(np.zeros((5, 5), dtype=np.int8))\n ... mrc.data[1:4,1:4] = 10\n ... mrc.data\n ... \n array([[ 0, 0, 0, 0, 0],\n [ 0, 10, 10, 10, 0],\n [ 0, 10, 10, 10, 0],\n [ 0, 10, 10, 10, 0],\n [ 0, 0, 0, 0, 0]], dtype=int8)\n\nThe data will be saved to disk when the file is closed, either automatically at\nthe end of the ``with`` block (like a normal Python file object) or manually by\ncalling ``close()``. You can also call ``flush()`` to write any changes to disk\nand keep the file open.\n\nTo validate an MRC file::\n\n >>> mrcfile.validate('tests/test_data/EMD-3197.map')\n File does not declare MRC format version 20140: nversion = 0\n False\n\n >>> mrcfile.validate('tmp.mrc')\n True\n\nDocumentation\n-------------\n\nFull documentation is available on `Read the Docs`_.\n\n.. _Read the Docs: http://mrcfile.readthedocs.org\n\nCiting mrcfile\n--------------\n\nIf you find ``mrcfile`` useful in your work, please cite:\n\nBurnley T, Palmer C & Winn M (2017) Recent developments in the CCP-EM\nsoftware suite. *Acta Cryst.* D\\ **73**:469--477.\n`doi: 10.1107/S2059798317007859`_\n\n.. _`doi: 10.1107/S2059798317007859`: https://doi.org/10.1107/S2059798317007859\n\nContributing\n------------\n\nPlease use the `GitHub issue tracker`_ for bug reports and feature requests, or\n`email CCP-EM`_.\n\n.. _GitHub issue tracker: https://github.com/ccpem/mrcfile/issues\n.. _email CCP-EM: ccpem@stfc.ac.uk\n\nCode contributions are also welcome, please submit pull requests to the\n`GitHub repository`_.\n\n.. _GitHub repository: https://github.com/ccpem/mrcfile\n\nTo run the test suite, go to the top-level project directory (which contains\nthe ``mrcfile`` and ``tests`` packages) and run ``python -m unittest tests``.\n(Or, if you have `tox`_ installed, run ``tox``.)\n\n.. _tox: http://tox.readthedocs.org\n\nLicence\n-------\n\nThe project is released under the BSD licence.\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/ccpem/mrcfile/releases", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ccpem/mrcfile", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "mrcfile", "package_url": "https://pypi.org/project/mrcfile/", "platform": "", "project_url": "https://pypi.org/project/mrcfile/", "project_urls": { "Download": "https://github.com/ccpem/mrcfile/releases", "Homepage": "https://github.com/ccpem/mrcfile" }, "release_url": "https://pypi.org/project/mrcfile/1.1.2/", "requires_dist": [ "numpy (>=1.11.0)" ], "requires_python": "", "summary": "MRC file I/O library", "version": "1.1.2" }, "last_serial": 4732178, "releases": { "0.0.0": [ { "comment_text": "", "digests": { "md5": "7cbe9196b5c62cc861daab4f7c4bb581", "sha256": "226f8a64fb3a6ed05597be90a442ed5ca2e4bfaf9d5bd2f0464e0b908865025f" }, "downloads": -1, "filename": "mrcfile-0.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7cbe9196b5c62cc861daab4f7c4bb581", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17413, "upload_time": "2016-12-23T13:35:49", "url": "https://files.pythonhosted.org/packages/e0/6d/719a759be3d285449cba3ff727f7b64a33c4b36fa6f8c43a10095b31f648/mrcfile-0.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d60bc469b284571acf08071fddc0f02", "sha256": "58d09f7cc4d07d1884ffed2b972b50973d2cecc7686e1ed1dec6699e7fc28263" }, "downloads": -1, "filename": "mrcfile-0.0.0.tar.gz", "has_sig": false, "md5_digest": "1d60bc469b284571acf08071fddc0f02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11440, "upload_time": "2016-12-23T13:35:51", "url": "https://files.pythonhosted.org/packages/42/ea/56ad4269c59c4666fe9f516206f2df510fd5740b0b9569a01cd1157facfa/mrcfile-0.0.0.tar.gz" } ], "0.0.1": [ { "comment_text": "", "digests": { "md5": "07309d1c1ad42877e5b1fe1d34b415ed", "sha256": "f8280a194550f3cf0e3dc64444b2116de2e5e6c22c686824bec682437f7e6209" }, "downloads": -1, "filename": "mrcfile-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "07309d1c1ad42877e5b1fe1d34b415ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16766, "upload_time": "2017-01-04T10:38:04", "url": "https://files.pythonhosted.org/packages/93/3c/a201eb9d16055d80aa88a69c60cf8a3d4fa448775e99628c0be289b1ebb7/mrcfile-0.0.1-py2.py3-none-any.whl" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "2c395f7d16eceddcb480948b250a426f", "sha256": "7ff793703b4702360d14e220137e5838f0d9f783f1b9cf4d61c236a08d1db4e6" }, "downloads": -1, "filename": "mrcfile-0.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c395f7d16eceddcb480948b250a426f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20727, "upload_time": "2017-01-05T18:55:52", "url": "https://files.pythonhosted.org/packages/d0/48/93de188dfe31f55425d5c68f337429cfe6e31f9bd882f3e81b05a35be661/mrcfile-0.0.2-py2.py3-none-any.whl" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "347b26733e74bb3e22b340579e0bfc11", "sha256": "bd7550f9dcea4be87d97316af766aaea2a985be1e881a8140c9225a68d91ffd2" }, "downloads": -1, "filename": "mrcfile-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "347b26733e74bb3e22b340579e0bfc11", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23143, "upload_time": "2017-01-08T22:46:00", "url": "https://files.pythonhosted.org/packages/90/2b/90e098026a15f367956d6605fdd9111eff8deb2278a4bd40a88976652cd5/mrcfile-0.1.0-py2.py3-none-any.whl" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "d4bdd83413a3d1ff0f57f0ecb7155178", "sha256": "2b213747ba1df207c13229aa69ec851a0e1fdee8869ba53da27a2f2d2aea1f9e" }, "downloads": -1, "filename": "mrcfile-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d4bdd83413a3d1ff0f57f0ecb7155178", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24345, "upload_time": "2017-01-13T16:40:05", "url": "https://files.pythonhosted.org/packages/fc/ff/4e73d8958e7b0d472a92668a50ec4080fa9ffce96f82567bfd493e9e080f/mrcfile-0.1.1-py2.py3-none-any.whl" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "1ce13def3056efcd4f059a4c36770e44", "sha256": "9a32f04b0aca489c34a41a5d60701baef87aaa961b143b6813ed98bdc5fa1992" }, "downloads": -1, "filename": "mrcfile-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1ce13def3056efcd4f059a4c36770e44", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26664, "upload_time": "2017-01-24T19:40:15", "url": "https://files.pythonhosted.org/packages/20/3c/ccb028645b4cf14b59325a16fb40ea40539972753c34f988c8ab16ed91fe/mrcfile-0.2.0-py2.py3-none-any.whl" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "ef08ea7c2a544f7d3b2b1c7fd4f966ac", "sha256": "2f684ff18fb69109f4420198b2823ed690ba560a8b9df8171bca9527106f6750" }, "downloads": -1, "filename": "mrcfile-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ef08ea7c2a544f7d3b2b1c7fd4f966ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27456, "upload_time": "2017-01-30T18:39:11", "url": "https://files.pythonhosted.org/packages/da/be/aed00bee7905923dcc4b995eb5e9d0a02c9f98fecf8e00d6c237a500ace1/mrcfile-0.2.1-py2.py3-none-any.whl" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "7b91a0cd94939a32a203a9d5e5e06c22", "sha256": "9766a2d64e06d81b13c899bb69df6a2f3700af8681e931ac52fd4db586b91b30" }, "downloads": -1, "filename": "mrcfile-0.2.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b91a0cd94939a32a203a9d5e5e06c22", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 31152, "upload_time": "2017-05-11T19:21:14", "url": "https://files.pythonhosted.org/packages/ff/e5/b7d5724d2237bbfef96529b9b1c5ed62e65450dd1661a31c9ca7c2ef3b89/mrcfile-0.2.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81de589c7e657710033c377bc0ad8a24", "sha256": "9988907697e36afd6554741700b7ee494c02ae0f29e4460783613b0829e9f2d4" }, "downloads": -1, "filename": "mrcfile-0.2.10.tar.gz", "has_sig": false, "md5_digest": "81de589c7e657710033c377bc0ad8a24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21442, "upload_time": "2017-05-11T19:21:16", "url": "https://files.pythonhosted.org/packages/08/b8/a8c3d9cada8ae155e3b735677588e5bd6485f257b7ba43f376a6779b87ed/mrcfile-0.2.10.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "cd99434713b331025b0b586b7498b973", "sha256": "5ade7bd12a7249052fa6136162eafa7603c8a03b017f6b78de9ee6e4d100fb1c" }, "downloads": -1, "filename": "mrcfile-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd99434713b331025b0b586b7498b973", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28865, "upload_time": "2017-02-01T19:34:38", "url": "https://files.pythonhosted.org/packages/52/eb/d5c1aa2a67438c55ec22ed5e549a7920605cb2004d55da4dbdcc537fb76f/mrcfile-0.2.2-py2.py3-none-any.whl" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "9347fd1e6777980aff778d569f4b3ad7", "sha256": "e1284ebc9b9ca03127abbe27f457ad0790aa5b6461173fdb9a18952fc0dcc852" }, "downloads": -1, "filename": "mrcfile-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9347fd1e6777980aff778d569f4b3ad7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28875, "upload_time": "2017-02-02T10:23:02", "url": "https://files.pythonhosted.org/packages/00/d5/143092698404d5e8474a17dcdbde0156bc270526ab87a6e99519500e03f5/mrcfile-0.2.3-py2.py3-none-any.whl" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "e0798a3ed2e090abfc1869cefc1fbfee", "sha256": "2a9c3756a8ea300d16a6077f4be81ab70543e1a325f9a9c09126404f698beb5c" }, "downloads": -1, "filename": "mrcfile-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e0798a3ed2e090abfc1869cefc1fbfee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28837, "upload_time": "2017-02-03T18:53:59", "url": "https://files.pythonhosted.org/packages/be/54/2a76d4708940bdc15f7680ec3ddd77e1395b67c89246cd803f1a06a1f03c/mrcfile-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e84b4347682aa22c65f7ced9f6f6892", "sha256": "8d26e9c57af6c2fb5b760ea586662ca4ea8d25975cf50d42262a1f3138efed11" }, "downloads": -1, "filename": "mrcfile-0.2.4.tar.gz", "has_sig": false, "md5_digest": "8e84b4347682aa22c65f7ced9f6f6892", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20156, "upload_time": "2017-02-07T14:49:36", "url": "https://files.pythonhosted.org/packages/90/f9/c01b3ea0ffb1b52c1b90a8c9b20c9031452b948ce0f427101d9fc00281e5/mrcfile-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "cacdb1f55ef26dd2ac17fe2b606ba95c", "sha256": "62254bc551daf350e67637c3c7458958441f318dc90694ba7b96a27d56e2691b" }, "downloads": -1, "filename": "mrcfile-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cacdb1f55ef26dd2ac17fe2b606ba95c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 29561, "upload_time": "2017-03-17T11:32:40", "url": "https://files.pythonhosted.org/packages/4a/67/629be60830491acdd36d9457499c312b16052f1b7721a53cbc61837069b9/mrcfile-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c673eeda1125f61afd3393bb6fb1b70b", "sha256": "068373e96521e985f4a854096a36f0fc0053291ff17fd5a2b768e558f2d30c4d" }, "downloads": -1, "filename": "mrcfile-0.2.5.tar.gz", "has_sig": false, "md5_digest": "c673eeda1125f61afd3393bb6fb1b70b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20605, "upload_time": "2017-03-17T11:32:41", "url": "https://files.pythonhosted.org/packages/0b/a6/405f25824cfc0bb5bb1e72b23a4179c7973467ba55bbc647f1d031e6ab32/mrcfile-0.2.5.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "8aa0df61db7954cb718cb4c4197beacc", "sha256": "30e4b0977641dc3d9226b40fb2b8a4d6d07b6e644577ca67019edcc9bb6d0a89" }, "downloads": -1, "filename": "mrcfile-0.2.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8aa0df61db7954cb718cb4c4197beacc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 31107, "upload_time": "2017-03-17T17:30:40", "url": "https://files.pythonhosted.org/packages/32/c6/4fa255e2c2ff45e7fa1d7edad11aaa14965f3cf3f0b1b88e1a54715dc90a/mrcfile-0.2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bdc7804918705fb41842dd4be14736f6", "sha256": "07e68d170ab048e771b707836815aaa40050a2f306e513b72bcc87db7901b1a0" }, "downloads": -1, "filename": "mrcfile-0.2.8.tar.gz", "has_sig": false, "md5_digest": "bdc7804918705fb41842dd4be14736f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21322, "upload_time": "2017-03-17T17:30:42", "url": "https://files.pythonhosted.org/packages/94/8f/c6f89ced66dac40d514689fe70ef9d33f644c6cbb5c23ecaca010c2bb73f/mrcfile-0.2.8.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "952ccf7257a89ca2e253aa0a8fed559a", "sha256": "916b46cdedd00bff3c961e60209d36c475a41fcbd66469fd441ae403b1f7f8f5" }, "downloads": -1, "filename": "mrcfile-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "952ccf7257a89ca2e253aa0a8fed559a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32576, "upload_time": "2017-05-22T16:29:22", "url": "https://files.pythonhosted.org/packages/64/39/630782e458348308f0470403855d7597b1e602627f1ffa82c36cf8fc3ae1/mrcfile-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d5c21736068301b0045210a7cb5596c", "sha256": "6158dae101a94ba0cc3f074a495bfa2893dbb549ae6716ef2d50a33b563d8f91" }, "downloads": -1, "filename": "mrcfile-1.0.0.tar.gz", "has_sig": false, "md5_digest": "1d5c21736068301b0045210a7cb5596c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22584, "upload_time": "2017-05-22T16:29:25", "url": "https://files.pythonhosted.org/packages/14/99/7f60d6fe3446e0db5caa324197ea0cd2721e40c2d2f2513e826047dfb30e/mrcfile-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "4744aa3ed8efe9b7e144c114b48bc3a1", "sha256": "98c61204a54b770db5d871053da1809e4b2d7a5b7a8636a33b86a307f40f8ff7" }, "downloads": -1, "filename": "mrcfile-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4744aa3ed8efe9b7e144c114b48bc3a1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33066, "upload_time": "2017-10-09T16:44:45", "url": "https://files.pythonhosted.org/packages/f2/2c/fa14cbf453d60d03615760cc7b725140d0f17d19991fc1e97a868d34e15f/mrcfile-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1a2276e2c44999a776999d37c783ef42", "sha256": "f719fe495e4de584dd1469d4b695b36d1efb2b5f946a50db7d808d2fb85da9dc" }, "downloads": -1, "filename": "mrcfile-1.0.1.tar.gz", "has_sig": false, "md5_digest": "1a2276e2c44999a776999d37c783ef42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22842, "upload_time": "2017-10-09T16:44:47", "url": "https://files.pythonhosted.org/packages/f9/c6/d5bc3be40fc61831eb6ac565674777467a1162e5b5d1b63e11fa20fae864/mrcfile-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "ecd1c21aa8ec252f840b4544750895b9", "sha256": "8aae8f92a393c1823ccc5b2e835454ec4cf28c898037b250bc43e3f00fc3333d" }, "downloads": -1, "filename": "mrcfile-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ecd1c21aa8ec252f840b4544750895b9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 34247, "upload_time": "2018-01-18T19:44:21", "url": "https://files.pythonhosted.org/packages/fc/80/4dc29fe262c1fba92ee848f47ea112c2b8f158253554faace8573d19277c/mrcfile-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ba1e8d8320866f68b785b8f5359aff6", "sha256": "ecd6379e7e290134edfda3e6e8436df92d05cff8e0b68ef97b156d6977985c0b" }, "downloads": -1, "filename": "mrcfile-1.0.2.tar.gz", "has_sig": false, "md5_digest": "1ba1e8d8320866f68b785b8f5359aff6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24117, "upload_time": "2018-01-18T19:44:23", "url": "https://files.pythonhosted.org/packages/b9/2b/1817ae4f14bd8f95940e969736c8a350db67f043b52f6e11a1799fdf481c/mrcfile-1.0.2.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "3c4cb331dd2eee82775eada5e28e0185", "sha256": "a6475bf2609b272264dfe916633d9f29c23c80dbf30f7d606de5238b61842d77" }, "downloads": -1, "filename": "mrcfile-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3c4cb331dd2eee82775eada5e28e0185", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 37202, "upload_time": "2018-01-22T18:51:13", "url": "https://files.pythonhosted.org/packages/45/f5/06a28dbc1a3cf19bce4797bf17c2643b1ad34893a08f72384a5602a5393a/mrcfile-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b179be38ae400444100de872912856ee", "sha256": "44beed61302f7416a12220e580d5a1a3f4d43e256c4ad645ee20c9696c20eb92" }, "downloads": -1, "filename": "mrcfile-1.0.4.tar.gz", "has_sig": false, "md5_digest": "b179be38ae400444100de872912856ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25552, "upload_time": "2018-01-22T18:51:15", "url": "https://files.pythonhosted.org/packages/18/d9/3d5ab9dcb508d8005781a14da5f1dbf30a6c3713f91b4e2b836a29bb7108/mrcfile-1.0.4.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "8e724f09880756daeb0aa7aba3b5623f", "sha256": "30bf9cae6c2e5ead392e3f9eab9c7476583d66dcfd1dedca349626ff2462655e" }, "downloads": -1, "filename": "mrcfile-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e724f09880756daeb0aa7aba3b5623f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41349, "upload_time": "2018-11-21T18:43:24", "url": "https://files.pythonhosted.org/packages/77/c5/02f02af855df5e79cb325dfb5f29a05b2ee98153ba5a65788b9402e44172/mrcfile-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "617265c66ff4f21bb1f5bd15cc6faeee", "sha256": "689bb3a094500d0025abb0bcb24b75558dde3f68fe659c8d610b15aa6180dbc9" }, "downloads": -1, "filename": "mrcfile-1.1.0.tar.gz", "has_sig": false, "md5_digest": "617265c66ff4f21bb1f5bd15cc6faeee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29600, "upload_time": "2018-11-21T18:43:26", "url": "https://files.pythonhosted.org/packages/42/df/b1ca9533e298807993362a4f4e13f385316751aa486393fd058ebd816ffa/mrcfile-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "7fcf405851a6416058d4ab5e13447f48", "sha256": "a9ff7d7331261787078060f5a2b680de7f8b39ce2c5d425748669c26f1f44ae0" }, "downloads": -1, "filename": "mrcfile-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7fcf405851a6416058d4ab5e13447f48", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41349, "upload_time": "2019-01-17T16:28:15", "url": "https://files.pythonhosted.org/packages/61/eb/1585371bd67d51d6f662eb72d462a4c885d6c71975e84e9cc2a5bae292b8/mrcfile-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "13b6910dab737c93bb7976347b008327", "sha256": "f3f701bbcbe8ccecaf72ae8648606ffa64dece746941f38f98742aff37ab8d1f" }, "downloads": -1, "filename": "mrcfile-1.1.1.tar.gz", "has_sig": false, "md5_digest": "13b6910dab737c93bb7976347b008327", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29596, "upload_time": "2019-01-17T16:28:17", "url": "https://files.pythonhosted.org/packages/fa/ff/3ec62a247cda0185b61fb3f6e90f7d8899ea55ac5f6ed3b73c61be801a82/mrcfile-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "41135ee0fcf99f6adb9071475cd7f6dc", "sha256": "52ee39d54bc163f8b6a20538f52b12b6a5b06871b2bae33217e9ea68a7166651" }, "downloads": -1, "filename": "mrcfile-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "41135ee0fcf99f6adb9071475cd7f6dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41858, "upload_time": "2019-01-23T16:47:00", "url": "https://files.pythonhosted.org/packages/79/aa/52aa135830f66259783207021849a8234551fc5e3db15f685201cb3d1bfa/mrcfile-1.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c09ac20110df411089dd1deae22ac0b", "sha256": "aa79ca38dae99d8f9ee44bd9dcdd5d50d6c95fabef4aedc7036bf9f2d7d64890" }, "downloads": -1, "filename": "mrcfile-1.1.2.tar.gz", "has_sig": false, "md5_digest": "7c09ac20110df411089dd1deae22ac0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30061, "upload_time": "2019-01-23T16:47:02", "url": "https://files.pythonhosted.org/packages/d1/a9/60343e139d7c452a25aae333a3a2bceaba3f77f09d6120ee8ae7e1a2bb08/mrcfile-1.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "41135ee0fcf99f6adb9071475cd7f6dc", "sha256": "52ee39d54bc163f8b6a20538f52b12b6a5b06871b2bae33217e9ea68a7166651" }, "downloads": -1, "filename": "mrcfile-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "41135ee0fcf99f6adb9071475cd7f6dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41858, "upload_time": "2019-01-23T16:47:00", "url": "https://files.pythonhosted.org/packages/79/aa/52aa135830f66259783207021849a8234551fc5e3db15f685201cb3d1bfa/mrcfile-1.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c09ac20110df411089dd1deae22ac0b", "sha256": "aa79ca38dae99d8f9ee44bd9dcdd5d50d6c95fabef4aedc7036bf9f2d7d64890" }, "downloads": -1, "filename": "mrcfile-1.1.2.tar.gz", "has_sig": false, "md5_digest": "7c09ac20110df411089dd1deae22ac0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30061, "upload_time": "2019-01-23T16:47:02", "url": "https://files.pythonhosted.org/packages/d1/a9/60343e139d7c452a25aae333a3a2bceaba3f77f09d6120ee8ae7e1a2bb08/mrcfile-1.1.2.tar.gz" } ] }