Metadata-Version: 2.4
Name: iscc
Version: 2.0.0
Summary: Breaking compatibility wrapper for the retired ISCC proof-of-concept package
Author-email: ISCC Foundation <hello@iscc.io>
License-Expression: BSD-2-Clause
Project-URL: Homepage, https://iscc.codes/
Project-URL: Documentation, https://sdk.iscc.codes/
Project-URL: Repository, https://github.com/iscc/iscc-codes
Project-URL: Current SDK, https://github.com/iscc/iscc-sdk
Project-URL: Core Algorithms, https://github.com/iscc/iscc-core
Keywords: iscc,identifier,media,content,hash,similarity
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: iscc-sdk<1,>=0.9.2

# `iscc` PyPI Compatibility Wrapper

The `iscc` package name was used by an early ISCC proof-of-concept. That implementation is retired.

This wrapper is intended for a final PyPI release of `iscc` **2.0.0** that installs the maintained [`iscc-sdk`](https://pypi.org/project/iscc-sdk/) package and warns developers to import `iscc_sdk` directly.

## New code

Use `iscc-sdk` directly:

```bash
pip install iscc-sdk
```

```python
import iscc_sdk as idk

meta = idk.code_iscc("/path/to/file")
print(meta.iscc)
```

Use `iscc-core` only when you need lower-level algorithm access.

## Compatibility behavior

This wrapper is a breaking change from the retired proof-of-concept API. It imports the public `iscc_sdk` top-level API as a convenience and emits a visible warning on import. If you need the historical implementation, pin `iscc<2`.
