depthai


Namedepthai JSON
Version 2.25.1.0 PyPI version JSON
download
home_pagehttps://github.com/luxonis/depthai-python
SummaryDepthAI Python Library
upload_time2024-04-22 14:37:22
maintainerNone
docs_urlNone
authorLuxonis
requires_python>=3.6
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # DepthAI Python Library

[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
[![](https://img.shields.io/pypi/v/depthai.svg)](https://pypi.org/project/depthai/)
[![Python Wheel CI](https://github.com/luxonis/depthai-python/actions/workflows/main.yml/badge.svg?branch=gen2_develop)](https://github.com/luxonis/depthai-python/actions/workflows/main.yml)

Python bindings for C++ depthai-core library

## Documentation

Documentation is available over at [Luxonis DepthAI API](https://docs.luxonis.com/projects/api/en/latest/)

## Installation

Prebuilt wheels are available in [Luxonis repository](https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/)
Make sure pip is upgraded
```
python3 -m pip install -U pip
python3 -m pip install --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/ depthai
```
## Building from source

### Dependencies
 - cmake >= 3.4
 - C++14 compiler (clang, gcc, msvc, ...)
 - Python3

Along these, dependencies of depthai-core are also required
See: [depthai-core dependencies](https://github.com/luxonis/depthai-core#dependencies)


### Building

The first time you build, the repository submodules need be initialized:
```
git submodule update --init --recursive

# Tip: You can ask Git to do that automatically:
git config submodule.recurse true
```

Later submodules also need to be updated.

#### Local build with pip
To build and install using pip:
```
python3 -m pip install .
```
Add parameter `-v` to see the output of the building process.

#### Wheel with pip
To build a wheel, execute the following
```
python3 -m pip wheel . -w wheelhouse
```

#### Shared library
To build a shared library from source perform the following:

> ℹ️ To speed up build times, use `cmake --build build --parallel [num CPU cores]` (CMake >= 3.12).
For older versions use: Linux/macOS: `cmake --build build -- -j[num CPU cores]`, MSVC: `cmake --build build -- /MP[num CPU cores]`

```
cmake -H. -Bbuild
cmake --build build
```
To specify custom Python executable to build for, use `cmake -H. -Bbuild -D PYTHON_EXECUTABLE=/full/path/to/python`.

#### Common issues

* Many build fails due to missing dependencies. This also happens when submodules are missing or outdated (`git submodule update --recursive`).
* If libraries and headers are not in standard places, or not on the search paths, CMake reports it cannot find what it needs (e.g. `libusb`). CMake can be hinted at where to look, for exmpale: `CMAKE_LIBRARY_PATH=/opt/local/lib CMAKE_INCLUDE_PATH=/opt/local/include pip install .`
* Some distribution installers may not get the desired library. For example, an install on a RaspberryPi failed, missing `libusb`, as the default installation with APT led to v0.1.3 at the time, whereas the library here required v1.0.


## Running tests

To run the tests build the library with the following options
```
git submodule update --init --recursive
cmake -H. -Bbuild -D DEPTHAI_PYTHON_ENABLE_TESTS=ON -D DEPTHAI_PYTHON_ENABLE_EXAMPLES=ON -D DEPTHAI_PYTHON_TEST_EXAMPLES=ON
cmake --build build
```

Then navigate to `build` folder and run `ctest`
```
cd build
ctest
```

To test a specific example/test with a custom timeout (in seconds) use following:
```
TEST_TIMEOUT=0 ctest -R "01_rgb_preview" --verbose
```
If `TEST_TIMEOUT=0`, the test will run until stopped or it ends.

## Tested platforms

- Windows 10, Windows 11
- Ubuntu 18.04, 20.04, 22.04;
- Raspbian 10;
- macOS 10.14.6, 10.15.4;

### Building documentation

- **Using [Docker](https://docs.docker.com/) (with [Docker Compose](https://docs.docker.com/compose/install/))**

     ```
     cd docs
     sudo docker-compose build
     sudo docker-compose up
     ```

     > ℹ️ You can leave out the `sudo` if you have added your user to the `docker` group (or are using rootless docker).
     Then open [http://localhost:8000](http://localhost:8000).

     This docker container will watch changes in the `docs/source` directory and rebuild the docs automatically

- **Linux**

     First, please install the required [dependencies](#Dependencies)

     Then run the following commands to build the docs website

     ```
     python3 -m pip install -U pip
     python3 -m pip install -r docs/requirements.txt
     cmake -H. -Bbuild -D DEPTHAI_BUILD_DOCS=ON -D DEPTHAI_PYTHON_BUILD_DOCS=ON
     cmake --build build --target sphinx
     python3 -m http.server --bind 0.0.0.0 8000 --directory build/docs/sphinx
     ```

     Then open [http://localhost:8000](http://localhost:8000).

     This will build documentation based on current sources, so if some new changes will be made, run this command
     in a new terminal window to update the website source

     ```
     cmake --build build --target sphinx
     ```

     Then refresh your page - it should load the updated website that was just built

## Troubleshooting

### Relocation link error

Build failure on Ubuntu 18.04 ("relocation ..." link error) with gcc 7.4.0 (default) - [**issue #3**](https://github.com/luxonis/depthai-api/issues/3)
   - the solution was to upgrade gcc to version 8:

         sudo apt install g++-8
         sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 70
         sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 70
### Hunter
Hunter is a CMake-only dependency manager for C/C++ projects.

If you are stuck with error message which mentions external libraries (subdirectory of `.hunter`) like the following:
```
/usr/bin/ld: /home/[user]/.hunter/_Base/062a19a/ccfed35/a84a713/Install/lib/liblzma.a(stream_flags_decoder.c.o): warning: relocation against `lzma_footer_magic' in read-only section `.text'
```

Try erasing the **Hunter** **cache** folder.

Linux/MacOS:
```
rm -r ~/.hunter
```
Windows:
```
del C:/.hunter
```
or
```
del C:/[user]/.hunter
```

### LTO - link time optimization

If following message appears:
```
lto1: internal compiler error: in add_symbol_to_partition_1, at lto/lto-partition.c:152
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-10/README.Bugs> for instructions.
lto-wrapper: fatal error: /usr/bin/c++ returned 1 exit status
compilation terminated.
/usr/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status
make[2]: *** [CMakeFiles/depthai.dir/build.make:227: depthai.cpython-38-x86_64-linux-gnu.so] Error 1
make[1]: *** [CMakeFiles/Makefile2:98: CMakeFiles/depthai.dir/all] Error 2
make: *** [Makefile:130: all] Error 2
```

One fix is to update linker: (In case you are on Ubuntu 20.04: `/usr/bin/ld --version`: 2.30)
```
# Add to the end of /etc/apt/sources.list:

echo "deb http://ro.archive.ubuntu.com/ubuntu groovy main" >> /etc/apt/sources.list

# Replace ro with your countries local cache server (check the content of the file to find out which is)
# Not mandatory, but faster

sudo apt update
sudo apt install binutils

# Should upgrade to 2.35.1
# Check version:
/usr/bin/ld --version
# Output should be: GNU ld (GNU Binutils for Ubuntu) 2.35.1
# Revert /etc/apt/sources.list to previous state (comment out line) to prevent updating other packages.
sudo apt update
```

Another option is to use **clang** compiler:
```
sudo apt install clang-10
mkdir build && cd build
CC=clang-10 CXX=clang++-10 cmake ..
cmake --build . --parallel
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/luxonis/depthai-python",
    "name": "depthai",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": "Luxonis",
    "author_email": "support@luxonis.com",
    "download_url": "https://files.pythonhosted.org/packages/5a/76/4527969f65a27adad6629e186b2bd4b0ab290f01a04de2832ce6106ab89e/depthai-2.25.1.0.tar.gz",
    "platform": null,
    "description": "# DepthAI Python Library\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![](https://img.shields.io/pypi/v/depthai.svg)](https://pypi.org/project/depthai/)\n[![Python Wheel CI](https://github.com/luxonis/depthai-python/actions/workflows/main.yml/badge.svg?branch=gen2_develop)](https://github.com/luxonis/depthai-python/actions/workflows/main.yml)\n\nPython bindings for C++ depthai-core library\n\n## Documentation\n\nDocumentation is available over at [Luxonis DepthAI API](https://docs.luxonis.com/projects/api/en/latest/)\n\n## Installation\n\nPrebuilt wheels are available in [Luxonis repository](https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/)\nMake sure pip is upgraded\n```\npython3 -m pip install -U pip\npython3 -m pip install --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/ depthai\n```\n## Building from source\n\n### Dependencies\n - cmake >= 3.4\n - C++14 compiler (clang, gcc, msvc, ...)\n - Python3\n\nAlong these, dependencies of depthai-core are also required\nSee: [depthai-core dependencies](https://github.com/luxonis/depthai-core#dependencies)\n\n\n### Building\n\nThe first time you build, the repository submodules need be initialized:\n```\ngit submodule update --init --recursive\n\n# Tip: You can ask Git to do that automatically:\ngit config submodule.recurse true\n```\n\nLater submodules also need to be updated.\n\n#### Local build with pip\nTo build and install using pip:\n```\npython3 -m pip install .\n```\nAdd parameter `-v` to see the output of the building process.\n\n#### Wheel with pip\nTo build a wheel, execute the following\n```\npython3 -m pip wheel . -w wheelhouse\n```\n\n#### Shared library\nTo build a shared library from source perform the following:\n\n> \u2139\ufe0f To speed up build times, use `cmake --build build --parallel [num CPU cores]` (CMake >= 3.12).\nFor older versions use: Linux/macOS: `cmake --build build -- -j[num CPU cores]`, MSVC: `cmake --build build -- /MP[num CPU cores]`\n\n```\ncmake -H. -Bbuild\ncmake --build build\n```\nTo specify custom Python executable to build for, use `cmake -H. -Bbuild -D PYTHON_EXECUTABLE=/full/path/to/python`.\n\n#### Common issues\n\n* Many build fails due to missing dependencies. This also happens when submodules are missing or outdated (`git submodule update --recursive`).\n* If libraries and headers are not in standard places, or not on the search paths, CMake reports it cannot find what it needs (e.g. `libusb`). CMake can be hinted at where to look, for exmpale: `CMAKE_LIBRARY_PATH=/opt/local/lib CMAKE_INCLUDE_PATH=/opt/local/include pip install .`\n* Some distribution installers may not get the desired library. For example, an install on a RaspberryPi failed, missing `libusb`, as the default installation with APT led to v0.1.3 at the time, whereas the library here required v1.0.\n\n\n## Running tests\n\nTo run the tests build the library with the following options\n```\ngit submodule update --init --recursive\ncmake -H. -Bbuild -D DEPTHAI_PYTHON_ENABLE_TESTS=ON -D DEPTHAI_PYTHON_ENABLE_EXAMPLES=ON -D DEPTHAI_PYTHON_TEST_EXAMPLES=ON\ncmake --build build\n```\n\nThen navigate to `build` folder and run `ctest`\n```\ncd build\nctest\n```\n\nTo test a specific example/test with a custom timeout (in seconds) use following:\n```\nTEST_TIMEOUT=0 ctest -R \"01_rgb_preview\" --verbose\n```\nIf `TEST_TIMEOUT=0`, the test will run until stopped or it ends.\n\n## Tested platforms\n\n- Windows 10, Windows 11\n- Ubuntu 18.04, 20.04, 22.04;\n- Raspbian 10;\n- macOS 10.14.6, 10.15.4;\n\n### Building documentation\n\n- **Using [Docker](https://docs.docker.com/) (with [Docker Compose](https://docs.docker.com/compose/install/))**\n\n     ```\n     cd docs\n     sudo docker-compose build\n     sudo docker-compose up\n     ```\n\n     > \u2139\ufe0f You can leave out the `sudo` if you have added your user to the `docker` group (or are using rootless docker).\n     Then open [http://localhost:8000](http://localhost:8000).\n\n     This docker container will watch changes in the `docs/source` directory and rebuild the docs automatically\n\n- **Linux**\n\n     First, please install the required [dependencies](#Dependencies)\n\n     Then run the following commands to build the docs website\n\n     ```\n     python3 -m pip install -U pip\n     python3 -m pip install -r docs/requirements.txt\n     cmake -H. -Bbuild -D DEPTHAI_BUILD_DOCS=ON -D DEPTHAI_PYTHON_BUILD_DOCS=ON\n     cmake --build build --target sphinx\n     python3 -m http.server --bind 0.0.0.0 8000 --directory build/docs/sphinx\n     ```\n\n     Then open [http://localhost:8000](http://localhost:8000).\n\n     This will build documentation based on current sources, so if some new changes will be made, run this command\n     in a new terminal window to update the website source\n\n     ```\n     cmake --build build --target sphinx\n     ```\n\n     Then refresh your page - it should load the updated website that was just built\n\n## Troubleshooting\n\n### Relocation link error\n\nBuild failure on Ubuntu 18.04 (\"relocation ...\" link error) with gcc 7.4.0 (default) - [**issue #3**](https://github.com/luxonis/depthai-api/issues/3)\n   - the solution was to upgrade gcc to version 8:\n\n         sudo apt install g++-8\n         sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 70\n         sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 70\n### Hunter\nHunter is a CMake-only dependency manager for C/C++ projects.\n\nIf you are stuck with error message which mentions external libraries (subdirectory of `.hunter`) like the following:\n```\n/usr/bin/ld: /home/[user]/.hunter/_Base/062a19a/ccfed35/a84a713/Install/lib/liblzma.a(stream_flags_decoder.c.o): warning: relocation against `lzma_footer_magic' in read-only section `.text'\n```\n\nTry erasing the **Hunter** **cache** folder.\n\nLinux/MacOS:\n```\nrm -r ~/.hunter\n```\nWindows:\n```\ndel C:/.hunter\n```\nor\n```\ndel C:/[user]/.hunter\n```\n\n### LTO - link time optimization\n\nIf following message appears:\n```\nlto1: internal compiler error: in add_symbol_to_partition_1, at lto/lto-partition.c:152\nPlease submit a full bug report,\nwith preprocessed source if appropriate.\nSee <file:///usr/share/doc/gcc-10/README.Bugs> for instructions.\nlto-wrapper: fatal error: /usr/bin/c++ returned 1 exit status\ncompilation terminated.\n/usr/bin/ld: error: lto-wrapper failed\ncollect2: error: ld returned 1 exit status\nmake[2]: *** [CMakeFiles/depthai.dir/build.make:227: depthai.cpython-38-x86_64-linux-gnu.so] Error 1\nmake[1]: *** [CMakeFiles/Makefile2:98: CMakeFiles/depthai.dir/all] Error 2\nmake: *** [Makefile:130: all] Error 2\n```\n\nOne fix is to update linker: (In case you are on Ubuntu 20.04: `/usr/bin/ld --version`: 2.30)\n```\n# Add to the end of /etc/apt/sources.list:\n\necho \"deb http://ro.archive.ubuntu.com/ubuntu groovy main\" >> /etc/apt/sources.list\n\n# Replace ro with your countries local cache server (check the content of the file to find out which is)\n# Not mandatory, but faster\n\nsudo apt update\nsudo apt install binutils\n\n# Should upgrade to 2.35.1\n# Check version:\n/usr/bin/ld --version\n# Output should be: GNU ld (GNU Binutils for Ubuntu) 2.35.1\n# Revert /etc/apt/sources.list to previous state (comment out line) to prevent updating other packages.\nsudo apt update\n```\n\nAnother option is to use **clang** compiler:\n```\nsudo apt install clang-10\nmkdir build && cd build\nCC=clang-10 CXX=clang++-10 cmake ..\ncmake --build . --parallel\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "DepthAI Python Library",
    "version": "2.25.1.0",
    "project_urls": {
        "Homepage": "https://github.com/luxonis/depthai-python"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38085dd419996b21e24383a8d11d4f54bd6bb0355a788a16a022e0b9c0aa407d",
                "md5": "67d9f471c87907d2d42ce213623c0a2b",
                "sha256": "635c56f2e216f14c65bf7a46ef246301f51e7e6bb151969ce354a068c9988941"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "67d9f471c87907d2d42ce213623c0a2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 10758951,
            "upload_time": "2024-04-22T14:35:09",
            "upload_time_iso_8601": "2024-04-22T14:35:09.000500Z",
            "url": "https://files.pythonhosted.org/packages/38/08/5dd419996b21e24383a8d11d4f54bd6bb0355a788a16a022e0b9c0aa407d/depthai-2.25.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58446b5e385747067f2c91d7c71e2d997812f9aa9e4b8468255d59eb88e7cb61",
                "md5": "292762b5e6ca3785e4af8f2f12087160",
                "sha256": "749e4e0dfe1a25c8100e42eb8b64eb6237b799555921960db0d5316a63c64fe1"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "292762b5e6ca3785e4af8f2f12087160",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 11115137,
            "upload_time": "2024-04-22T14:35:13",
            "upload_time_iso_8601": "2024-04-22T14:35:13.836502Z",
            "url": "https://files.pythonhosted.org/packages/58/44/6b5e385747067f2c91d7c71e2d997812f9aa9e4b8468255d59eb88e7cb61/depthai-2.25.1.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b656322dcd05d8edaf8c4dcf18552e1c20fcb7d4b0e3144e36b4ffaa5c9b4fbd",
                "md5": "46108fe5e14af41028558769c3f126f8",
                "sha256": "24d46bce940e47191f6d7e3b1e25fba789f30acb89b00652c4579b655af663c0"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "46108fe5e14af41028558769c3f126f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 11028309,
            "upload_time": "2024-04-22T14:35:16",
            "upload_time_iso_8601": "2024-04-22T14:35:16.724691Z",
            "url": "https://files.pythonhosted.org/packages/b6/56/322dcd05d8edaf8c4dcf18552e1c20fcb7d4b0e3144e36b4ffaa5c9b4fbd/depthai-2.25.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11e7394b98af4b3b18521b51b5b27a0d3e954e355a2a33e8a412e0b9376e2f1f",
                "md5": "9c5d346a3c2c9674a309e2028f1cb919",
                "sha256": "a8d14ab1363beff0b30f96fc5c4960e6720a5856f16d6fc2fbef041b9917a018"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c5d346a3c2c9674a309e2028f1cb919",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 11199485,
            "upload_time": "2024-04-22T14:35:20",
            "upload_time_iso_8601": "2024-04-22T14:35:20.164813Z",
            "url": "https://files.pythonhosted.org/packages/11/e7/394b98af4b3b18521b51b5b27a0d3e954e355a2a33e8a412e0b9376e2f1f/depthai-2.25.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc084b3f485260d5bb2cc5e4a7e7ce019c26b689b7bed2f2d839ef1a28b32cc2",
                "md5": "c1379e1732511c08f924c45cbadcc11c",
                "sha256": "13034b5e49c0c7f8d71e9ae06c67a5da69b0a281a9c5469969df764edcd82b3b"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "c1379e1732511c08f924c45cbadcc11c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 10298383,
            "upload_time": "2024-04-22T14:35:23",
            "upload_time_iso_8601": "2024-04-22T14:35:23.510464Z",
            "url": "https://files.pythonhosted.org/packages/fc/08/4b3f485260d5bb2cc5e4a7e7ce019c26b689b7bed2f2d839ef1a28b32cc2/depthai-2.25.1.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5706d06e7a0c8e369d35c5983275dd550f392c2fe861dfd311cd389121d3e34a",
                "md5": "0cb80470857132c3fc35f35cc78c2375",
                "sha256": "d52cc772242338951a1ea1a315ec8184bbf2547c5fced76a4172b7d3e7adeb2d"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0cb80470857132c3fc35f35cc78c2375",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 10591327,
            "upload_time": "2024-04-22T14:35:26",
            "upload_time_iso_8601": "2024-04-22T14:35:26.853328Z",
            "url": "https://files.pythonhosted.org/packages/57/06/d06e7a0c8e369d35c5983275dd550f392c2fe861dfd311cd389121d3e34a/depthai-2.25.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ba9c4386930cd74f52b24caac34ec22fd4d96e8830a5daf4b70f8cebf6e0bdb",
                "md5": "6a6af8b8d48f8695961246220ca96d28",
                "sha256": "221df9751940f0072fdf89ff5da025464220aaafedbdcff9f5863be0ab85a132"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp311-cp311-linux_armv6l.linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6a6af8b8d48f8695961246220ca96d28",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 12424291,
            "upload_time": "2024-04-22T14:35:30",
            "upload_time_iso_8601": "2024-04-22T14:35:30.282848Z",
            "url": "https://files.pythonhosted.org/packages/9b/a9/c4386930cd74f52b24caac34ec22fd4d96e8830a5daf4b70f8cebf6e0bdb/depthai-2.25.1.0-cp311-cp311-linux_armv6l.linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cd5e241c18480d5614116296ebeee6cbcfdf0f2b4e484e8abcae728dc67629b",
                "md5": "33b4eebf608128f8ce1bcdc1ecba13f6",
                "sha256": "86f1a42cfb1d018b974086e941ac28f8b6cb07132853a3874a49a5470b493794"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "33b4eebf608128f8ce1bcdc1ecba13f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 11115139,
            "upload_time": "2024-04-22T14:35:33",
            "upload_time_iso_8601": "2024-04-22T14:35:33.414131Z",
            "url": "https://files.pythonhosted.org/packages/6c/d5/e241c18480d5614116296ebeee6cbcfdf0f2b4e484e8abcae728dc67629b/depthai-2.25.1.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7a4fab30f904ac417865a65d0e0f1a1c7c762324e046be733dc267fe8c2b562",
                "md5": "1aaffc904558f838d4d1d5276d055e1e",
                "sha256": "940b5dd3e6d554835f494fcf5ffbfe20dad31b9a2a4b361c79a0dccde268399d"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1aaffc904558f838d4d1d5276d055e1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 10758905,
            "upload_time": "2024-04-22T14:35:36",
            "upload_time_iso_8601": "2024-04-22T14:35:36.766920Z",
            "url": "https://files.pythonhosted.org/packages/e7/a4/fab30f904ac417865a65d0e0f1a1c7c762324e046be733dc267fe8c2b562/depthai-2.25.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1191302a6126dfd59c040d12738b909afd5f55ecd5f9b16d2e4c284fb6bb42d",
                "md5": "c703673e3c5f12024ef204876aa0ab96",
                "sha256": "c04b939a30ead5da58f14c2d015c5f305cc2718af0db8a2e5305d647d89f3d16"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c703673e3c5f12024ef204876aa0ab96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 11028138,
            "upload_time": "2024-04-22T14:35:39",
            "upload_time_iso_8601": "2024-04-22T14:35:39.583472Z",
            "url": "https://files.pythonhosted.org/packages/c1/19/1302a6126dfd59c040d12738b909afd5f55ecd5f9b16d2e4c284fb6bb42d/depthai-2.25.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35eb605447411cf768485e83fb7fe161b75edf889ada17d9068da6093d67a5ff",
                "md5": "bcb8f1c339ef97e0b5f690884f774ee3",
                "sha256": "3abe748fea0ba02489725287d4f9fc018cf41615e986a1ccbf752f5a07c79b72"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bcb8f1c339ef97e0b5f690884f774ee3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 11199441,
            "upload_time": "2024-04-22T14:35:42",
            "upload_time_iso_8601": "2024-04-22T14:35:42.916983Z",
            "url": "https://files.pythonhosted.org/packages/35/eb/605447411cf768485e83fb7fe161b75edf889ada17d9068da6093d67a5ff/depthai-2.25.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "370900750e87cc5a9737f13d1f51287708c6903a8a8a6c66114fa2f803448f4c",
                "md5": "bf6c8c03ddc31458200cb77e59de23d3",
                "sha256": "4ec2b8d8d985cae614aa1b052c1a3361709354ef9d9b84968153610573431d39"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "bf6c8c03ddc31458200cb77e59de23d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 10298738,
            "upload_time": "2024-04-22T14:35:45",
            "upload_time_iso_8601": "2024-04-22T14:35:45.750412Z",
            "url": "https://files.pythonhosted.org/packages/37/09/00750e87cc5a9737f13d1f51287708c6903a8a8a6c66114fa2f803448f4c/depthai-2.25.1.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fae0cc2be894bd00d1dabea8e54214f28f4714364acab4de891ee6c8ebc6e9e",
                "md5": "db7b7f21a86ce43fd5712e11399bd62e",
                "sha256": "836a5af879b4ab50f23c96bb62ac6302411959cc368517f481c78cb77f9fdff0"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "db7b7f21a86ce43fd5712e11399bd62e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 10591537,
            "upload_time": "2024-04-22T14:35:48",
            "upload_time_iso_8601": "2024-04-22T14:35:48.731196Z",
            "url": "https://files.pythonhosted.org/packages/0f/ae/0cc2be894bd00d1dabea8e54214f28f4714364acab4de891ee6c8ebc6e9e/depthai-2.25.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57409468724c81cdb976468c843a0df88e7236a5238cc535fb610e0b8820fb3f",
                "md5": "d70b42efeebc1a6872843c013d88d91c",
                "sha256": "4e9770245c46239d48c8aab0ffc50d5964e50db8e400d3765cb45699597fda71"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d70b42efeebc1a6872843c013d88d91c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 11183000,
            "upload_time": "2024-04-22T14:35:52",
            "upload_time_iso_8601": "2024-04-22T14:35:52.184230Z",
            "url": "https://files.pythonhosted.org/packages/57/40/9468724c81cdb976468c843a0df88e7236a5238cc535fb610e0b8820fb3f/depthai-2.25.1.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "950c1aaa81fa4794111bf0544460d491b2344b1b83e96f60c4bf5e2c866de181",
                "md5": "2bbe0b3f4c1c2ece95bfbade8b1faf3f",
                "sha256": "c3c521d409c5e22434a44516960e8759dd91e34e3fa59d18af018d40993747f9"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2bbe0b3f4c1c2ece95bfbade8b1faf3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 10786995,
            "upload_time": "2024-04-22T14:35:54",
            "upload_time_iso_8601": "2024-04-22T14:35:54.975585Z",
            "url": "https://files.pythonhosted.org/packages/95/0c/1aaa81fa4794111bf0544460d491b2344b1b83e96f60c4bf5e2c866de181/depthai-2.25.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1760b311ded44033e7a4e7b1f97a865e896ed1cc0b1a2397af28acdea563567",
                "md5": "e4d9831e27f62509e9c0bdd158811e40",
                "sha256": "0cdf1e1c4c22913ad88cb05a9d5a59df9aa5703c6f112db62e9fb734ed7fdc1b"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e4d9831e27f62509e9c0bdd158811e40",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 11008273,
            "upload_time": "2024-04-22T14:35:57",
            "upload_time_iso_8601": "2024-04-22T14:35:57.932285Z",
            "url": "https://files.pythonhosted.org/packages/a1/76/0b311ded44033e7a4e7b1f97a865e896ed1cc0b1a2397af28acdea563567/depthai-2.25.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b169791442be2f9069c7f6f57fd0918b7448b807a224beb08b578d995d68d35",
                "md5": "a9427d4c3da67c9132de1815adaa8a73",
                "sha256": "dae2962d401e15b199339d0c1031ccc4a84c5c6c58f33163a149735d194983a6"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9427d4c3da67c9132de1815adaa8a73",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 11185567,
            "upload_time": "2024-04-22T14:36:00",
            "upload_time_iso_8601": "2024-04-22T14:36:00.695085Z",
            "url": "https://files.pythonhosted.org/packages/5b/16/9791442be2f9069c7f6f57fd0918b7448b807a224beb08b578d995d68d35/depthai-2.25.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cf9137aa234acb41cf7e42c9a61eeed54448456c2ba8cf59f13a47597374f80",
                "md5": "7eb1a7af04802b047e5ba84c287e3e33",
                "sha256": "76085fa7bd591e7ec4ae1f2a1c40a8559aa1fdf11c616601027c33012dfd7306"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "7eb1a7af04802b047e5ba84c287e3e33",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 10306929,
            "upload_time": "2024-04-22T14:36:04",
            "upload_time_iso_8601": "2024-04-22T14:36:04.230788Z",
            "url": "https://files.pythonhosted.org/packages/7c/f9/137aa234acb41cf7e42c9a61eeed54448456c2ba8cf59f13a47597374f80/depthai-2.25.1.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e742da30c931b2a8a900c7c9a5649c4d0cbcd5f727c0dcdd2d02a149f5d7128a",
                "md5": "4ded3589e3044419533f5129846aa6ed",
                "sha256": "d37165cc1fc6696856e3d02632270a0a7cacf362f20a746e2cce4bdfddfb266b"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ded3589e3044419533f5129846aa6ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 10599042,
            "upload_time": "2024-04-22T14:36:07",
            "upload_time_iso_8601": "2024-04-22T14:36:07.566809Z",
            "url": "https://files.pythonhosted.org/packages/e7/42/da30c931b2a8a900c7c9a5649c4d0cbcd5f727c0dcdd2d02a149f5d7128a/depthai-2.25.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "946d321ee2ba6ea451c1d5587edf68dea4b72ef893c503cc87824e9323f45fcd",
                "md5": "77af40ee3780bb65735caaa176689cc9",
                "sha256": "abd42fbc1c288a684230c8858c4927cbfac230f3abd48c5b534e7a4695a431f8"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp36-cp36m-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77af40ee3780bb65735caaa176689cc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 11054541,
            "upload_time": "2024-04-22T14:36:10",
            "upload_time_iso_8601": "2024-04-22T14:36:10.400432Z",
            "url": "https://files.pythonhosted.org/packages/94/6d/321ee2ba6ea451c1d5587edf68dea4b72ef893c503cc87824e9323f45fcd/depthai-2.25.1.0-cp36-cp36m-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "932f3b11aaea7d5bf721548f802e0f0e0c2cb181e5c4326f40968f8d520c70f6",
                "md5": "64d66f83702cd320b52877740df7c31b",
                "sha256": "45ff8423d8be577c1512f274a8342e99ffebb3c756d8eba6d36126bf87116f58"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "64d66f83702cd320b52877740df7c31b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 11100977,
            "upload_time": "2024-04-22T14:36:13",
            "upload_time_iso_8601": "2024-04-22T14:36:13.279298Z",
            "url": "https://files.pythonhosted.org/packages/93/2f/3b11aaea7d5bf721548f802e0f0e0c2cb181e5c4326f40968f8d520c70f6/depthai-2.25.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c49453024065dd2be654d9a82be77a47ed557b873c82df7d13c4ea74e2d7d6db",
                "md5": "974fed3526d3e38396e4983bd7bdedd3",
                "sha256": "9f85d4f2402c6bc0f2ee702431dcb14456f33065e248bd3ecf5a30bda06e6a79"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "974fed3526d3e38396e4983bd7bdedd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 11258886,
            "upload_time": "2024-04-22T14:36:16",
            "upload_time_iso_8601": "2024-04-22T14:36:16.176737Z",
            "url": "https://files.pythonhosted.org/packages/c4/94/53024065dd2be654d9a82be77a47ed557b873c82df7d13c4ea74e2d7d6db/depthai-2.25.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d4eb98394b0f5f5d589ed2246fcbd797c12c9126cef3ff43911a9a64582ae44",
                "md5": "82116e888d495dea9653005120ba334b",
                "sha256": "b5ee463db1c86452fa455464050532d0f723064cce1256ff6df4fdd8dfaa1ed8"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "82116e888d495dea9653005120ba334b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 10306261,
            "upload_time": "2024-04-22T14:36:19",
            "upload_time_iso_8601": "2024-04-22T14:36:19.170104Z",
            "url": "https://files.pythonhosted.org/packages/8d/4e/b98394b0f5f5d589ed2246fcbd797c12c9126cef3ff43911a9a64582ae44/depthai-2.25.1.0-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1076f42daae2198db1bd98821e4eb994d2902115427e7fde5d314b6581a426ec",
                "md5": "9eeeb9caa85b7778ca2053d0b97973e7",
                "sha256": "8bea7541ff81948632dde6d54fa7346c889ce893d707ed172be5d78d65dbbaad"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9eeeb9caa85b7778ca2053d0b97973e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 10572212,
            "upload_time": "2024-04-22T14:36:22",
            "upload_time_iso_8601": "2024-04-22T14:36:22.006716Z",
            "url": "https://files.pythonhosted.org/packages/10/76/f42daae2198db1bd98821e4eb994d2902115427e7fde5d314b6581a426ec/depthai-2.25.1.0-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d17368da1362035c0ceab73b093c909f14642e2bffcf94265ee8b642f723d040",
                "md5": "4943198955560d8038429093bc745b09",
                "sha256": "448a3bb7fd31ddeae632ad6cf4f4a7370864dbe46789fe333d4166a871d2b51b"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4943198955560d8038429093bc745b09",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 12122743,
            "upload_time": "2024-04-22T14:36:25",
            "upload_time_iso_8601": "2024-04-22T14:36:25.139672Z",
            "url": "https://files.pythonhosted.org/packages/d1/73/68da1362035c0ceab73b093c909f14642e2bffcf94265ee8b642f723d040/depthai-2.25.1.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e29ea269f6f4aa406e7eb5a083059799cb93a500569694455d6ad59609b9c2a",
                "md5": "a99b9239442f575f38c8a5eba43d113d",
                "sha256": "6e7570afebf816bf2d3c9baebea2a40a33a4e51c21898b5b493c58f5345efe47"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a99b9239442f575f38c8a5eba43d113d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 11054732,
            "upload_time": "2024-04-22T14:36:27",
            "upload_time_iso_8601": "2024-04-22T14:36:27.975653Z",
            "url": "https://files.pythonhosted.org/packages/4e/29/ea269f6f4aa406e7eb5a083059799cb93a500569694455d6ad59609b9c2a/depthai-2.25.1.0-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00ee29a0e57a20351cde6bfdb4fec2219ceaa1d19ced8dd0e10183977a49f2f1",
                "md5": "1efe32910f3cb54b6733360e42c35b24",
                "sha256": "45d77536077d12107879cb60d18e7625faacf6956bc16762ea531df275746cc3"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1efe32910f3cb54b6733360e42c35b24",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 11101195,
            "upload_time": "2024-04-22T14:36:31",
            "upload_time_iso_8601": "2024-04-22T14:36:31.302975Z",
            "url": "https://files.pythonhosted.org/packages/00/ee/29a0e57a20351cde6bfdb4fec2219ceaa1d19ced8dd0e10183977a49f2f1/depthai-2.25.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16857398db6bb355d77be5b863b14d01c4a28547c0aef549915f9220b3073159",
                "md5": "c8e7b3acffec68f9affb2d22d6be437a",
                "sha256": "d6aea8508bd2980c02a4d2b6b0e943487a20d05d15dfe73416df2c1495f8ead8"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c8e7b3acffec68f9affb2d22d6be437a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 11260083,
            "upload_time": "2024-04-22T14:36:34",
            "upload_time_iso_8601": "2024-04-22T14:36:34.084357Z",
            "url": "https://files.pythonhosted.org/packages/16/85/7398db6bb355d77be5b863b14d01c4a28547c0aef549915f9220b3073159/depthai-2.25.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9f745ee9675f649426935c20fa90f43d6d2dd49697444d2b4574dfc4e3e64e0",
                "md5": "980c99d1c91645f71590d2e88c4c555c",
                "sha256": "27540e2cd8b39f76f942a9024374f28b2b245e9332ac6237a7646d2c40980dd2"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "980c99d1c91645f71590d2e88c4c555c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 10307369,
            "upload_time": "2024-04-22T14:36:37",
            "upload_time_iso_8601": "2024-04-22T14:36:37.005908Z",
            "url": "https://files.pythonhosted.org/packages/b9/f7/45ee9675f649426935c20fa90f43d6d2dd49697444d2b4574dfc4e3e64e0/depthai-2.25.1.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6968638c3a95b384b4df60aebba4a489f4e60ae476d12a6981aff69ef9fa729",
                "md5": "260e879701b4a41b14d4feb1fc0b76f8",
                "sha256": "7ac0408042aa3d1e30655cd1b191e9b22199198e54d2b16bad8175f2427944a7"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "260e879701b4a41b14d4feb1fc0b76f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 10572640,
            "upload_time": "2024-04-22T14:36:39",
            "upload_time_iso_8601": "2024-04-22T14:36:39.898133Z",
            "url": "https://files.pythonhosted.org/packages/a6/96/8638c3a95b384b4df60aebba4a489f4e60ae476d12a6981aff69ef9fa729/depthai-2.25.1.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a2d9381db91cbfbf1bddb82195e7f998e764522d30b531655271d0b8e49caf1",
                "md5": "356d473079bee2db7934294d9120d485",
                "sha256": "690ab9e568162791f849bfcdc351c890d3b9fb874a96d4116b6bc9be32aefbdb"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "356d473079bee2db7934294d9120d485",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 11114823,
            "upload_time": "2024-04-22T14:36:43",
            "upload_time_iso_8601": "2024-04-22T14:36:43.389615Z",
            "url": "https://files.pythonhosted.org/packages/9a/2d/9381db91cbfbf1bddb82195e7f998e764522d30b531655271d0b8e49caf1/depthai-2.25.1.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b9c427d4e57a2055df0b8e75b97bd4d2b76ec7a97760c6d78fecf2738ad21ab",
                "md5": "f5ac54968ced38a99db35dcf1836d6b7",
                "sha256": "a524bcf7f77c817a0b7c738d9cf28037e13b6107af6fff5d42e6b0a99dda4d6e"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f5ac54968ced38a99db35dcf1836d6b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 11031964,
            "upload_time": "2024-04-22T14:36:47",
            "upload_time_iso_8601": "2024-04-22T14:36:47.195170Z",
            "url": "https://files.pythonhosted.org/packages/7b/9c/427d4e57a2055df0b8e75b97bd4d2b76ec7a97760c6d78fecf2738ad21ab/depthai-2.25.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ec2a6de3e24badf939c7697c71ffbc252498a13113193d7ffcdd679fc7ac277",
                "md5": "eddfaf2a489a390a0be1e6c36d410b9c",
                "sha256": "98de5b7a872dfda33994eaee86bf6efbc9d6c2b527ea2beda8fb9e3f2443ac0b"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eddfaf2a489a390a0be1e6c36d410b9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 11197462,
            "upload_time": "2024-04-22T14:36:50",
            "upload_time_iso_8601": "2024-04-22T14:36:50.155902Z",
            "url": "https://files.pythonhosted.org/packages/1e/c2/a6de3e24badf939c7697c71ffbc252498a13113193d7ffcdd679fc7ac277/depthai-2.25.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bac51f885b9cca26b86bda6dee2d6f244ab7c69edf6efabc2088e263d07ca6e7",
                "md5": "bc4aa28de8d9acaa9f39b458801dc108",
                "sha256": "9ec59a938d34b5ecd6f950ea59c7c056e0c6aa5381e32bb7b3304e40d2f2241d"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "bc4aa28de8d9acaa9f39b458801dc108",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 10298275,
            "upload_time": "2024-04-22T14:36:53",
            "upload_time_iso_8601": "2024-04-22T14:36:53.073851Z",
            "url": "https://files.pythonhosted.org/packages/ba/c5/1f885b9cca26b86bda6dee2d6f244ab7c69edf6efabc2088e263d07ca6e7/depthai-2.25.1.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddf77a24b2c843a22e35a2b7be466fbea42cb1f6a282fb5a3a5761bdc410b398",
                "md5": "ba8e6fe29bc942c3d572d590e9ad3791",
                "sha256": "7403acb5c41d8b6a7ff3e54373c43f7766f43d07f3fdea574f0c722a02b77e6e"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ba8e6fe29bc942c3d572d590e9ad3791",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 10591615,
            "upload_time": "2024-04-22T14:36:56",
            "upload_time_iso_8601": "2024-04-22T14:36:56.581388Z",
            "url": "https://files.pythonhosted.org/packages/dd/f7/7a24b2c843a22e35a2b7be466fbea42cb1f6a282fb5a3a5761bdc410b398/depthai-2.25.1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c73345291bda26c8b4abbc909e4f48ce902e84f9895e9c242a936041a0ec132b",
                "md5": "9de88d2f7f87247a4f3b88c78ad20e8a",
                "sha256": "84164142a54d56d4796faa3e46db7a087f159d136a8477f5084d880b45f5bdeb"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp39-cp39-linux_armv6l.linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9de88d2f7f87247a4f3b88c78ad20e8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 12432174,
            "upload_time": "2024-04-22T14:36:59",
            "upload_time_iso_8601": "2024-04-22T14:36:59.480388Z",
            "url": "https://files.pythonhosted.org/packages/c7/33/45291bda26c8b4abbc909e4f48ce902e84f9895e9c242a936041a0ec132b/depthai-2.25.1.0-cp39-cp39-linux_armv6l.linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa4343b8e0b5961d93f01d84edc9164d20157aa36caa97de5bfc42f7766ff21f",
                "md5": "56aecc792acbaf37858080fe4518c66d",
                "sha256": "2fc2044f35fe24b796a401175ff41647d82bcdecb337d682dd1bd2b96c191cb2"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "56aecc792acbaf37858080fe4518c66d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 10759236,
            "upload_time": "2024-04-22T14:37:03",
            "upload_time_iso_8601": "2024-04-22T14:37:03.025546Z",
            "url": "https://files.pythonhosted.org/packages/aa/43/43b8e0b5961d93f01d84edc9164d20157aa36caa97de5bfc42f7766ff21f/depthai-2.25.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1396b240aa2f103d98bd474d3f025103e39709ad2b1b4a8e738fd6ed8ce39d85",
                "md5": "e9d107ac43309742b4ee25112c93b5fa",
                "sha256": "f8647154295396fc9bf97e16c9dd948a494689732a5062534624a3ca667d5990"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9d107ac43309742b4ee25112c93b5fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 11115284,
            "upload_time": "2024-04-22T14:37:07",
            "upload_time_iso_8601": "2024-04-22T14:37:07.254390Z",
            "url": "https://files.pythonhosted.org/packages/13/96/b240aa2f103d98bd474d3f025103e39709ad2b1b4a8e738fd6ed8ce39d85/depthai-2.25.1.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f81f16764af03ddc300c0e8b5960ea68d42d758e4e207bf11881ce12926df2dc",
                "md5": "09d7a21b2924dca2b33564ff83b20050",
                "sha256": "26a8ac1b7e42ad5a8e36b8f1ef690b551ae32ae0ce92b3567a41e4492d76d04b"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "09d7a21b2924dca2b33564ff83b20050",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 11034649,
            "upload_time": "2024-04-22T14:37:10",
            "upload_time_iso_8601": "2024-04-22T14:37:10.086006Z",
            "url": "https://files.pythonhosted.org/packages/f8/1f/16764af03ddc300c0e8b5960ea68d42d758e4e207bf11881ce12926df2dc/depthai-2.25.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d92c7a0fab23ffb37cf03def9b21246bab1e38ddef295c27affb7dc2ff85efe1",
                "md5": "79de34d319ecc94fe8086c60d31c540d",
                "sha256": "e2ef1bdbca18046ca34734bb2a6c64d21e99572bf8835f7b45e40160230f0d39"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79de34d319ecc94fe8086c60d31c540d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 11200104,
            "upload_time": "2024-04-22T14:37:13",
            "upload_time_iso_8601": "2024-04-22T14:37:13.563168Z",
            "url": "https://files.pythonhosted.org/packages/d9/2c/7a0fab23ffb37cf03def9b21246bab1e38ddef295c27affb7dc2ff85efe1/depthai-2.25.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fefb772bb8e3f3f299a4c647c0deb62e668fabd786af1837c6d9163f133fd332",
                "md5": "342e6e9207cdb73e9b59138f96f8644b",
                "sha256": "70ad6251b518526931ac5602d7d023eb8b8a3791c1b9126c9a1b2fc42e628312"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "342e6e9207cdb73e9b59138f96f8644b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 10298448,
            "upload_time": "2024-04-22T14:37:16",
            "upload_time_iso_8601": "2024-04-22T14:37:16.539394Z",
            "url": "https://files.pythonhosted.org/packages/fe/fb/772bb8e3f3f299a4c647c0deb62e668fabd786af1837c6d9163f133fd332/depthai-2.25.1.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "433aff2d401dc19dc7ffca8a8b66c8ffe21e0166bdbb391e38869f8c688cefb3",
                "md5": "a0f4eea636ed110ad4b9e31da87236fc",
                "sha256": "b0d2c0cc5cdcc9652ebbde4eefc77a0b2cccd29f6009d9fc550ff787898fba8a"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a0f4eea636ed110ad4b9e31da87236fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 10592313,
            "upload_time": "2024-04-22T14:37:19",
            "upload_time_iso_8601": "2024-04-22T14:37:19.485007Z",
            "url": "https://files.pythonhosted.org/packages/43/3a/ff2d401dc19dc7ffca8a8b66c8ffe21e0166bdbb391e38869f8c688cefb3/depthai-2.25.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a764527969f65a27adad6629e186b2bd4b0ab290f01a04de2832ce6106ab89e",
                "md5": "193d784833cc3c0ae71b6ad5e6a6e101",
                "sha256": "acad98d4d04f5d2bfbb3f212d30dba81912c649fc532329ef00811032230bc80"
            },
            "downloads": -1,
            "filename": "depthai-2.25.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "193d784833cc3c0ae71b6ad5e6a6e101",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 442507,
            "upload_time": "2024-04-22T14:37:22",
            "upload_time_iso_8601": "2024-04-22T14:37:22.369123Z",
            "url": "https://files.pythonhosted.org/packages/5a/76/4527969f65a27adad6629e186b2bd4b0ab290f01a04de2832ce6106ab89e/depthai-2.25.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-22 14:37:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "luxonis",
    "github_project": "depthai-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "depthai"
}
        
Elapsed time: 0.24250s