Skip to main content

mmCIF Core Access Library

Project description

mmCIF Core Access Library

Build Status

Introduction

This module includes a native Python mmCIF API for data files and dictionaries along with pybind11 wrappers for the PDB C++ Core mmCIF Library.

Installation

Download the library source software from the project repository:

git clone  --recurse-submodules  https://github.com/rcsb/py-mmcif.git

Optionally, run test suite using the Tox test runner. The C++ library bindings have been tested on Centos 7/Ubuntu 20.04 Linux with GCC/G++ > 4.8.5 and MacOS (10.15) with > clang-900.0.39.2 using Python versions 2.7.18 and 3.9.4.

tox

Installation is via the program pip.

pip install mmcif

or from the local repository:

pip install .

To generate API documentation using Sphinx:

cd scripts
# Check Sphinx dependencies in the introductory comments to the following script.
./initdocs.sh

build_dict_cli tool

Overview

build_dict_cli is a command-line tool that serves as a preprocessor for modular mmCIF dictionaries. It resolves and combines dictionary components from multiple source files using include directives specified in categories such as pdbx_include_dictionary, pdbx_include_category, and pdbx_include_item.

Purpose

The tool allows dictionary maintainers to:

  • Combine multiple dictionary extensions (or combining extension with a parent dictionary) into a single comprehensive dictionary
  • Get dictionary version of the dictionary

Command-Line Arguments

build_dict_cli --help
usage: build_dict_cli [-h] --op OP --input_dict_path INPUT_DICT_PATH [--output_dict_path OUTPUT_DICT_PATH] [--cleanup]

optional arguments:
  -h, --help            show this help message and exit
  --op OP               Operation (build | get_version)
  --input_dict_path INPUT_DICT_PATH
                        Path to dictionary generator file
  --output_dict_path OUTPUT_DICT_PATH
                        Path to output dictionary text file
  --cleanup             Remove include instruction categories after processing
Argument Details
  • --op: Specifies the operation to perform

    • build: Generates a complete dictionary by processing includes
    • get_version: Retrieves and outputs the version of the specified dictionary
  • --input_dict_path: Path to the dictionary generator file that contains include directives

  • --output_dict_path: Path where the combined output dictionary will be written

  • --cleanup: If specified, removes the include instruction categories from the final output

Creating a Generator File

A generator file is a special mmCIF dictionary file that primarily contains include directives. This file serves as the entry point for the dictionary build process.

Example Generator File

# mmcif_pdbx_v50-generator.dic

data_mmcif_pdbx.dic
#
loop_
_pdbx_include_dictionary.dictionary_id
_pdbx_include_dictionary.dictionary_locator
_pdbx_include_dictionary.include_mode
_pdbx_include_dictionary.dictionary_namespace_prefix
_pdbx_include_dictionary.dictionary_namespace_prefix_replace
mmcif_pdbx_v50.dic          mmcif_pdbx_v50.dic          extend . .
mmcif_investigation_fraghub_ext.dic      mmcif_investigation_fraghub_ext.dic  extend . .

Key Components in a Generator File

  • dictionary_id: Identifier for the dictionary to be included
  • dictionary_locator: File path to the dictionary (relative to the generator file)
  • include_mode: How to incorporate the dictionary (typically "extend")
  • dictionary_namespace_prefix: Namespace prefix for the included dictionary (use "." for none)
  • dictionary_namespace_prefix_replace: Replacement for the namespace prefix (use "." for none)

Usage Workflow

  1. Prepare Dictionary Components:

    • Create or obtain the dictionary files you want to combine
    • Ensure all dictionary files are present in the same directory or specify the correct relative paths
  2. Create a Generator File:

    • Define a new mmCIF file with _pdbx_include_dictionary loop
    • List all dictionaries to be included with their proper attributes
  3. Run the Build Command:

    build_dict_cli --op build --input_dict_path generator-file.dic --output_dict_path output-dictionary.dic
    
  4. Verify the Output:

    • The tool will combine all specified dictionaries into a single output file
    • Check that all expected categories and items are present in the output

Example Use Case

