# ISCC - Codec & Algorithms
[![Build](https://github.com/iscc/iscc-core/actions/workflows/tests.yml/badge.svg)](https://github.com/iscc/iscc-core/actions/workflows/tests.yml)
[![Version](https://img.shields.io/pypi/v/iscc-core.svg)](https://pypi.python.org/pypi/iscc-core/)
[![Coverage](https://codecov.io/gh/iscc/iscc-core/branch/main/graph/badge.svg?token=7BJ7HJU815)](https://codecov.io/gh/iscc/iscc-core)
[![Quality](https://app.codacy.com/project/badge/Grade/ad1cc48ac0c0413ea2373a938148f019)](https://www.codacy.com/gh/iscc/iscc-core/dashboard)
[![Downloads](https://pepy.tech/badge/iscc-core)](https://pepy.tech/project/iscc-core)
`iscc-core` is the reference implementation of the core algorithms of the [ISCC](https://iscc.codes)
(*International Standard Content Code*)
## What is the ISCC
The ISCC is a similarity preserving fingerprint and identifier for digital media assets.
ISCCs are generated algorithmically from digital content, just like cryptographic hashes. However,
instead of using a single cryptographic hash function to identify data only, the ISCC uses various
algorithms to create a composite identifier that exhibits similarity-preserving properties (soft
hash).
The component-based structure of the ISCC identifies content at multiple levels of abstraction. Each
component is self-describing, modular, and can be used separately or with others to aid in various
content identification tasks. The algorithmic design supports content deduplication, database
synchronization, indexing, integrity verification, timestamping, versioning, data provenance,
similarity clustering, anomaly detection, usage tracking, allocation of royalties, fact-checking and
general digital asset management use-cases.
## What is `iscc-core`
`iscc-core` is the python based reference implementation of the ISCC core algorithms as defined by
[ISO 24138](https://www.iso.org/standard/77899.html). It also a good reference for porting ISCC to
other programming languages.
!!! tip
This is a low level reference implementation that does not inlcude features like mediatype
detection, metadata extraction or file format specific content extraction. Please have a look at
[iscc-sdk](https://github.com/iscc/iscc-sdk) which adds those higher level features on top of
the `iscc-core` library.
## Implementors Guide
### Reproducible Environment
For reproducible installation of the reference implementation we included a `poetry.lock` file with
pinned dependencies. Install them using [Python Poetry](https://pypi.org/project/poetry/) with the
command `poetry install` in the root folder.
### Repository structure
```
iscc-core
├── docs # Markdown and other assets for mkdocs documentation
├── examples # Example scripts using the reference code
├── iscc_core # Actual source code of the reference implementation
├── tests # Tests for the reference implementation
└── tools # Development tools
```
### Testing & Conformance
The reference implementation comes with 100% test coverage. To run the conformance selftest from the
repository root use `poetry run python -m iscc_core`. To run the complete test suite use
`poetry run pytest`.
To build a conformant implementation work through the follwing top level entrypoint functions:
```
gen_meta_code_v0
gen_text_code_v0
gen_image_code_v0
gen_audio_code_v0
gen_video_code_v0
gen_mixed_code_v0
gen_data_code_v0
gen_instance_code_v0
gen_iscc_code_v0
```
The corresponding test vectors can be found in `iscc_core/data.json`.
## ISCC Architecture
![ISCC Architecture](https://raw.githubusercontent.com/iscc/iscc-core/master/docs/images/iscc-codec-light.png)
## ISCC MainTypes
| Idx | Slug | Bits | Purpose |
| --- | :------- | ---- | ------------------------------------------------------ |
| 0 | META | 0000 | Match on metadata similarity |
| 1 | SEMANTIC | 0001 | Match on semantic content similarity |
| 2 | CONTENT | 0010 | Match on perceptual content similarity |
| 3 | DATA | 0011 | Match on data similarity |
| 4 | INSTANCE | 0100 | Match on data identity |
| 5 | ISCC | 0101 | Composite of two or more components with common header |
## Installation
Use the package manager [pip](https://pip.pypa.io/en/stable/) to install `iscc-core` as a library.
```bash
pip install iscc-core
```
## Quick Start
```python
import json
import iscc_core as ic
meta_code = ic.gen_meta_code(name="ISCC Test Document!")
print(f"Meta-Code: {meta_code['iscc']}")
print(f"Structure: {ic.iscc_explain(meta_code['iscc'])}\n")
# Extract text from file
with open("demo.txt", "rt", encoding="utf-8") as stream:
text = stream.read()
text_code = ic.gen_text_code_v0(text)
print(f"Text-Code: {text_code['iscc']}")
print(f"Structure: {ic.iscc_explain(text_code['iscc'])}\n")
# Process raw bytes of textfile
with open("demo.txt", "rb") as stream:
data_code = ic.gen_data_code(stream)
print(f"Data-Code: {data_code['iscc']}")
print(f"Structure: {ic.iscc_explain(data_code['iscc'])}\n")
stream.seek(0)
instance_code = ic.gen_instance_code(stream)
print(f"Instance-Code: {instance_code['iscc']}")
print(f"Structure: {ic.iscc_explain(instance_code['iscc'])}\n")
# Combine ISCC-UNITs into ISCC-CODE
iscc_code = ic.gen_iscc_code(
(meta_code["iscc"], text_code["iscc"], data_code["iscc"], instance_code["iscc"])
)
# Create convenience `Code` object from ISCC string
iscc_obj = ic.Code(iscc_code["iscc"])
print(f"ISCC-CODE: {ic.iscc_normalize(iscc_obj.code)}")
print(f"Structure: {iscc_obj.explain}")
print(f"Multiformat: {iscc_obj.mf_base32}\n")
# Compare with changed ISCC-CODE:
new_dc, new_ic = ic.Code.rnd(mt=ic.MT.DATA), ic.Code.rnd(mt=ic.MT.INSTANCE)
new_iscc = ic.gen_iscc_code((meta_code["iscc"], text_code["iscc"], new_dc.uri, new_ic.uri))
print(f"Compare ISCC-CODES:\n{iscc_obj.uri}\n{new_iscc['iscc']}")
print(json.dumps(ic.iscc_compare(iscc_obj.code, new_iscc["iscc"]), indent=2))
```
The output of this example is as follows:
```
Meta-Code: ISCC:AAAT4EBWK27737D2
Structure: META-NONE-V0-64-3e103656bffdfc7a
Text-Code: ISCC:EAAQMBEYQF6457DP
Structure: CONTENT-TEXT-V0-64-060498817dcefc6f
Data-Code: ISCC:GAA7UJMLDXHPPENG
Structure: DATA-NONE-V0-64-fa258b1dcef791a6
Instance-Code: ISCC:IAA3Y7HR2FEZCU4N
Structure: INSTANCE-NONE-V0-64-bc7cf1d14991538d
ISCC-CODE: ISCC:KACT4EBWK27737D2AYCJRAL5Z36G76RFRMO4554RU26HZ4ORJGIVHDI
Structure: ISCC-TEXT-V0-MCDI-3e103656bffdfc7a060498817dcefc6ffa258b1dcef791a6bc7cf1d14991538d
Multiformat: bzqavabj6ca3fnp757r5ambeyqf6457dp7isywhoo66i2npd46hiutektru
Compare ISCC-CODES:
ISCC:KACT4EBWK27737D2AYCJRAL5Z36G76RFRMO4554RU26HZ4ORJGIVHDI
ISCC:KACT4EBWK27737D2AYCJRAL5Z36G7Y7HA2BMECKMVRBEQXR2BJOS6NA
{
"meta_dist": 0,
"content_dist": 0,
"data_dist": 33,
"instance_match": false
}
```
## Documentation
Documentation is published at <https://core.iscc.codes>
## Development
**Requirements**
- [Python 3.7.2](https://www.python.org/) or higher for code generation and static site building.
- [Poetry](https://python-poetry.org/) for installation and dependency management.
**Development Setup**
```shell
git clone https://github.com/iscc/iscc-core.git
cd iscc-core
poetry install
```
**Development Tasks**
Tests, coverage, code formatting and other tasks can be run with the `poe` command:
```shell
poe
Poe the Poet - A task runner that works well with poetry.
version 0.18.1
Result: No task specified.
USAGE
poe [-h] [-v | -q] [--root PATH] [--ansi | --no-ansi] task [task arguments]
GLOBAL OPTIONS
-h, --help Show this help page and exit
--version Print the version and exit
-v, --verbose Increase command output (repeatable)
-q, --quiet Decrease command output (repeatable)
-d, --dry-run Print the task contents but don't actually run it
--root PATH Specify where to find the pyproject.toml
--ansi Force enable ANSI output
--no-ansi Force disable ANSI output
CONFIGURED TASKS
gentests Generate conformance test data
format Code style formating with black
docs Copy README.md to /docs
format-md Markdown formating with mdformat
lf Convert line endings to lf
test Run tests with coverage
sec Security check with bandit
all
```
Use `poe all` to run all tasks before committing any changes.
## Maintainers
[@titusz](https://github.com/titusz)
## Contributing
Pull requests are welcome. For significant changes, please open an issue first to discuss your
plans. Please make sure to update tests as appropriate.
You may also want join our developer chat on Telegram at <https://t.me/iscc_dev>.
Raw data
{
"_id": null,
"home_page": "https://iscc.codes",
"name": "iscc-core",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7.2,<4.0",
"maintainer_email": "",
"keywords": "iscc,identifier,media,hash,similarity",
"author": "Titusz",
"author_email": "tp@py7.de",
"download_url": "https://files.pythonhosted.org/packages/1e/3f/35f3247474437d0215fb77a4ec2fc4aa5de8e80f928fced7bfb620701e5b/iscc_core-1.0.9.tar.gz",
"platform": null,
"description": "# ISCC - Codec & Algorithms\n\n[![Build](https://github.com/iscc/iscc-core/actions/workflows/tests.yml/badge.svg)](https://github.com/iscc/iscc-core/actions/workflows/tests.yml)\n[![Version](https://img.shields.io/pypi/v/iscc-core.svg)](https://pypi.python.org/pypi/iscc-core/)\n[![Coverage](https://codecov.io/gh/iscc/iscc-core/branch/main/graph/badge.svg?token=7BJ7HJU815)](https://codecov.io/gh/iscc/iscc-core)\n[![Quality](https://app.codacy.com/project/badge/Grade/ad1cc48ac0c0413ea2373a938148f019)](https://www.codacy.com/gh/iscc/iscc-core/dashboard)\n[![Downloads](https://pepy.tech/badge/iscc-core)](https://pepy.tech/project/iscc-core)\n\n`iscc-core` is the reference implementation of the core algorithms of the [ISCC](https://iscc.codes)\n(*International Standard Content Code*)\n\n## What is the ISCC\n\nThe ISCC is a similarity preserving fingerprint and identifier for digital media assets.\n\nISCCs are generated algorithmically from digital content, just like cryptographic hashes. However,\ninstead of using a single cryptographic hash function to identify data only, the ISCC uses various\nalgorithms to create a composite identifier that exhibits similarity-preserving properties (soft\nhash).\n\nThe component-based structure of the ISCC identifies content at multiple levels of abstraction. Each\ncomponent is self-describing, modular, and can be used separately or with others to aid in various\ncontent identification tasks. The algorithmic design supports content deduplication, database\nsynchronization, indexing, integrity verification, timestamping, versioning, data provenance,\nsimilarity clustering, anomaly detection, usage tracking, allocation of royalties, fact-checking and\ngeneral digital asset management use-cases.\n\n## What is `iscc-core`\n\n`iscc-core` is the python based reference implementation of the ISCC core algorithms as defined by\n[ISO 24138](https://www.iso.org/standard/77899.html). It also a good reference for porting ISCC to\nother programming languages.\n\n!!! tip\n This is a low level reference implementation that does not inlcude features like mediatype\n detection, metadata extraction or file format specific content extraction. Please have a look at\n [iscc-sdk](https://github.com/iscc/iscc-sdk) which adds those higher level features on top of\n the `iscc-core` library.\n\n## Implementors Guide\n\n### Reproducible Environment\n\nFor reproducible installation of the reference implementation we included a `poetry.lock` file with\npinned dependencies. Install them using [Python Poetry](https://pypi.org/project/poetry/) with the\ncommand `poetry install` in the root folder.\n\n### Repository structure\n\n```\niscc-core\n\u251c\u2500\u2500 docs # Markdown and other assets for mkdocs documentation\n\u251c\u2500\u2500 examples # Example scripts using the reference code\n\u251c\u2500\u2500 iscc_core # Actual source code of the reference implementation\n\u251c\u2500\u2500 tests # Tests for the reference implementation\n\u2514\u2500\u2500 tools # Development tools\n```\n\n### Testing & Conformance\n\nThe reference implementation comes with 100% test coverage. To run the conformance selftest from the\nrepository root use `poetry run python -m iscc_core`. To run the complete test suite use\n`poetry run pytest`.\n\nTo build a conformant implementation work through the follwing top level entrypoint functions:\n\n```\ngen_meta_code_v0\ngen_text_code_v0\ngen_image_code_v0\ngen_audio_code_v0\ngen_video_code_v0\ngen_mixed_code_v0\ngen_data_code_v0\ngen_instance_code_v0\ngen_iscc_code_v0\n```\n\nThe corresponding test vectors can be found in `iscc_core/data.json`.\n\n## ISCC Architecture\n\n![ISCC Architecture](https://raw.githubusercontent.com/iscc/iscc-core/master/docs/images/iscc-codec-light.png)\n\n## ISCC MainTypes\n\n| Idx | Slug | Bits | Purpose |\n| --- | :------- | ---- | ------------------------------------------------------ |\n| 0 | META | 0000 | Match on metadata similarity |\n| 1 | SEMANTIC | 0001 | Match on semantic content similarity |\n| 2 | CONTENT | 0010 | Match on perceptual content similarity |\n| 3 | DATA | 0011 | Match on data similarity |\n| 4 | INSTANCE | 0100 | Match on data identity |\n| 5 | ISCC | 0101 | Composite of two or more components with common header |\n\n## Installation\n\nUse the package manager [pip](https://pip.pypa.io/en/stable/) to install `iscc-core` as a library.\n\n```bash\npip install iscc-core\n```\n\n## Quick Start\n\n```python\nimport json\nimport iscc_core as ic\n\nmeta_code = ic.gen_meta_code(name=\"ISCC Test Document!\")\n\nprint(f\"Meta-Code: {meta_code['iscc']}\")\nprint(f\"Structure: {ic.iscc_explain(meta_code['iscc'])}\\n\")\n\n# Extract text from file\nwith open(\"demo.txt\", \"rt\", encoding=\"utf-8\") as stream:\n text = stream.read()\n text_code = ic.gen_text_code_v0(text)\n print(f\"Text-Code: {text_code['iscc']}\")\n print(f\"Structure: {ic.iscc_explain(text_code['iscc'])}\\n\")\n\n# Process raw bytes of textfile\nwith open(\"demo.txt\", \"rb\") as stream:\n data_code = ic.gen_data_code(stream)\n print(f\"Data-Code: {data_code['iscc']}\")\n print(f\"Structure: {ic.iscc_explain(data_code['iscc'])}\\n\")\n\n stream.seek(0)\n instance_code = ic.gen_instance_code(stream)\n print(f\"Instance-Code: {instance_code['iscc']}\")\n print(f\"Structure: {ic.iscc_explain(instance_code['iscc'])}\\n\")\n\n# Combine ISCC-UNITs into ISCC-CODE\niscc_code = ic.gen_iscc_code(\n (meta_code[\"iscc\"], text_code[\"iscc\"], data_code[\"iscc\"], instance_code[\"iscc\"])\n)\n\n# Create convenience `Code` object from ISCC string\niscc_obj = ic.Code(iscc_code[\"iscc\"])\nprint(f\"ISCC-CODE: {ic.iscc_normalize(iscc_obj.code)}\")\nprint(f\"Structure: {iscc_obj.explain}\")\nprint(f\"Multiformat: {iscc_obj.mf_base32}\\n\")\n\n# Compare with changed ISCC-CODE:\nnew_dc, new_ic = ic.Code.rnd(mt=ic.MT.DATA), ic.Code.rnd(mt=ic.MT.INSTANCE)\nnew_iscc = ic.gen_iscc_code((meta_code[\"iscc\"], text_code[\"iscc\"], new_dc.uri, new_ic.uri))\nprint(f\"Compare ISCC-CODES:\\n{iscc_obj.uri}\\n{new_iscc['iscc']}\")\nprint(json.dumps(ic.iscc_compare(iscc_obj.code, new_iscc[\"iscc\"]), indent=2))\n```\n\nThe output of this example is as follows:\n\n```\nMeta-Code: ISCC:AAAT4EBWK27737D2\nStructure: META-NONE-V0-64-3e103656bffdfc7a\n\nText-Code: ISCC:EAAQMBEYQF6457DP\nStructure: CONTENT-TEXT-V0-64-060498817dcefc6f\n\nData-Code: ISCC:GAA7UJMLDXHPPENG\nStructure: DATA-NONE-V0-64-fa258b1dcef791a6\n\nInstance-Code: ISCC:IAA3Y7HR2FEZCU4N\nStructure: INSTANCE-NONE-V0-64-bc7cf1d14991538d\n\nISCC-CODE: ISCC:KACT4EBWK27737D2AYCJRAL5Z36G76RFRMO4554RU26HZ4ORJGIVHDI\nStructure: ISCC-TEXT-V0-MCDI-3e103656bffdfc7a060498817dcefc6ffa258b1dcef791a6bc7cf1d14991538d\nMultiformat: bzqavabj6ca3fnp757r5ambeyqf6457dp7isywhoo66i2npd46hiutektru\n\nCompare ISCC-CODES:\nISCC:KACT4EBWK27737D2AYCJRAL5Z36G76RFRMO4554RU26HZ4ORJGIVHDI\nISCC:KACT4EBWK27737D2AYCJRAL5Z36G7Y7HA2BMECKMVRBEQXR2BJOS6NA\n{\n \"meta_dist\": 0,\n \"content_dist\": 0,\n \"data_dist\": 33,\n \"instance_match\": false\n}\n```\n\n## Documentation\n\nDocumentation is published at <https://core.iscc.codes>\n\n## Development\n\n**Requirements**\n\n- [Python 3.7.2](https://www.python.org/) or higher for code generation and static site building.\n- [Poetry](https://python-poetry.org/) for installation and dependency management.\n\n**Development Setup**\n\n```shell\ngit clone https://github.com/iscc/iscc-core.git\ncd iscc-core\npoetry install\n```\n\n**Development Tasks**\n\nTests, coverage, code formatting and other tasks can be run with the `poe` command:\n\n```shell\npoe\n\nPoe the Poet - A task runner that works well with poetry.\nversion 0.18.1\n\nResult: No task specified.\n\nUSAGE\n poe [-h] [-v | -q] [--root PATH] [--ansi | --no-ansi] task [task arguments]\n\nGLOBAL OPTIONS\n -h, --help Show this help page and exit\n --version Print the version and exit\n -v, --verbose Increase command output (repeatable)\n -q, --quiet Decrease command output (repeatable)\n -d, --dry-run Print the task contents but don't actually run it\n --root PATH Specify where to find the pyproject.toml\n --ansi Force enable ANSI output\n --no-ansi Force disable ANSI output\nCONFIGURED TASKS\n gentests Generate conformance test data\n format Code style formating with black\n docs Copy README.md to /docs\n format-md Markdown formating with mdformat\n lf Convert line endings to lf\n test Run tests with coverage\n sec Security check with bandit\n all\n```\n\nUse `poe all` to run all tasks before committing any changes.\n\n## Maintainers\n\n[@titusz](https://github.com/titusz)\n\n## Contributing\n\nPull requests are welcome. For significant changes, please open an issue first to discuss your\nplans. Please make sure to update tests as appropriate.\n\nYou may also want join our developer chat on Telegram at <https://t.me/iscc_dev>.\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "ISCC - Core Algorithms",
"version": "1.0.9",
"project_urls": {
"Bug Tracker": "https://github.com/iscc/iscc-core/issues",
"Changelog": "https://core.iscc.codes/changelog",
"Coverage": "https://app.codecov.io/gh/iscc/iscc-core",
"Documentation": "https://core.iscc.codes/",
"Donate": "https://iscc.foundation/support",
"Homepage": "https://iscc.codes",
"Repository": "https://github.com/iscc/iscc-core",
"Twitter": "https://twitter.com/iscc_foundation"
},
"split_keywords": [
"iscc",
"identifier",
"media",
"hash",
"similarity"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "80d3dc302a0249b9460fc6e39491130bd95fbe53ee2af318a0f18971102d892d",
"md5": "f9be5a37106f502b1388c1b98b1f1452",
"sha256": "c644a908567eea87950fb0a00ca074a2e3b031d5c5de5539932ca7ecfc1aac70"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp310-cp310-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "f9be5a37106f502b1388c1b98b1f1452",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.2,<4.0",
"size": 644052,
"upload_time": "2024-03-17T21:41:12",
"upload_time_iso_8601": "2024-03-17T21:41:12.388143Z",
"url": "https://files.pythonhosted.org/packages/80/d3/dc302a0249b9460fc6e39491130bd95fbe53ee2af318a0f18971102d892d/iscc_core-1.0.9-cp310-cp310-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d607ce3c7f02f78b0686eb0ba45bcdf57353f7546d93cde26d97a495aeef27a3",
"md5": "438fa54d37afd3cc368454a5bb2ba3ca",
"sha256": "66e1091d4640b8aaec62b73208630ebf9ef4ef4e68ab5a7fb91d5bd8665158b7"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp310-cp310-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "438fa54d37afd3cc368454a5bb2ba3ca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.2,<4.0",
"size": 1468599,
"upload_time": "2024-03-17T21:41:17",
"upload_time_iso_8601": "2024-03-17T21:41:17.052314Z",
"url": "https://files.pythonhosted.org/packages/d6/07/ce3c7f02f78b0686eb0ba45bcdf57353f7546d93cde26d97a495aeef27a3/iscc_core-1.0.9-cp310-cp310-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ac26d9cad59ea9d8fe13bf0436b9bcf5151c347952b370efd3a80b419a4943b",
"md5": "7749f57bcf4381cfa0834dab8ac17b44",
"sha256": "5edf50404c72f82d66b464a044dc1b2b6c00aacace5d3178bd88276da2ffbd8d"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "7749f57bcf4381cfa0834dab8ac17b44",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.2,<4.0",
"size": 634048,
"upload_time": "2024-03-17T21:41:20",
"upload_time_iso_8601": "2024-03-17T21:41:20.319125Z",
"url": "https://files.pythonhosted.org/packages/8a/c2/6d9cad59ea9d8fe13bf0436b9bcf5151c347952b370efd3a80b419a4943b/iscc_core-1.0.9-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ee7e0e2d2b865ba86800c3ccb1c28d0dd910433a05b07661401c12f8af6d76f",
"md5": "f17820467ddb671f30cb58b97aef1af3",
"sha256": "2df463dd3fb103c4537bf1db3dbe142b4fad6332b2b2fb7e4ad1fc5c2cb894b5"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp311-cp311-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "f17820467ddb671f30cb58b97aef1af3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.2,<4.0",
"size": 820259,
"upload_time": "2024-03-17T21:41:23",
"upload_time_iso_8601": "2024-03-17T21:41:23.427701Z",
"url": "https://files.pythonhosted.org/packages/4e/e7/e0e2d2b865ba86800c3ccb1c28d0dd910433a05b07661401c12f8af6d76f/iscc_core-1.0.9-cp311-cp311-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "754fa8e2b36221957a942e14a715bbdf52312a140330aabdea72d89f644a58f6",
"md5": "a57875ada65896748953b660ca4f05de",
"sha256": "1def2031f28955e74b94a0d1b20a3135fad1cd61a67259c1e2a1438a9e3bd0ec"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp311-cp311-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "a57875ada65896748953b660ca4f05de",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.2,<4.0",
"size": 1536865,
"upload_time": "2024-03-17T21:41:28",
"upload_time_iso_8601": "2024-03-17T21:41:28.410862Z",
"url": "https://files.pythonhosted.org/packages/75/4f/a8e2b36221957a942e14a715bbdf52312a140330aabdea72d89f644a58f6/iscc_core-1.0.9-cp311-cp311-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c58828c3842ed6a5b96a311f644bb1b2d8294be8b44d5ff3604d5c73164122c3",
"md5": "af3767a310dd562ae42a1e27f566e628",
"sha256": "6cb51787ddf960a09315d4ba1b8df59da9c26e183dca1cec20f0b6537eab655f"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "af3767a310dd562ae42a1e27f566e628",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.2,<4.0",
"size": 634155,
"upload_time": "2024-03-17T21:41:31",
"upload_time_iso_8601": "2024-03-17T21:41:31.179065Z",
"url": "https://files.pythonhosted.org/packages/c5/88/28c3842ed6a5b96a311f644bb1b2d8294be8b44d5ff3604d5c73164122c3/iscc_core-1.0.9-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09fef57acac16822ecfa19c0ba884c49b0107995df3a7f3e53539048b35ec36b",
"md5": "ec48e9d50925705c9c3bc82dc2646e66",
"sha256": "d01c2a4f5054e7bb93e0dba9348b068fdd90897e77b95e4f0355cd9869434c0b"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp312-cp312-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "ec48e9d50925705c9c3bc82dc2646e66",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.2,<4.0",
"size": 822505,
"upload_time": "2024-03-17T21:41:34",
"upload_time_iso_8601": "2024-03-17T21:41:34.240714Z",
"url": "https://files.pythonhosted.org/packages/09/fe/f57acac16822ecfa19c0ba884c49b0107995df3a7f3e53539048b35ec36b/iscc_core-1.0.9-cp312-cp312-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a99f4ebe70ad867a48554d665ab0e0d2e9c95b5603ebcafa913608e7b906a72",
"md5": "f31553eeaa04a492bd234710004d8446",
"sha256": "2158f832f98c54b9b5492b111714177c9ed50db328c820db867bb7f9c384ac9c"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp312-cp312-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "f31553eeaa04a492bd234710004d8446",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.2,<4.0",
"size": 1550996,
"upload_time": "2024-03-17T21:41:39",
"upload_time_iso_8601": "2024-03-17T21:41:39.202981Z",
"url": "https://files.pythonhosted.org/packages/2a/99/f4ebe70ad867a48554d665ab0e0d2e9c95b5603ebcafa913608e7b906a72/iscc_core-1.0.9-cp312-cp312-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b008924f6b3e0f53372bf8e8153ce1bfbcae472a8c8ef859b54c6c16cfacfaf",
"md5": "91cbe2942fdc42c70d41e174e3d8eb3a",
"sha256": "1b5459cdadd5f0bfa29264f0a3a9b84e17a8328ed344ec34524a1df7726e8c34"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "91cbe2942fdc42c70d41e174e3d8eb3a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.2,<4.0",
"size": 634806,
"upload_time": "2024-03-17T21:41:44",
"upload_time_iso_8601": "2024-03-17T21:41:44.665090Z",
"url": "https://files.pythonhosted.org/packages/2b/00/8924f6b3e0f53372bf8e8153ce1bfbcae472a8c8ef859b54c6c16cfacfaf/iscc_core-1.0.9-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d281257e0722c000d72fc71b21f359c9e57774934597c903790072492e58581c",
"md5": "2a4c35ebdd6d1dc3fa7b43e9d6b74160",
"sha256": "bd80ffe6f139e28bfe4fbd7a267c3462550ad3465dbba14cedd73e9c09bc2825"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp37-cp37m-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "2a4c35ebdd6d1dc3fa7b43e9d6b74160",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.2,<4.0",
"size": 645959,
"upload_time": "2024-03-17T21:41:47",
"upload_time_iso_8601": "2024-03-17T21:41:47.808062Z",
"url": "https://files.pythonhosted.org/packages/d2/81/257e0722c000d72fc71b21f359c9e57774934597c903790072492e58581c/iscc_core-1.0.9-cp37-cp37m-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b6020077b28bc5714b9a630e3c75b5147556fee40aa11650fd1bfcf5a084f8d",
"md5": "3dbbbca50cc388f72b7a31df42a1fe5e",
"sha256": "2bbdec4367fe57770a0ff1143a9d275dedd60df391dfffa12b50d4b88a266881"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp37-cp37m-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "3dbbbca50cc388f72b7a31df42a1fe5e",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.2,<4.0",
"size": 1391993,
"upload_time": "2024-03-17T21:41:52",
"upload_time_iso_8601": "2024-03-17T21:41:52.559216Z",
"url": "https://files.pythonhosted.org/packages/9b/60/20077b28bc5714b9a630e3c75b5147556fee40aa11650fd1bfcf5a084f8d/iscc_core-1.0.9-cp37-cp37m-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "389eb0a4af322f0e914b59f7da319327dedb5a7b69fb78400fe0b3468d6a24ca",
"md5": "35549fbfd68ab7f08e3d807c7b6c7f2c",
"sha256": "5dc78ed2f117ff279d564f3ed48bb497c92465a635f2e43b5ae5d37912a1c67b"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "35549fbfd68ab7f08e3d807c7b6c7f2c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.2,<4.0",
"size": 635337,
"upload_time": "2024-03-17T21:41:55",
"upload_time_iso_8601": "2024-03-17T21:41:55.809363Z",
"url": "https://files.pythonhosted.org/packages/38/9e/b0a4af322f0e914b59f7da319327dedb5a7b69fb78400fe0b3468d6a24ca/iscc_core-1.0.9-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4570e9deff7915cdf7f30a70e8d0f72521e320b53f6a0f0be77c7eddf8ef59c7",
"md5": "f0eaa30109d48c64180b637ed1bd57a4",
"sha256": "27e78b6bac05e98e72db7de73a8060d4704f4e36257d0d7ba13ff44375d597cc"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp38-cp38-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "f0eaa30109d48c64180b637ed1bd57a4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.2,<4.0",
"size": 644711,
"upload_time": "2024-03-17T21:41:59",
"upload_time_iso_8601": "2024-03-17T21:41:59.315261Z",
"url": "https://files.pythonhosted.org/packages/45/70/e9deff7915cdf7f30a70e8d0f72521e320b53f6a0f0be77c7eddf8ef59c7/iscc_core-1.0.9-cp38-cp38-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5cc60eecc6c24977a85000cdfd0802358353ff52ef11e7e2c9d991fb59ce12d",
"md5": "103555e09f31c96a650d7feb634e388d",
"sha256": "c0a07af5ac6689341674cba3f33e646b6312a0c7347491ac55dd40ea22060c4c"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp38-cp38-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "103555e09f31c96a650d7feb634e388d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.2,<4.0",
"size": 1487712,
"upload_time": "2024-03-17T21:42:03",
"upload_time_iso_8601": "2024-03-17T21:42:03.792804Z",
"url": "https://files.pythonhosted.org/packages/d5/cc/60eecc6c24977a85000cdfd0802358353ff52ef11e7e2c9d991fb59ce12d/iscc_core-1.0.9-cp38-cp38-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29540e69c97efedb2fee420346e1747b31ac81937e7f3bf1d0722b2ade1e2621",
"md5": "add61296496d9dfd1b1a7e3548c4d4c1",
"sha256": "c4e5b0c5a39beaf7ac76098ac3a36740e902ef826df4213e7e21e58c73c7ab17"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "add61296496d9dfd1b1a7e3548c4d4c1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.2,<4.0",
"size": 634831,
"upload_time": "2024-03-17T21:42:06",
"upload_time_iso_8601": "2024-03-17T21:42:06.776491Z",
"url": "https://files.pythonhosted.org/packages/29/54/0e69c97efedb2fee420346e1747b31ac81937e7f3bf1d0722b2ade1e2621/iscc_core-1.0.9-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b90a52c9d2099cc05a1255dbf5602784b369978a47b2aaf8178d23afd49c4518",
"md5": "368af5445ba0dc90dfbdd40898d4b88a",
"sha256": "9992582fda258f570dc4e494547962cdd8a693907f7016c860bf054b5ce400fe"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp39-cp39-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "368af5445ba0dc90dfbdd40898d4b88a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.2,<4.0",
"size": 644379,
"upload_time": "2024-03-17T21:42:09",
"upload_time_iso_8601": "2024-03-17T21:42:09.645633Z",
"url": "https://files.pythonhosted.org/packages/b9/0a/52c9d2099cc05a1255dbf5602784b369978a47b2aaf8178d23afd49c4518/iscc_core-1.0.9-cp39-cp39-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56e2076bea59cd49749c60872c01c16a441bf0009ea460889a22635d9a239d06",
"md5": "bfa85bb9f012e7cf9d8a02e077ce7b26",
"sha256": "97c901499d851c61176f1383c5e12f6e8fc072764fb07d27589cdd6d5ddae3f1"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp39-cp39-manylinux_2_31_x86_64.whl",
"has_sig": false,
"md5_digest": "bfa85bb9f012e7cf9d8a02e077ce7b26",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.2,<4.0",
"size": 1471041,
"upload_time": "2024-03-17T21:42:13",
"upload_time_iso_8601": "2024-03-17T21:42:13.826037Z",
"url": "https://files.pythonhosted.org/packages/56/e2/076bea59cd49749c60872c01c16a441bf0009ea460889a22635d9a239d06/iscc_core-1.0.9-cp39-cp39-manylinux_2_31_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "727518410044c9b5abc01f24a7ed8487e79cc418848a8fa134ef6afd66c482d3",
"md5": "9d3398b2adf7c2d783418eb59f45a403",
"sha256": "7975eb61b810d26f72253a6250feaf415c125988b859a9bb54fbf69b0067091c"
},
"downloads": -1,
"filename": "iscc_core-1.0.9-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "9d3398b2adf7c2d783418eb59f45a403",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.2,<4.0",
"size": 634119,
"upload_time": "2024-03-17T21:42:16",
"upload_time_iso_8601": "2024-03-17T21:42:16.721542Z",
"url": "https://files.pythonhosted.org/packages/72/75/18410044c9b5abc01f24a7ed8487e79cc418848a8fa134ef6afd66c482d3/iscc_core-1.0.9-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e3f35f3247474437d0215fb77a4ec2fc4aa5de8e80f928fced7bfb620701e5b",
"md5": "8d8416a5aa49c046f1a6cdf5b9c8f41e",
"sha256": "222a96d21c408cffa102aaeeb6da3ffee2d292797b9bad0e46e0fb4eef8ce87f"
},
"downloads": -1,
"filename": "iscc_core-1.0.9.tar.gz",
"has_sig": false,
"md5_digest": "8d8416a5aa49c046f1a6cdf5b9c8f41e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7.2,<4.0",
"size": 58681,
"upload_time": "2024-03-17T21:42:18",
"upload_time_iso_8601": "2024-03-17T21:42:18.509565Z",
"url": "https://files.pythonhosted.org/packages/1e/3f/35f3247474437d0215fb77a4ec2fc4aa5de8e80f928fced7bfb620701e5b/iscc_core-1.0.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-03-17 21:42:18",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "iscc",
"github_project": "iscc-core",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "iscc-core"
}