# SlideIO Python Wrapper
This repository provides a Python interface to the **SlideIO** library, a high-performance C++ image-reading framework designed for medical and biological slides. With SlideIO, you can read whole-slide images, extract specific regions, and scale large slides efficiently. The Python wrapper integrates these capabilities into a convenient API, returning image data as NumPy arrays.
License: BSD-3-Clause.
---
## References
- [**SlideIO** GitHub Repository](https://github.com/Booritas/slideio)
- [**SlideIO** Tutorial](https://github.com/Booritas/slideio-tutorial)
- [**SlideIO** Website](https://www.slideio.com)
- [**SlideIO** Python Documentation](https://www.slideio.com/sphinx/)
- [*Using SlideIO Python Library for Image Analysis in Digital Pathology*](https://blog.gopenai.com/using-slideio-python-library-for-image-analysis-in-digital-pathology-ea9e71a4b430)
- [*SlideIO: A New Python Library for Reading Medical Images*](https://towardsdatascience.com/slideio-a-new-python-library-for-reading-medical-images-11858a522059)
---
## Overview
**SlideIO** is available as:
- A **C++ library** for efficient reading of whole-slide images, with support for multi-dimensional data (2D, 3D, and time series).
- A **Python module** that leverages the same C++ codebase, providing a Pythonic interface for reading images into NumPy arrays.
Key features include:
- **Whole-slide reading**: Load entire slides or specific regions of interest.
- **Efficient scaling**: Rapidly generate scaled images from large slides using internal zoom pyramids.
- **Format flexibility**: Handle diverse medical and biological imaging formats through an extensible driver system.
### Supported Image Formats
The following table lists the currently implemented drivers and their corresponding file formats:
| **Driver** | **File Format** | **Extensions** | **Developer** | **Scanners** |
|------------|-----------------|----------------|---------------|--------------|
| **SVS** | [Aperio SVS](https://www.leicabiosystems.com/en-de/digital-pathology/manage/aperio-imagescope/) | *.svs | [Leica Microsystems](https://www.leicabiosystems.com/) | [Aperio GT 450 and Aperio GT 450 DX](https://www.leicabiosystems.com/en-de/digital-pathology/scan/) |
| **AFI** | [Aperio AFI (Fluorescent)](https://www.pathologynews.com/fileformats/leica-afi/) | *.afi | [Leica Microsystems](https://www.leicabiosystems.com/) | |
| **SCN** | [Leica SCN](https://www.leica-microsystems.com/) | *.scn | [Leica Microsystems](https://www.leicabiosystems.com/) | [Leica SCN400](https://www.leicabiosystems.com/en-de/news-events/leica-microsystems-launches-scn400-f-combined-fluorescence-and-brightfield-slide/) |
| **CZI** | [Zeiss CZI](https://www.zeiss.com/microscopy/en/products/software/zeiss-zen/czi-image-file-format.html) | *.czi | [Zeiss Microscopy](https://www.zeiss.com/microscopy/en/home.html?vaURL=www.zeiss.com/microscopy) | [ZEISS Axioscan 7](https://www.zeiss.com/microscopy/en/products/imaging-systems/axioscan-for-biology.html) |
| **ZVI** | Zeiss ZVI | *.zvi | [Zeiss Microscopy](https://www.zeiss.com/microscopy/en/home.html?vaURL=www.zeiss.com/microscopy) | |
| **DCM** | DICOM | *.dcm / no extension | - | - |
| **NDPI** | [Hamamatsu NDPI](https://www.hamamatsu.com/eu/en/product/life-science-and-medical-systems/digital-slide-scanner/U12388-01.html) | *.ndpi | [Hamamatsu](https://www.hamamatsu.com/eu/en.html) | |
| **VSI** | Olympus VSI | *.vsi | - | - |
| **QPTIFF** | PerkinElmer Vectra QPTIFF | *.qptiff | [Akoya Biosciences](https://www.akoyabio.com/software-data-analysis/) | [PerkinElmer Vectra](https://www.akoyabio.com/phenoimager/instruments/vectra-3-0/) |
| **GDAL** | Common image formats (JPEG, PNG, TIFF, etc.) | *.jpeg, *.jpg, *.tif, *.tiff, *.png | - | - |
To learn more about the library and additional features, visit the [SlideIO Website](https://booritas.github.io/slideio/).
---
## Building on Linux with the Manylinux Docker Container
Below are instructions for building the Python wheels within a manylinux environment.
1. **Clone Repositories**
```bash
git clone https://github.com/Booritas/slideio-python.git
git clone https://github.com/Booritas/conan-center-index.git
```
2. **Run the Docker Container**
Map the parent directory containing these repositories into the container:
```bash
docker run --name slideio -it \
-v /path-to-slideio-python-parent-directory:/slideio \
booritas/slideio-manylinux_2_28_x86_64:2.7.0 bash
```
3. **Set Environment Variables**
Within the container, point to the cloned repositories:
```bash
export SLIDEIO_HOME=/slideio/slideio-python
export CONAN_INDEX_HOME=/slideio/conan-center-index
```
4. **Build Custom Conan Packages**
```bash
cd /slideio/slideio-python
./conan.sh
```
5. **Install Conan Dependencies**
```bash
cd /slideio/slideio-python
python3 ./install.py -a conan -c release
```
6. **Build Python Wheels**
```bash
cd /slideio/slideio-python
./build-wheels-manylinux.sh
```
7. **Locate the Wheel Packages**
You can find the resulting wheel files in the `wheelhouse` subdirectory of the `slideio-python` repository.
---
## Contributing
Please submit pull requests or open issues if you have any suggestions or find any bugs. We welcome contributions from the community to improve the library and its Python bindings.
---
**Enjoy using SlideIO for your medical and digital pathology workflows!**
Raw data
{
"_id": null,
"home_page": null,
"name": "slideio",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "images, pathology, tissue, medical, czi, svs, afi, scn, ndpi",
"author": "Stanislav Melnikov",
"author_email": "stanislav.melnikov@gmail.com",
"download_url": null,
"platform": null,
"description": "# SlideIO Python Wrapper\n\nThis repository provides a Python interface to the **SlideIO** library, a high-performance C++ image-reading framework designed for medical and biological slides. With SlideIO, you can read whole-slide images, extract specific regions, and scale large slides efficiently. The Python wrapper integrates these capabilities into a convenient API, returning image data as NumPy arrays.\n\nLicense: BSD-3-Clause.\n\n---\n\n## References\n- [**SlideIO** GitHub Repository](https://github.com/Booritas/slideio)\n- [**SlideIO** Tutorial](https://github.com/Booritas/slideio-tutorial)\n- [**SlideIO** Website](https://www.slideio.com)\n- [**SlideIO** Python Documentation](https://www.slideio.com/sphinx/)\n- [*Using SlideIO Python Library for Image Analysis in Digital Pathology*](https://blog.gopenai.com/using-slideio-python-library-for-image-analysis-in-digital-pathology-ea9e71a4b430)\n- [*SlideIO: A New Python Library for Reading Medical Images*](https://towardsdatascience.com/slideio-a-new-python-library-for-reading-medical-images-11858a522059)\n\n---\n\n## Overview\n\n**SlideIO** is available as:\n- A **C++ library** for efficient reading of whole-slide images, with support for multi-dimensional data (2D, 3D, and time series).\n- A **Python module** that leverages the same C++ codebase, providing a Pythonic interface for reading images into NumPy arrays.\n\nKey features include:\n- **Whole-slide reading**: Load entire slides or specific regions of interest. \n- **Efficient scaling**: Rapidly generate scaled images from large slides using internal zoom pyramids. \n- **Format flexibility**: Handle diverse medical and biological imaging formats through an extensible driver system.\n\n### Supported Image Formats\n\nThe following table lists the currently implemented drivers and their corresponding file formats:\n\n| **Driver** | **File Format** | **Extensions** | **Developer** | **Scanners** |\n|------------|-----------------|----------------|---------------|--------------|\n| **SVS** | [Aperio SVS](https://www.leicabiosystems.com/en-de/digital-pathology/manage/aperio-imagescope/) | *.svs | [Leica Microsystems](https://www.leicabiosystems.com/) | [Aperio GT 450 and Aperio GT 450 DX](https://www.leicabiosystems.com/en-de/digital-pathology/scan/) |\n| **AFI** | [Aperio AFI (Fluorescent)](https://www.pathologynews.com/fileformats/leica-afi/) | *.afi | [Leica Microsystems](https://www.leicabiosystems.com/) | |\n| **SCN** | [Leica SCN](https://www.leica-microsystems.com/) | *.scn | [Leica Microsystems](https://www.leicabiosystems.com/) | [Leica SCN400](https://www.leicabiosystems.com/en-de/news-events/leica-microsystems-launches-scn400-f-combined-fluorescence-and-brightfield-slide/) |\n| **CZI** | [Zeiss CZI](https://www.zeiss.com/microscopy/en/products/software/zeiss-zen/czi-image-file-format.html) | *.czi | [Zeiss Microscopy](https://www.zeiss.com/microscopy/en/home.html?vaURL=www.zeiss.com/microscopy) | [ZEISS Axioscan 7](https://www.zeiss.com/microscopy/en/products/imaging-systems/axioscan-for-biology.html) |\n| **ZVI** | Zeiss ZVI | *.zvi | [Zeiss Microscopy](https://www.zeiss.com/microscopy/en/home.html?vaURL=www.zeiss.com/microscopy) | |\n| **DCM** | DICOM | *.dcm / no extension | - | - |\n| **NDPI** | [Hamamatsu NDPI](https://www.hamamatsu.com/eu/en/product/life-science-and-medical-systems/digital-slide-scanner/U12388-01.html) | *.ndpi | [Hamamatsu](https://www.hamamatsu.com/eu/en.html) | |\n| **VSI** | Olympus VSI | *.vsi | - | - |\n| **QPTIFF** | PerkinElmer Vectra QPTIFF | *.qptiff | [Akoya Biosciences](https://www.akoyabio.com/software-data-analysis/) | [PerkinElmer Vectra](https://www.akoyabio.com/phenoimager/instruments/vectra-3-0/) |\n| **GDAL** | Common image formats (JPEG, PNG, TIFF, etc.) | *.jpeg, *.jpg, *.tif, *.tiff, *.png | - | - |\n\nTo learn more about the library and additional features, visit the [SlideIO Website](https://booritas.github.io/slideio/).\n\n---\n\n## Building on Linux with the Manylinux Docker Container\n\nBelow are instructions for building the Python wheels within a manylinux environment.\n\n1. **Clone Repositories** \n ```bash\n git clone https://github.com/Booritas/slideio-python.git\n git clone https://github.com/Booritas/conan-center-index.git\n ```\n\n2. **Run the Docker Container** \n Map the parent directory containing these repositories into the container:\n ```bash\n docker run --name slideio -it \\\n -v /path-to-slideio-python-parent-directory:/slideio \\\n booritas/slideio-manylinux_2_28_x86_64:2.7.0 bash\n ```\n\n3. **Set Environment Variables** \n Within the container, point to the cloned repositories:\n ```bash\n export SLIDEIO_HOME=/slideio/slideio-python\n export CONAN_INDEX_HOME=/slideio/conan-center-index\n ```\n\n4. **Build Custom Conan Packages** \n ```bash\n cd /slideio/slideio-python\n ./conan.sh\n ```\n\n5. **Install Conan Dependencies** \n ```bash\n cd /slideio/slideio-python\n python3 ./install.py -a conan -c release\n ```\n\n6. **Build Python Wheels** \n ```bash\n cd /slideio/slideio-python\n ./build-wheels-manylinux.sh\n ```\n\n7. **Locate the Wheel Packages** \n You can find the resulting wheel files in the `wheelhouse` subdirectory of the `slideio-python` repository.\n\n---\n\n## Contributing\nPlease submit pull requests or open issues if you have any suggestions or find any bugs. We welcome contributions from the community to improve the library and its Python bindings.\n\n---\n\n**Enjoy using SlideIO for your medical and digital pathology workflows!**\n",
"bugtrack_url": null,
"license": null,
"summary": "Reading of medical images",
"version": "2.7.0",
"project_urls": {
"Documentation": "http://slideio.com",
"Source Code": "https://github.com/Booritas/slideio"
},
"split_keywords": [
"images",
" pathology",
" tissue",
" medical",
" czi",
" svs",
" afi",
" scn",
" ndpi"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "3b890d2919e84e60c66dedb1b08c9a0f87e2f336cf803395ec62735d0131b76f",
"md5": "e85d13ea52663f759b2117581cfd718f",
"sha256": "29bfe9bbecfeb55c693e3d10a40a22ff3d25989bd8c2f6e8143f10eaa3993e00"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp310-cp310-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "e85d13ea52663f759b2117581cfd718f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 24385892,
"upload_time": "2025-02-09T17:34:30",
"upload_time_iso_8601": "2025-02-09T17:34:30.628129Z",
"url": "https://files.pythonhosted.org/packages/3b/89/0d2919e84e60c66dedb1b08c9a0f87e2f336cf803395ec62735d0131b76f/slideio-2.7.0-cp310-cp310-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfceafbf68c3ae80999f8a005aa0accf56b2bd5b109c0f5d75b2af02ba685c41",
"md5": "b793acbfafaf6564ad0140f00085e17a",
"sha256": "ba347b986d08c9bf6ed9915f9ab6119a1ae01b1b9fd790152a9f83daa53da50e"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b793acbfafaf6564ad0140f00085e17a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 20394411,
"upload_time": "2025-02-09T17:33:35",
"upload_time_iso_8601": "2025-02-09T17:33:35.946006Z",
"url": "https://files.pythonhosted.org/packages/cf/ce/afbf68c3ae80999f8a005aa0accf56b2bd5b109c0f5d75b2af02ba685c41/slideio-2.7.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "acc0ac8fa4c583be8085a02aa6410b6927d1774206ae5f0104399c1af6d3ee6e",
"md5": "eb73d4288f580e36c84aa53004686d44",
"sha256": "b49532b23e72cf8e0b9c91117a3514c01e8fbb1d04b14c74e710805eaf362c73"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "eb73d4288f580e36c84aa53004686d44",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 55212745,
"upload_time": "2025-02-09T17:32:03",
"upload_time_iso_8601": "2025-02-09T17:32:03.461067Z",
"url": "https://files.pythonhosted.org/packages/ac/c0/ac8fa4c583be8085a02aa6410b6927d1774206ae5f0104399c1af6d3ee6e/slideio-2.7.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5d1c57ee1474d5f5786c61935d54988e7b40730a56bbb94faa86dd11f9237a21",
"md5": "88ad8cc64a3842b57e37ab92f4e10e8c",
"sha256": "1f002c2a4bb5ca2afb8a0fb6885a9706c86bb28ee2c8023a6605a40b83bcd1aa"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "88ad8cc64a3842b57e37ab92f4e10e8c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 41907801,
"upload_time": "2025-02-09T17:35:40",
"upload_time_iso_8601": "2025-02-09T17:35:40.264375Z",
"url": "https://files.pythonhosted.org/packages/5d/1c/57ee1474d5f5786c61935d54988e7b40730a56bbb94faa86dd11f9237a21/slideio-2.7.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9ec7c33167f9e441c3d65842d0ffba6b934d399f1a59e9d4b4e784e133ce3b8",
"md5": "4cbb3761158e3e720a8e3204dbecc6d9",
"sha256": "22d2e45355c3984401ee8db7a2463fba6f281ddc90c2fc10ca9f071764896f58"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp311-cp311-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "4cbb3761158e3e720a8e3204dbecc6d9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 24387243,
"upload_time": "2025-02-09T17:34:35",
"upload_time_iso_8601": "2025-02-09T17:34:35.500362Z",
"url": "https://files.pythonhosted.org/packages/b9/ec/7c33167f9e441c3d65842d0ffba6b934d399f1a59e9d4b4e784e133ce3b8/slideio-2.7.0-cp311-cp311-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ddf49e322d43aba31205aa6f73025881dbe87aff63529674cb0d834bce69d30",
"md5": "b6ccc8f1f727f2f7d9d64f4a3b236396",
"sha256": "d93650eda1fe73d852f6981dcc7a5ebceb5964c6c66ba0e48c88e76fe4c63aa2"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b6ccc8f1f727f2f7d9d64f4a3b236396",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 20395882,
"upload_time": "2025-02-09T17:33:40",
"upload_time_iso_8601": "2025-02-09T17:33:40.239249Z",
"url": "https://files.pythonhosted.org/packages/7d/df/49e322d43aba31205aa6f73025881dbe87aff63529674cb0d834bce69d30/slideio-2.7.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "621d82ddf3a93c13cde782bd99b1b72475ed5b75d5ec2b44ca2309c115402508",
"md5": "5a8645443d37189766ccf63e43d5f200",
"sha256": "2fc0398a4cecf153e724a8bc3266535f43b4fae30ed27cb910b9bc04a8fa28e1"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "5a8645443d37189766ccf63e43d5f200",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 55214165,
"upload_time": "2025-02-09T17:32:14",
"upload_time_iso_8601": "2025-02-09T17:32:14.777261Z",
"url": "https://files.pythonhosted.org/packages/62/1d/82ddf3a93c13cde782bd99b1b72475ed5b75d5ec2b44ca2309c115402508/slideio-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f91c72f7b1df361da087ab7f6ee3bb19d0249b9bf42b7725ea99610a8936ca3c",
"md5": "4e6563986b4e894d6be14d74688ca69b",
"sha256": "8c89f824afd4c63692bb8abb325bc61b1d089bf27b85143fdebe9ef65f678df2"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "4e6563986b4e894d6be14d74688ca69b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 41908916,
"upload_time": "2025-02-09T17:35:49",
"upload_time_iso_8601": "2025-02-09T17:35:49.819725Z",
"url": "https://files.pythonhosted.org/packages/f9/1c/72f7b1df361da087ab7f6ee3bb19d0249b9bf42b7725ea99610a8936ca3c/slideio-2.7.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "34002cdf3567d9fe80fef4c2daeb7fca198560713d57164b82dbcedd9f91f7bb",
"md5": "08f5cb078e1ebfd44e707f7637a6d01c",
"sha256": "f2d978e763325ee35e247db79c193f4b9823171d63e5853b00b3240cf63b08d8"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp312-cp312-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "08f5cb078e1ebfd44e707f7637a6d01c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 24388220,
"upload_time": "2025-02-09T17:34:40",
"upload_time_iso_8601": "2025-02-09T17:34:40.865798Z",
"url": "https://files.pythonhosted.org/packages/34/00/2cdf3567d9fe80fef4c2daeb7fca198560713d57164b82dbcedd9f91f7bb/slideio-2.7.0-cp312-cp312-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "83f8a0ef621adb895399a573f8380134b4904a802462069e97a572ebede51089",
"md5": "f0ff21aa404d455d71546da989665890",
"sha256": "aa9901bf46079d909c5bc3fe523ef9bc55a116edd0d5d116fd592d7aee65c0cb"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f0ff21aa404d455d71546da989665890",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 20396323,
"upload_time": "2025-02-09T17:33:44",
"upload_time_iso_8601": "2025-02-09T17:33:44.188446Z",
"url": "https://files.pythonhosted.org/packages/83/f8/a0ef621adb895399a573f8380134b4904a802462069e97a572ebede51089/slideio-2.7.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f478e992e91232de1b5d65708db6aca47b49c4f6a1137561a6f2a2ba1e0c5a04",
"md5": "c09e7fe21f118f6f467c39188c4cb7b1",
"sha256": "7384852cb96da89957cdddde1286a15025141e06977278e78d808aea448594ae"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c09e7fe21f118f6f467c39188c4cb7b1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 55215049,
"upload_time": "2025-02-09T17:32:24",
"upload_time_iso_8601": "2025-02-09T17:32:24.472057Z",
"url": "https://files.pythonhosted.org/packages/f4/78/e992e91232de1b5d65708db6aca47b49c4f6a1137561a6f2a2ba1e0c5a04/slideio-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec0bafff6373c0ee8f5baded9515468b2adad4ef3bde845a468108d5fce7e1b1",
"md5": "5d2edad2c8345ce2b18344a80ab8c444",
"sha256": "3a5a24814820440e783dbc3266fced0a40bea022374d7ec793d2dff7b1d2fde9"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "5d2edad2c8345ce2b18344a80ab8c444",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 41909584,
"upload_time": "2025-02-09T17:35:57",
"upload_time_iso_8601": "2025-02-09T17:35:57.455887Z",
"url": "https://files.pythonhosted.org/packages/ec/0b/afff6373c0ee8f5baded9515468b2adad4ef3bde845a468108d5fce7e1b1/slideio-2.7.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96cd25e595a633565659caa202d3cc45f2c6d6da29d34c92a067385c2b9e9d12",
"md5": "1427760656d174728fde06e4f323da2b",
"sha256": "c884e70dee536efe4cece5983c25df19514b6cf054c1bb29cb975e327bd57c52"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp313-cp313-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "1427760656d174728fde06e4f323da2b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 24388324,
"upload_time": "2025-02-09T17:34:46",
"upload_time_iso_8601": "2025-02-09T17:34:46.401930Z",
"url": "https://files.pythonhosted.org/packages/96/cd/25e595a633565659caa202d3cc45f2c6d6da29d34c92a067385c2b9e9d12/slideio-2.7.0-cp313-cp313-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "74c3bee5fc9ef86e108ccd4d70f021882bb368a24771998e9308e05f599cdab9",
"md5": "91a43a07a00a24e73b392cf575dfdd7f",
"sha256": "8563c92bc99d975d440ff580122093a19f1475f744591e02ced70a02cf81a7d6"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "91a43a07a00a24e73b392cf575dfdd7f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 20396409,
"upload_time": "2025-02-09T17:33:48",
"upload_time_iso_8601": "2025-02-09T17:33:48.239744Z",
"url": "https://files.pythonhosted.org/packages/74/c3/bee5fc9ef86e108ccd4d70f021882bb368a24771998e9308e05f599cdab9/slideio-2.7.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "575df21f39f9b739b2063eaa3bf04ff8ebcd24fab0f06feff2477a83df6e1b79",
"md5": "eedf69beabbfe710b5e33a62dc3b7a0b",
"sha256": "9eaf875e04eb579a40cb44ed2f0f1321c5081690794d07640928e70cee8a5b55"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "eedf69beabbfe710b5e33a62dc3b7a0b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 55215981,
"upload_time": "2025-02-09T17:32:33",
"upload_time_iso_8601": "2025-02-09T17:32:33.669912Z",
"url": "https://files.pythonhosted.org/packages/57/5d/f21f39f9b739b2063eaa3bf04ff8ebcd24fab0f06feff2477a83df6e1b79/slideio-2.7.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "104db6b201ed1a56a89f50562bfd18c0bee1b12ca59fa0801d90d4e22fda9565",
"md5": "194b856db5dcf038f387d4b5508ef5c9",
"sha256": "9ea2250e9121f88180c3fe05f487a897e7990f26c9aabef9baaaa0baa884cbec"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "194b856db5dcf038f387d4b5508ef5c9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 41909612,
"upload_time": "2025-02-09T17:36:04",
"upload_time_iso_8601": "2025-02-09T17:36:04.469659Z",
"url": "https://files.pythonhosted.org/packages/10/4d/b6b201ed1a56a89f50562bfd18c0bee1b12ca59fa0801d90d4e22fda9565/slideio-2.7.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0b8ab83ed7d1193e742961af8255e0f368366b36b74339119abe9645e1c2c83",
"md5": "44a5a1f000aac7d8c9bc4eefed5a4afb",
"sha256": "2cf4edcea34bb469df5e263000448038bca2dca9f5d9e7bef3ea2209c27a7a24"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp37-cp37m-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "44a5a1f000aac7d8c9bc4eefed5a4afb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 24383724,
"upload_time": "2025-02-09T17:34:50",
"upload_time_iso_8601": "2025-02-09T17:34:50.869953Z",
"url": "https://files.pythonhosted.org/packages/e0/b8/ab83ed7d1193e742961af8255e0f368366b36b74339119abe9645e1c2c83/slideio-2.7.0-cp37-cp37m-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c6bbbbce28b812075a7213faf03f0136762a767c0b07ff1c4cefaf303dee3c8",
"md5": "c50682ded81297f0be7a4e2c4c4e960e",
"sha256": "2217acd69751e83704bf395011bb22dab36302af644eb3163decc7425ec3c251"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp37-cp37m-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c50682ded81297f0be7a4e2c4c4e960e",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 55221760,
"upload_time": "2025-02-09T17:32:43",
"upload_time_iso_8601": "2025-02-09T17:32:43.229485Z",
"url": "https://files.pythonhosted.org/packages/1c/6b/bbbce28b812075a7213faf03f0136762a767c0b07ff1c4cefaf303dee3c8/slideio-2.7.0-cp37-cp37m-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0295b17cbe23669cf278b71c2506cbd5af6e015720568f733c999dab5a159986",
"md5": "af89e99ba7cf675ff716ad8817b0521a",
"sha256": "4399b24b2d5dce90038d0f0656c715ed86c7187327a7afd49fe42b6b586ee5c2"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "af89e99ba7cf675ff716ad8817b0521a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 41907293,
"upload_time": "2025-02-09T17:36:11",
"upload_time_iso_8601": "2025-02-09T17:36:11.767776Z",
"url": "https://files.pythonhosted.org/packages/02/95/b17cbe23669cf278b71c2506cbd5af6e015720568f733c999dab5a159986/slideio-2.7.0-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "925efb7eb1566c95844284b5808ac5a5442c4326433a92483d7710b71c611997",
"md5": "a91fa32f113926e64eab52bcf009cd66",
"sha256": "6ebcf1c18ae379514f0a0a38ca4d5ecccbc1367d37e73f9f45daaca0fdcc4166"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp38-cp38-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "a91fa32f113926e64eab52bcf009cd66",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 24385740,
"upload_time": "2025-02-09T17:34:55",
"upload_time_iso_8601": "2025-02-09T17:34:55.463648Z",
"url": "https://files.pythonhosted.org/packages/92/5e/fb7eb1566c95844284b5808ac5a5442c4326433a92483d7710b71c611997/slideio-2.7.0-cp38-cp38-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8cee17338979195b56284e440c2530196bae1d386b77bf801a3c846834b13ed",
"md5": "fea3f9105b8f84399e482d334f6c4bce",
"sha256": "7b588bbafabeb1241577cba7bae5eedf9dac3afe8c59f0a6a18dbd381e1b1278"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fea3f9105b8f84399e482d334f6c4bce",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 20394218,
"upload_time": "2025-02-09T17:33:52",
"upload_time_iso_8601": "2025-02-09T17:33:52.269142Z",
"url": "https://files.pythonhosted.org/packages/d8/ce/e17338979195b56284e440c2530196bae1d386b77bf801a3c846834b13ed/slideio-2.7.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "81cf71ba1e6849d949795cb75dc6d887fc5ddf384e9717990484479876d82e25",
"md5": "c68f2cec20108a751d129d97dcb5fad6",
"sha256": "7b010a2e68e589852e84defc6f2309e433e98167c9cdf9987470c46af8e6468c"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp38-cp38-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c68f2cec20108a751d129d97dcb5fad6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 55212376,
"upload_time": "2025-02-09T17:32:52",
"upload_time_iso_8601": "2025-02-09T17:32:52.880125Z",
"url": "https://files.pythonhosted.org/packages/81/cf/71ba1e6849d949795cb75dc6d887fc5ddf384e9717990484479876d82e25/slideio-2.7.0-cp38-cp38-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa731e7f537ce1bc846dfc1437a4f15fe68daa1ba9279fffc27949615f36e9b6",
"md5": "e6cd0018635383b3d30ade9f831fe5bc",
"sha256": "7ef4edcb5b26315d2446acc177145c263f76656b454e95b5294170dad64cbf61"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "e6cd0018635383b3d30ade9f831fe5bc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 41907810,
"upload_time": "2025-02-09T17:36:18",
"upload_time_iso_8601": "2025-02-09T17:36:18.723964Z",
"url": "https://files.pythonhosted.org/packages/fa/73/1e7f537ce1bc846dfc1437a4f15fe68daa1ba9279fffc27949615f36e9b6/slideio-2.7.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9c9a2df0c8931f3f4653987343884770d46d90123c38b37a2e32e109e49a8590",
"md5": "366abdd7544b28da57749c09650c28a6",
"sha256": "2b4c7e48b2d88d11618873397a3eff5144aafa096536bffbccc457926ae25355"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp39-cp39-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "366abdd7544b28da57749c09650c28a6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 24385961,
"upload_time": "2025-02-09T17:34:59",
"upload_time_iso_8601": "2025-02-09T17:34:59.899977Z",
"url": "https://files.pythonhosted.org/packages/9c/9a/2df0c8931f3f4653987343884770d46d90123c38b37a2e32e109e49a8590/slideio-2.7.0-cp39-cp39-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f11fcc05c7071af9fa2b144a86cb66812c1defea3a57b8329fa75d1df83cec6c",
"md5": "a2cd8f3749831ccab57e5932a2ca96e0",
"sha256": "5762103afc14a6030a902292bdbcfd50615e0a677f6bc6a742121d86ed369801"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a2cd8f3749831ccab57e5932a2ca96e0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 20394537,
"upload_time": "2025-02-09T17:33:56",
"upload_time_iso_8601": "2025-02-09T17:33:56.685995Z",
"url": "https://files.pythonhosted.org/packages/f1/1f/cc05c7071af9fa2b144a86cb66812c1defea3a57b8329fa75d1df83cec6c/slideio-2.7.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1dfe07dfe0386da020201c2a6191136789c881b8dcd87147734b394d882aeddd",
"md5": "217f00c0faf29f93818343fea5f59793",
"sha256": "8ecc653f8ff0d2aafb35cdc0558af911816427cd92673f176942ccbc90066240"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "217f00c0faf29f93818343fea5f59793",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 55212890,
"upload_time": "2025-02-09T17:33:03",
"upload_time_iso_8601": "2025-02-09T17:33:03.955788Z",
"url": "https://files.pythonhosted.org/packages/1d/fe/07dfe0386da020201c2a6191136789c881b8dcd87147734b394d882aeddd/slideio-2.7.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a7d7201b234138495d975be3541e9f6f5a4b7c8130121a2580a72581f2372c2",
"md5": "e3aa22f2a42de6b09ee0198072e8568a",
"sha256": "bdc5c3bf39db687e1c97f9c71135b98bdc24096d0f15cd5cf5040f700c1598b2"
},
"downloads": -1,
"filename": "slideio-2.7.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "e3aa22f2a42de6b09ee0198072e8568a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 41902128,
"upload_time": "2025-02-09T17:36:26",
"upload_time_iso_8601": "2025-02-09T17:36:26.143007Z",
"url": "https://files.pythonhosted.org/packages/2a/7d/7201b234138495d975be3541e9f6f5a4b7c8130121a2580a72581f2372c2/slideio-2.7.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-09 17:34:30",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Booritas",
"github_project": "slideio",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "slideio"
}