To combine a base PDBx dictionary with a InvestigationCIF extension dictionary:

  1. Ensure both dictionaries are available in your working directory:

    mmcif_pdbx_v50.dic
    mmcif_investigation_fraghub_ext.dic
    
  2. Create a generator file (e.g., mmcif_pdbx_v50-generator-local.dic):

    data_mmcif_pdbx.dic
    #
    loop_
    _pdbx_include_dictionary.dictionary_id
    _pdbx_include_dictionary.dictionary_locator
    _pdbx_include_dictionary.include_mode
    _pdbx_include_dictionary.dictionary_namespace_prefix
    _pdbx_include_dictionary.dictionary_namespace_prefix_replace
    mmcif_pdbx_v50.dic          mmcif_pdbx_v50.dic          extend . .
    mmcif_investigation_fraghub_ext.dic      mmcif_investigation_fraghub_ext.dic  extend . .
    
  3. Run the build command:

     build_dict_cli --op build --input_dict_path mmcif_pdbx_v50-generator-local.dic --output_dict_path ./mmcif_investigation_fraghub.dic
    
  4. The tool will produce mmcif_investigation_fraghub.dic containing the combined content of both dictionaries.

Retrieving Dictionary Version

To get the version of a dictionary:

build_dict_cli --op get_version --input_dict_path mmcif_pdbx_v50.dic

This will output only the version number to stdout.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mmcif-0.92.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

mmcif-0.92.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (620.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mmcif-0.92.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (637.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mmcif-0.92.0-cp313-cp313-macosx_11_0_arm64.whl (504.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mmcif-0.92.0-cp313-cp313-macosx_10_13_x86_64.whl (555.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mmcif-0.92.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (620.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mmcif-0.92.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (637.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mmcif-0.92.0-cp312-cp312-macosx_11_0_arm64.whl (504.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mmcif-0.92.0-cp312-cp312-macosx_10_9_x86_64.whl (555.8 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

mmcif-0.92.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mmcif-0.92.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (637.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mmcif-0.92.0-cp311-cp311-macosx_11_0_arm64.whl (501.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mmcif-0.92.0-cp311-cp311-macosx_10_9_x86_64.whl (547.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mmcif-0.92.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mmcif-0.92.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (636.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mmcif-0.92.0-cp310-cp310-macosx_11_0_arm64.whl (501.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mmcif-0.92.0-cp310-cp310-macosx_10_9_x86_64.whl (547.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mmcif-0.92.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mmcif-0.92.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (636.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mmcif-0.92.0-cp39-cp39-macosx_11_0_arm64.whl (501.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mmcif-0.92.0-cp39-cp39-macosx_10_9_x86_64.whl (547.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mmcif-0.92.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mmcif-0.92.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (636.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

mmcif-0.92.0-cp38-cp38-macosx_11_0_arm64.whl (501.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mmcif-0.92.0-cp38-cp38-macosx_10_9_x86_64.whl (547.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mmcif-0.92.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (634.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mmcif-0.92.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (653.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mmcif-0.92.0-cp37-cp37m-macosx_10_9_x86_64.whl (542.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

mmcif-0.92.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (634.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

mmcif-0.92.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (653.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

mmcif-0.92.0-cp36-cp36m-macosx_10_9_x86_64.whl (541.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file mmcif-0.92.0.tar.gz.

File metadata

  • Download URL: mmcif-0.92.0.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for mmcif-0.92.0.tar.gz
Algorithm Hash digest
SHA256 891879040fd63d417bd3752b26d19b3b8c2809fc5a48669346a7c60c7e319e1b
MD5 5cf32eed49d64cfad4d7e99fddef772b
BLAKE2b-256 e511c1dd3b992b8cab9bb539a6dbde9746d6c6470908d8d618810282d7b5a41c

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dd815ad57fa2d595a499bda75ceb3b468f7e6a9db7c3e02aaf8b1cfe11a5a20
MD5 42185dcc652140716f544a51ad0648ee
BLAKE2b-256 01b0b5427faf2b2f1690be5dec169506570ed24b0a0d89a6426faead60a51515

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c1f88939803a882930fe7473b1a3c62f492403839f628ae1288cdb3dd0d58d1
MD5 b42e613ec89a04b1e9050d00f0dfd67a
BLAKE2b-256 73573be6763c1dda0da6d2cf71c3e196754543ff526d69064f861bbd28bc443a

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a278f0b0b8c8bd848f56d0b6def930fdf41621d6a7ab468d335e9657bb6ab6e
MD5 81e3cc4f0b62f85dd7cc56989a3a9541
BLAKE2b-256 3b84e31a0e532916705c37c7bcc929c106eb7dd56ff168cf18e2b618cbc7b275

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 12070c1965fc08deec817b6069a14085bbd582ee97a9eec0556e99e8305f462e
MD5 a9e3a916cc2ca717a59f1bd6cb939830
BLAKE2b-256 31d609ae93505c5d0c3d3664df14bfe5ae7ba6eea66231f87631f5cc2958219f

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb6670e74cb5b23a1139cfbcfc924e8ef4dfbba5f08adc065df218dcc29f1798
MD5 08755194b239623fab18330b819564b2
BLAKE2b-256 8dda1607d0339a25d3a46f9630376ae1da05b8bf177b5a55dade1188dc5b570d

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f13636f8ee293a2f6b6c15c240ee03323ec89c5f57b1631317cec97347816939
MD5 a8e559918c89dab52cc4a2fef5d98851
BLAKE2b-256 4b346bd812f0f77e8553b59d038350f2f312cf2e4fcabaaddbac6a8b55ed5b81

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72f4fb7a0895fcbef87df8b60d8c20984a15ef7c40528bc74a361246be643659
MD5 71178d5fd821aa7fcf1f25dbe0f51ad5
BLAKE2b-256 4ef8edc33f8cf323ca487bca37894722a2cccbd285a6bbd56b42e2235674851d

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf26fe0866ca97fa8adb0ae9e87f1686054bd2447e7acb105ceebf38d9239632
MD5 3d3941b1aa887c6f7f4cf9457314fb1f
BLAKE2b-256 1fdf89da5036a6dc696f27c6ff91f81467915c352a58882489eb32f1e6717c05

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd5eff78ba7fd74e96c2d1e349eb754d2ec9eb1740301fd08819a3003d83e7eb
MD5 f4bab7de73fb36b6244a4ec669d2f7b8
BLAKE2b-256 8feeb61c9c959ce09c497f049bc250a4b6a65f346a06244af6a66756ddef1ad2

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1235cbbc493aff71ebbd08aab007db500086329c116ac3469533823ca0d24167
MD5 6d6af6ff61f19dec98e23c13334cf90b
BLAKE2b-256 eada54946a5a4653fc08fc42c2fdb47b9dbad9452bc12f3604c3b0e17d08a7a8

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10e23d3e1ae09ecd7d8ae0c935173d43f17a51a09ac882bf83805dcda38d77db
MD5 b2c97efa55c43cc2966076010852287c
BLAKE2b-256 fc7119903f7c302ffd8d94c2308ae7313042157f03222e41ca96fb5164f5e3ed

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f35d0878763ed9df78a2830054d0a835bdf680550dc90ec526a7c08006a9f3f
MD5 cda25a8f8f846db262ed4ca32dba0584
BLAKE2b-256 911c18ff8ab9bfb063ba608e469eb1042dc4a49096e61462de7288f5a691ef8d

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27d6b5e428ead087f0e5bc74333ec66f2e4e948b8261169392a3a2ac5547839e
MD5 9b4127bd4c11730a3421c4434085c547
BLAKE2b-256 2483184a9a18bae62fccb8fd062732661ab879a0584df5dc247866e7fab839e6

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d2faf05a7ce86a6403d76a1508b300eb24c596175d50ad5e74cad33cbb5e5b6
MD5 edb801619b731ecd80a82013d9360485
BLAKE2b-256 c97c4a79ab66fa524e7e4bd8c078c0f4751251dbaad79ae289a2f5868ad49d09

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21df15dcf4cc822ee80dda5d7860b9a85a087133231845ed7b59201e6fa20c63
MD5 45298ae0369c8a11f5c38cb64b910258
BLAKE2b-256 83ac369e78080f55b84638ee7ae1d95a5ffca562550339b10c5a20eb5f820519

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c91970d2d2215abc5066f71b3f0d69ffeda1157daa5f7b445159dba7cd4c7ab
MD5 6f8b10a3a53cb081d8b9391cf497f37d
BLAKE2b-256 8d708b0c0371cb10fce719ddc91f2317cdd5f03ae8e205e159f782245c868c26

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c06fe67f637b7b5d7daa545ab6e30ed0df702554ddbb34ccfb7db22c3ec4003
MD5 846ae8f3f1cc5c6e92e376e5cf1fef08
BLAKE2b-256 32d312e0e8cfd2ba1294874bbb4b83f9b7c694c7803522887e4373a26029a35a

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 efc2e835ba388a1a971b31d58a846b350d8ddae1fd0ca7bcce01ab4c316c1a31
MD5 ba5f549cf7464b79e9fa45c2f04b38d4
BLAKE2b-256 0793ad952296f4a252edcb81aed93a5544e9a5abc81b6c07743069a20b479651

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f56af59489871ea722b99abed2a66b5a9083b40daccfdd404ab1a9b85cad07fa
MD5 bf74d27579dcbf73a9873f0fd9033d50
BLAKE2b-256 1730cfb5197db53ed6361da8c40ef069faf233d4c9e965dec6bc13988d9056cc

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da72a99c7a13f935834fcfbb1148c6891491ca72c3b6f2282defb9a8659f3cfc
MD5 8fd2f221b85bc9ab8499d5bfd3480c57
BLAKE2b-256 c9db640168700fdc21fd2a17751455fd4ea9106eb80a37a3a4e4b14c09bdaaa9

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc6e133493f52b6fc5e436c53a94d968056c6ab2ad61ef3e8cfd3ca1bf1ab0b3
MD5 c1f159b94a4387feef4ae80b25d80fa1
BLAKE2b-256 f5bf2cf85be2eadc30d0b591f793267a854a4ba502de135ed0c84c8fd7fcabf3

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92cb0b88c31196086c2fe510978c392c8a575fcb55a18c83d0aa1ca56436884b
MD5 e53112e628ab5b71ca8b2465c6d34956
BLAKE2b-256 f2aed59f0bd01f0a7d77431826534fdb99d465b842d58fb5fffd84a8a87fb8e8

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67486c1ad2972fde71033bddd480f38de0b3ae59c463b1bcc69fced3159dc9d6
MD5 ae41df45c465d41766b04ae1105d656b
BLAKE2b-256 86b754c87268ae7b792eb8e8197146bd53d6c8e71469a67ef29b0f7d808a43cd

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e6951b16c83a4848cb6d610b06356f5e9969e6093755f9d3089425382f5345b
MD5 5ebb3d467d0ac8078a9a5268d3cd9f96
BLAKE2b-256 cc568b5083bff25bd6b2d3ebe885ea599eb58103c40893fc418b2a486bf7c42d

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47049e82ebc22593d7d8387b53de8c593b394b124eb3afd21e8896624e3785fe
MD5 f6208bd91c597938b441de66abc7d9ee
BLAKE2b-256 7ab110c25099a591601f04a99eb3dce683a8a35b241f7218b8f39b328c5d8f76

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 911b63cd0e6985f6cb1790ddca48f394ef0f6ded11ab738258315eb5ccd6bb01
MD5 ded53ac5a73f76165e1b72bdc53e514c
BLAKE2b-256 d494ea44009f770946724f4a6ac22a52fde2666f45a7ccb9c33724060541b1bb

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f6ba9b6d24c2f0ff0152d583af39033e4df5220ef4614220c196ec14da70973
MD5 4f896dda90f6a41d034f539c01aa1cc5
BLAKE2b-256 a48b8da1aad0d6ccf1d809ac9846b9ed9b2b8498a7f9c79521c5d7035a7c175a

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49eca0612a5fc826807faa3aa83e8edc9075adfd47815849bc0ed1a8755b6d71
MD5 32693422595af99f7deca12bebcd134a
BLAKE2b-256 e5b793483b00efdb9b6b7fddccd93ff830dcb5178fa63342bdd6523cedd11c6f

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7112a9e224b470917a8ec8bfee4c4c77b4a9ccc11b099475b6106f0bfa735492
MD5 a46f154c10d96866b40c760f75b06379
BLAKE2b-256 87acad9f29d81a4777236e7bf0cf4cd8248ad2a17ea2c1289803ed8e3034842d

See more details on using hashes here.

File details

Details for the file mmcif-0.92.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mmcif-0.92.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ba22d3db3042a23ce8dc4b5eef5f009b3aaf766f572711e0c1f7acffee4f772
MD5 062f2411b71f28b16e7b03a72fc7721c
BLAKE2b-256 5e528f549dc60970f2792ec4a1d968f50d1fd94b5ec2afed5e2cab7b73e7c756

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page