# DepthAI Python Library
[](https://opensource.org/licenses/MIT)
[](https://pypi.org/project/depthai/)
[](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.7",
"maintainer_email": null,
"keywords": null,
"author": "Luxonis",
"author_email": "support@luxonis.com",
"download_url": "https://files.pythonhosted.org/packages/e1/54/5b056e10555acadf356a1480639a85327606e5c90f6ace3d1f57ad25111c/depthai-2.30.0.0.tar.gz",
"platform": null,
"description": "# DepthAI Python Library\n\n[](https://opensource.org/licenses/MIT)\n[](https://pypi.org/project/depthai/)\n[](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.30.0.0",
"project_urls": {
"Homepage": "https://github.com/luxonis/depthai-python"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "b0a089c977958d6f5b5027e7ac1afb69aa49294a0cf842f6cc6016ec6ca6cf0f",
"md5": "d6d2c377279074c60d81565e1116b7c5",
"sha256": "1e8f2fb002a95395c398f1c843cf761425b98619737c6c088b110f72382a3597"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d6d2c377279074c60d81565e1116b7c5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 12746115,
"upload_time": "2025-03-18T15:05:11",
"upload_time_iso_8601": "2025-03-18T15:05:11.259825Z",
"url": "https://files.pythonhosted.org/packages/b0/a0/89c977958d6f5b5027e7ac1afb69aa49294a0cf842f6cc6016ec6ca6cf0f/depthai-2.30.0.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "874dfe2085af19c6019bda502b30a60ee1daf82baf29688d8a2a8889e7c03ecf",
"md5": "6d82709c11ecf5389454330308d055a8",
"sha256": "dce435678ba01c4396cd9adfdfef7fabeb7c598abcccee0cfe18cf2817f36525"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp310-cp310-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "6d82709c11ecf5389454330308d055a8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 13336417,
"upload_time": "2025-03-18T15:05:14",
"upload_time_iso_8601": "2025-03-18T15:05:14.883346Z",
"url": "https://files.pythonhosted.org/packages/87/4d/fe2085af19c6019bda502b30a60ee1daf82baf29688d8a2a8889e7c03ecf/depthai-2.30.0.0-cp310-cp310-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b5a463ee9975a1cdbc3094a6620996e1e170df3c2c561d88e2ebdbc17761c53",
"md5": "42ffbde724a076cce32795f42d91a5f8",
"sha256": "2a185107326570cf2681a42bb6a3d952b58813a9e76308c6649ddb40ace79f0e"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "42ffbde724a076cce32795f42d91a5f8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 13629705,
"upload_time": "2025-03-18T15:05:17",
"upload_time_iso_8601": "2025-03-18T15:05:17.784175Z",
"url": "https://files.pythonhosted.org/packages/8b/5a/463ee9975a1cdbc3094a6620996e1e170df3c2c561d88e2ebdbc17761c53/depthai-2.30.0.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "592e441f474157a09d1e127e7b0b85986eb91f1db1cdd63d2b8c89b8f1d0415f",
"md5": "1a91b1cdf584246dcc9b53e3a7928d3c",
"sha256": "a3bb410e84fa882afe26626c3966f2451faff545e340323bd1ec643f1f1ea8d7"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "1a91b1cdf584246dcc9b53e3a7928d3c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 14122922,
"upload_time": "2025-03-18T15:05:22",
"upload_time_iso_8601": "2025-03-18T15:05:22.874442Z",
"url": "https://files.pythonhosted.org/packages/59/2e/441f474157a09d1e127e7b0b85986eb91f1db1cdd63d2b8c89b8f1d0415f/depthai-2.30.0.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2519774d30555ff1e0c15eadc5c6a215bded89429ea6f7f8ce3726dda40e0c33",
"md5": "8f8ea51c4f6e2dbf0aaeb7de97ca0ffb",
"sha256": "4e32f4d74caa70fbfabf956ba6a059e47918c890c3a009ebc6f69af5da1ac0ba"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "8f8ea51c4f6e2dbf0aaeb7de97ca0ffb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 10855702,
"upload_time": "2025-03-18T15:05:25",
"upload_time_iso_8601": "2025-03-18T15:05:25.618875Z",
"url": "https://files.pythonhosted.org/packages/25/19/774d30555ff1e0c15eadc5c6a215bded89429ea6f7f8ce3726dda40e0c33/depthai-2.30.0.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f631f014704927c1766d3cf2046e0232cabe7e00f745462df542165702e4e06c",
"md5": "06c1856e06ed34709b2f8633d88eebf3",
"sha256": "4f1238e7bb90339a110f48863052dc2a1d3500bd86d4fe053ffa48f58890c840"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "06c1856e06ed34709b2f8633d88eebf3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 11191372,
"upload_time": "2025-03-18T15:05:28",
"upload_time_iso_8601": "2025-03-18T15:05:28.350145Z",
"url": "https://files.pythonhosted.org/packages/f6/31/f014704927c1766d3cf2046e0232cabe7e00f745462df542165702e4e06c/depthai-2.30.0.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3fee1d112e6c8c28b40cd3ed104e59dcc18169648de28bdf29f39fd56b92819",
"md5": "b2344daa8ffa35be95fe7762f6932e32",
"sha256": "d3199fb8a493349cc3f800a8529947aa3206f9cab75554f17ff0eab3a3f3f07f"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl",
"has_sig": false,
"md5_digest": "b2344daa8ffa35be95fe7762f6932e32",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 12784016,
"upload_time": "2025-03-18T15:05:31",
"upload_time_iso_8601": "2025-03-18T15:05:31.632291Z",
"url": "https://files.pythonhosted.org/packages/b3/fe/e1d112e6c8c28b40cd3ed104e59dcc18169648de28bdf29f39fd56b92819/depthai-2.30.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aacc87547b22a7dd53f872862b446547c9d7dc460baf4eebbdec46481ff51569",
"md5": "2a356e9b0f9fa0fa147521c3b05b8950",
"sha256": "c228b4babcc54decf7238d066650d1ab3085dc350c80edb4217edd61867f8f61"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "2a356e9b0f9fa0fa147521c3b05b8950",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 13337339,
"upload_time": "2025-03-18T15:05:34",
"upload_time_iso_8601": "2025-03-18T15:05:34.664050Z",
"url": "https://files.pythonhosted.org/packages/aa/cc/87547b22a7dd53f872862b446547c9d7dc460baf4eebbdec46481ff51569/depthai-2.30.0.0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84042250694f9ef3bf137938365ba5e6f8461ec8fabedcad787cd84bbc330733",
"md5": "fd009979431dda104c0638458dca80db",
"sha256": "1e929ad152e5f492087d078471211da92fc9835274fe22569cf0b99437198766"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fd009979431dda104c0638458dca80db",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 12746515,
"upload_time": "2025-03-18T15:05:37",
"upload_time_iso_8601": "2025-03-18T15:05:37.411295Z",
"url": "https://files.pythonhosted.org/packages/84/04/2250694f9ef3bf137938365ba5e6f8461ec8fabedcad787cd84bbc330733/depthai-2.30.0.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db3b93941aab97aa8deef759a12254bd218da442afb4fa129712736da4d963d4",
"md5": "28dd0fc61947b4cec13f0eaf01b20d02",
"sha256": "28750c2b856120e27df8088ad826b856f64cde42bbf3b7f341e31bfbbe15521c"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "28dd0fc61947b4cec13f0eaf01b20d02",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 13630896,
"upload_time": "2025-03-18T15:05:40",
"upload_time_iso_8601": "2025-03-18T15:05:40.216373Z",
"url": "https://files.pythonhosted.org/packages/db/3b/93941aab97aa8deef759a12254bd218da442afb4fa129712736da4d963d4/depthai-2.30.0.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f69d37a19f4502a672d8e1a5d41e105f05b11db96ceea2e928a942b32b1c87d",
"md5": "acf43637a2987cfbf782d63b623fdcfa",
"sha256": "e7c36e9d552049a6d333022234a031a336d8a49aeb51cad667a805eb9fa4bad8"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "acf43637a2987cfbf782d63b623fdcfa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 14122925,
"upload_time": "2025-03-18T15:05:43",
"upload_time_iso_8601": "2025-03-18T15:05:43.478347Z",
"url": "https://files.pythonhosted.org/packages/1f/69/d37a19f4502a672d8e1a5d41e105f05b11db96ceea2e928a942b32b1c87d/depthai-2.30.0.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ff2314286e4bb09104315b41bc9c4cb62d7f319c7b62389b7771edbddaee6c2",
"md5": "5693a043876038f628d50a2d6de1443d",
"sha256": "1a2367fdd023d3af01aa67683b6cafc3c53dbb6bcc79ccc234912c69bca51c7d"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "5693a043876038f628d50a2d6de1443d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 10857448,
"upload_time": "2025-03-18T15:05:46",
"upload_time_iso_8601": "2025-03-18T15:05:46.206577Z",
"url": "https://files.pythonhosted.org/packages/4f/f2/314286e4bb09104315b41bc9c4cb62d7f319c7b62389b7771edbddaee6c2/depthai-2.30.0.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a2e83071a3c2159e9b20b7ab217b4cd08efacdb0a115f49b98942b69e346b17",
"md5": "c021bdb0de59629b244d5df0339813b3",
"sha256": "06d68545eb55abf342a6d0c5df6ed9a16bbaabffaff28800ee8e61895d191028"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "c021bdb0de59629b244d5df0339813b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 11192326,
"upload_time": "2025-03-18T15:05:48",
"upload_time_iso_8601": "2025-03-18T15:05:48.833565Z",
"url": "https://files.pythonhosted.org/packages/6a/2e/83071a3c2159e9b20b7ab217b4cd08efacdb0a115f49b98942b69e346b17/depthai-2.30.0.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7bd5af052d03760fa3fd3bc3492dd144d5d0df708cb53fdc09d239e4d4e4097e",
"md5": "628ecb9434c590ac6a7b00f64f3b0211",
"sha256": "af64afc5a4f2bed7259df478f971afbae3ce3542567e759065cc35d1e9520c08"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "628ecb9434c590ac6a7b00f64f3b0211",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 13376602,
"upload_time": "2025-03-18T15:05:51",
"upload_time_iso_8601": "2025-03-18T15:05:51.958881Z",
"url": "https://files.pythonhosted.org/packages/7b/d5/af052d03760fa3fd3bc3492dd144d5d0df708cb53fdc09d239e4d4e4097e/depthai-2.30.0.0-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9735aed4335d9a17d5e8f21f7fe6d8d7f0098bab955f2e6331b8e203d873c527",
"md5": "ccd420a30b4579b5eb8052113688d9ea",
"sha256": "aa54948e78f51495301dd131284b125d0023b0235433735e75281dfc42fdc3f7"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ccd420a30b4579b5eb8052113688d9ea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 12761516,
"upload_time": "2025-03-18T15:05:54",
"upload_time_iso_8601": "2025-03-18T15:05:54.943274Z",
"url": "https://files.pythonhosted.org/packages/97/35/aed4335d9a17d5e8f21f7fe6d8d7f0098bab955f2e6331b8e203d873c527/depthai-2.30.0.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea9720465aac9e8baed73c9ad9b01bab24f16183c995bfa04626feb8a6666fda",
"md5": "f500e0bea56ba631af7dbda2cee08789",
"sha256": "d95531ff0d70720aee7f5de1f698570b6a8b1cbd7b1b79efabd88c49d57868df"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "f500e0bea56ba631af7dbda2cee08789",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 13629045,
"upload_time": "2025-03-18T15:05:58",
"upload_time_iso_8601": "2025-03-18T15:05:58.802834Z",
"url": "https://files.pythonhosted.org/packages/ea/97/20465aac9e8baed73c9ad9b01bab24f16183c995bfa04626feb8a6666fda/depthai-2.30.0.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4bd446c27563ff5f232d56d3c803aa026dcb7e694098a31ec100c266c62cccdf",
"md5": "b13741b779799090112d17083175a7c6",
"sha256": "c4eb4789b8d49e1bdeaedb215f24282924e0634813802c0ea9e599a9c639b492"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "b13741b779799090112d17083175a7c6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 14125507,
"upload_time": "2025-03-18T15:06:01",
"upload_time_iso_8601": "2025-03-18T15:06:01.759779Z",
"url": "https://files.pythonhosted.org/packages/4b/d4/46c27563ff5f232d56d3c803aa026dcb7e694098a31ec100c266c62cccdf/depthai-2.30.0.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15884eed0edb00cbff7de01ae2c4b4e4250f125a5db340a9b3b3a37edc3bd756",
"md5": "927c198da990b4d5863dd0aedc9bf62a",
"sha256": "9bf3eff22d2dc2255a442c2ef6c4aa140789641639dc1f83d211eaada686dd98"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "927c198da990b4d5863dd0aedc9bf62a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 10865752,
"upload_time": "2025-03-18T15:06:04",
"upload_time_iso_8601": "2025-03-18T15:06:04.475156Z",
"url": "https://files.pythonhosted.org/packages/15/88/4eed0edb00cbff7de01ae2c4b4e4250f125a5db340a9b3b3a37edc3bd756/depthai-2.30.0.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5465f2d44dc3adc7bef142c721ced1f23229a26925773bac7840b86c9776e4e7",
"md5": "2127cc3ebbc6673aa62cacb971a8cead",
"sha256": "850870777c53a332dba50187d5ddbb929c95e7a100730ccedf7b58ae32c70638"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "2127cc3ebbc6673aa62cacb971a8cead",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 11199913,
"upload_time": "2025-03-18T15:06:07",
"upload_time_iso_8601": "2025-03-18T15:06:07.270788Z",
"url": "https://files.pythonhosted.org/packages/54/65/f2d44dc3adc7bef142c721ced1f23229a26925773bac7840b86c9776e4e7/depthai-2.30.0.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc91ce13af2e6b47a5ae36b792167d6ae948c59cd9baa815e811b4f40c94fad5",
"md5": "3f57327293dd0cb6f493f9281a756194",
"sha256": "869668afb027cfe2c14ca2b81e39a29769846d8e8e7c4b7cbd40a4a261773b1c"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "3f57327293dd0cb6f493f9281a756194",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 13378230,
"upload_time": "2025-03-18T15:06:10",
"upload_time_iso_8601": "2025-03-18T15:06:10.192640Z",
"url": "https://files.pythonhosted.org/packages/dc/91/ce13af2e6b47a5ae36b792167d6ae948c59cd9baa815e811b4f40c94fad5/depthai-2.30.0.0-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f65e06d373253afddad54100e31e20fe1c066bbec11294478c9b75ff4c26ec97",
"md5": "c5b444f7bdb919b9c988efd3c4896c53",
"sha256": "278272edbab1437217db633c71f2c2c90ec2b76f20c9c6ee9f6664342f7609eb"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c5b444f7bdb919b9c988efd3c4896c53",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 12763590,
"upload_time": "2025-03-18T15:06:13",
"upload_time_iso_8601": "2025-03-18T15:06:13.015906Z",
"url": "https://files.pythonhosted.org/packages/f6/5e/06d373253afddad54100e31e20fe1c066bbec11294478c9b75ff4c26ec97/depthai-2.30.0.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "962895f226d1232fc13f139a15399d4e64c443ea96cb25819f5266d0e0d43830",
"md5": "fbfd5e7698d18c34859a23d661cfd2f3",
"sha256": "5675545d9b354d1c51e902cc08d39649fe1a1c2fbe59bc411424687ab5e245da"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "fbfd5e7698d18c34859a23d661cfd2f3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 13628971,
"upload_time": "2025-03-18T15:06:16",
"upload_time_iso_8601": "2025-03-18T15:06:16.161873Z",
"url": "https://files.pythonhosted.org/packages/96/28/95f226d1232fc13f139a15399d4e64c443ea96cb25819f5266d0e0d43830/depthai-2.30.0.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "43f268adcb44aca0adc2b15e526665e501997cdde6a236cc60561061ba1de196",
"md5": "45c527e38b6d28529e6bc0df97c4e92c",
"sha256": "b2ae397de204ba84d00a26a241c94d1c3fbed31386f22ab6fadcd35a74aee347"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "45c527e38b6d28529e6bc0df97c4e92c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 14125537,
"upload_time": "2025-03-18T15:06:19",
"upload_time_iso_8601": "2025-03-18T15:06:19.115680Z",
"url": "https://files.pythonhosted.org/packages/43/f2/68adcb44aca0adc2b15e526665e501997cdde6a236cc60561061ba1de196/depthai-2.30.0.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cab4f309c326f83b0b4ef6efbceb601bfca20e7cf61dfe3a8a28f819b95e889",
"md5": "aada62dc59d50743347cad0d7d81ca4e",
"sha256": "1f8261bec4ebb747c6e2c20dc1adc7c86a9025c2a36e16c0adfad468ee86d41d"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "aada62dc59d50743347cad0d7d81ca4e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 13658477,
"upload_time": "2025-03-18T15:06:27",
"upload_time_iso_8601": "2025-03-18T15:06:27.591746Z",
"url": "https://files.pythonhosted.org/packages/7c/ab/4f309c326f83b0b4ef6efbceb601bfca20e7cf61dfe3a8a28f819b95e889/depthai-2.30.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c23247e948204e8f1b60c427675f4e6c945456615986eca8970603df53fd115",
"md5": "89d4c7f2910a49b381e028a2afb8d718",
"sha256": "8c14045e7c5e313b134cc3c10320dad2dda8815f4f2ea9b1c72dc36981f6b71b"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "89d4c7f2910a49b381e028a2afb8d718",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 14165908,
"upload_time": "2025-03-18T15:06:30",
"upload_time_iso_8601": "2025-03-18T15:06:30.608872Z",
"url": "https://files.pythonhosted.org/packages/2c/23/247e948204e8f1b60c427675f4e6c945456615986eca8970603df53fd115/depthai-2.30.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8cf6d9a2b7f68b61f3e424b36d781c1be46944b4cd5376f8e5c076e9f3ae6274",
"md5": "60425cbbf4d1603cab516f017ab37ce6",
"sha256": "e98806b3a50322ae7bcea3e0bc085b8ede398e230af2b92f6a81cb5e60c5e4e1"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "60425cbbf4d1603cab516f017ab37ce6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 10865621,
"upload_time": "2025-03-18T15:06:21",
"upload_time_iso_8601": "2025-03-18T15:06:21.844223Z",
"url": "https://files.pythonhosted.org/packages/8c/f6/d9a2b7f68b61f3e424b36d781c1be46944b4cd5376f8e5c076e9f3ae6274/depthai-2.30.0.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce89dbcf8568d9bb103975cafd16a6560d0534182404bd29551ad05bcd78df06",
"md5": "c8fb6b6271dcce372fc6aaa5f6134dc8",
"sha256": "d2f78457f8df21d8b21fff4c9cecc40b7925cae617be8fe9d8e4bcb1a01fd329"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "c8fb6b6271dcce372fc6aaa5f6134dc8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 11199600,
"upload_time": "2025-03-18T15:06:24",
"upload_time_iso_8601": "2025-03-18T15:06:24.624537Z",
"url": "https://files.pythonhosted.org/packages/ce/89/dbcf8568d9bb103975cafd16a6560d0534182404bd29551ad05bcd78df06/depthai-2.30.0.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5efdd6f76c51efea73dcd52c7cad792ee83e9f7507f2ecae062a9de4d1969118",
"md5": "334dbd9d0e4a1e96a678a7bc3fff95fa",
"sha256": "bfe84fcd877c0d49ce560fb227edeb528b87134ab1afdc48e6ff1c9c5fc2647d"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp37-cp37m-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "334dbd9d0e4a1e96a678a7bc3fff95fa",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 13664978,
"upload_time": "2025-03-18T15:06:33",
"upload_time_iso_8601": "2025-03-18T15:06:33.493412Z",
"url": "https://files.pythonhosted.org/packages/5e/fd/d6f76c51efea73dcd52c7cad792ee83e9f7507f2ecae062a9de4d1969118/depthai-2.30.0.0-cp37-cp37m-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d2ea22fbc451da8055a32cb049e59282c04200d5259787c8a0fb000e21b8bfda",
"md5": "fc62e4b77970c62809e8b8d7e85321b3",
"sha256": "25bfbef885a63728d96e0cb4e0243ea04e70835c0194cd8b3ae9ad91fd1889aa"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp37-cp37m-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "fc62e4b77970c62809e8b8d7e85321b3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 14153281,
"upload_time": "2025-03-18T15:06:36",
"upload_time_iso_8601": "2025-03-18T15:06:36.247106Z",
"url": "https://files.pythonhosted.org/packages/d2/ea/22fbc451da8055a32cb049e59282c04200d5259787c8a0fb000e21b8bfda/depthai-2.30.0.0-cp37-cp37m-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c0aeb386dd1ea142143c01271028c4c30c22d5dd35023657b050f7dadf11738e",
"md5": "e664a85aa38f310b59191dc090821b53",
"sha256": "f359b2145c142ca82ca6150e661eb920eb5dcb32eda3024a06413396a0a68804"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "e664a85aa38f310b59191dc090821b53",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 10826634,
"upload_time": "2025-03-18T15:06:39",
"upload_time_iso_8601": "2025-03-18T15:06:39.237654Z",
"url": "https://files.pythonhosted.org/packages/c0/ae/b386dd1ea142143c01271028c4c30c22d5dd35023657b050f7dadf11738e/depthai-2.30.0.0-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cf8bc5eb0bbfec0fabdb111b74eff70bfb79ba2839c9af28f6f80d24197ffa7",
"md5": "6168073f0e730d7594874a91883e29cf",
"sha256": "ae0e6bf1980c1dea3dee1f523d8463edc1adbb182ea361fcf291696513ff332b"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "6168073f0e730d7594874a91883e29cf",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 11120794,
"upload_time": "2025-03-18T15:06:44",
"upload_time_iso_8601": "2025-03-18T15:06:44.394022Z",
"url": "https://files.pythonhosted.org/packages/5c/f8/bc5eb0bbfec0fabdb111b74eff70bfb79ba2839c9af28f6f80d24197ffa7/depthai-2.30.0.0-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "057014dd0354de9cbc691a49668ccd990b1f3768bb31260b1d4acc9a91bc2cee",
"md5": "c642cdd292727ea1f48da5892b951d86",
"sha256": "c29cc7908afda2b85e8b1575f858ad99f840e8e8da768e703f344e084d9d7cbe"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c642cdd292727ea1f48da5892b951d86",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 12743838,
"upload_time": "2025-03-18T15:06:48",
"upload_time_iso_8601": "2025-03-18T15:06:48.644309Z",
"url": "https://files.pythonhosted.org/packages/05/70/14dd0354de9cbc691a49668ccd990b1f3768bb31260b1d4acc9a91bc2cee/depthai-2.30.0.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e09816382dd7f57270abd033b155a0eb28d23dc45f1063548e771fa99b536b97",
"md5": "3f6265882d5555eec7e4b00a274b8983",
"sha256": "181d9f76332b2c28f4746ca7f89962fdbe149682082e99d643197dbb7db7e852"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp38-cp38-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "3f6265882d5555eec7e4b00a274b8983",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 13335940,
"upload_time": "2025-03-18T15:06:51",
"upload_time_iso_8601": "2025-03-18T15:06:51.521777Z",
"url": "https://files.pythonhosted.org/packages/e0/98/16382dd7f57270abd033b155a0eb28d23dc45f1063548e771fa99b536b97/depthai-2.30.0.0-cp38-cp38-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15fc7cf23d82ccbd72cd064fa50f3f14cc80ae7878fee9098877b3a9281709be",
"md5": "39312e2bece6f445e7da201eb37d5858",
"sha256": "a5fc85a92ed17397b5a7a02d01b5b737fa0a434e94540691b16142db0a886315"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp38-cp38-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "39312e2bece6f445e7da201eb37d5858",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 13629765,
"upload_time": "2025-03-18T15:06:54",
"upload_time_iso_8601": "2025-03-18T15:06:54.725410Z",
"url": "https://files.pythonhosted.org/packages/15/fc/7cf23d82ccbd72cd064fa50f3f14cc80ae7878fee9098877b3a9281709be/depthai-2.30.0.0-cp38-cp38-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c688f81b909241adbc0f45a650682e62d20e8c04bb426f964961af90c3b73048",
"md5": "c7f6874d1d3e90ef83d348f8e15dd5dc",
"sha256": "8ffe33ffd4811dcb9f2c8470045822d877a5c9391fe6bda839741eaf46b49f30"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp38-cp38-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c7f6874d1d3e90ef83d348f8e15dd5dc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 14119363,
"upload_time": "2025-03-18T15:06:57",
"upload_time_iso_8601": "2025-03-18T15:06:57.857908Z",
"url": "https://files.pythonhosted.org/packages/c6/88/f81b909241adbc0f45a650682e62d20e8c04bb426f964961af90c3b73048/depthai-2.30.0.0-cp38-cp38-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9164e229db56ee41f2d842a84bcddaf0f674dec0775fbcedc91672ec054733a4",
"md5": "7607972d3ec545603fa0de1a9d75aa74",
"sha256": "ca1b28913366d5b6d5300df4e64e150c38c2df482ad6e442413c376cb8f2ef94"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "7607972d3ec545603fa0de1a9d75aa74",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 10856527,
"upload_time": "2025-03-18T15:07:00",
"upload_time_iso_8601": "2025-03-18T15:07:00.732667Z",
"url": "https://files.pythonhosted.org/packages/91/64/e229db56ee41f2d842a84bcddaf0f674dec0775fbcedc91672ec054733a4/depthai-2.30.0.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "510d96cb6d5c0865a331b7cf0c9a455815778eb118fde23e5fce61054bb9d70d",
"md5": "a07eb671cea25ff59235f1619400a06b",
"sha256": "cdadc4bd77745d995872bddfc64cae2c3949e3395aa2fb7ac54695ffb0061a56"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "a07eb671cea25ff59235f1619400a06b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 11191261,
"upload_time": "2025-03-18T15:07:03",
"upload_time_iso_8601": "2025-03-18T15:07:03.635331Z",
"url": "https://files.pythonhosted.org/packages/51/0d/96cb6d5c0865a331b7cf0c9a455815778eb118fde23e5fce61054bb9d70d/depthai-2.30.0.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "daca629743a0f680ceffc559d25dd3f600e06eefb0f78045dd34bec452d5c25a",
"md5": "86c87a059b86264cdb576bc66008b55b",
"sha256": "9a4695fe97d5bd63df474157acb01359d9e4b68f896cd5a19c9a56ba18892f88"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl",
"has_sig": false,
"md5_digest": "86c87a059b86264cdb576bc66008b55b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 12799452,
"upload_time": "2025-03-18T15:07:06",
"upload_time_iso_8601": "2025-03-18T15:07:06.511702Z",
"url": "https://files.pythonhosted.org/packages/da/ca/629743a0f680ceffc559d25dd3f600e06eefb0f78045dd34bec452d5c25a/depthai-2.30.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6de430d1e3d22a32563400d8b27b29cd679eb4b869e13df094f27487d228a5d",
"md5": "2fc3b87ded9256bda9046b2b680a8938",
"sha256": "b6f7c7191284ef768ff99b484eb29acf8c9c110c0efa750de43a3ccbe1685e0d"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2fc3b87ded9256bda9046b2b680a8938",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 12745490,
"upload_time": "2025-03-18T15:07:09",
"upload_time_iso_8601": "2025-03-18T15:07:09.719349Z",
"url": "https://files.pythonhosted.org/packages/c6/de/430d1e3d22a32563400d8b27b29cd679eb4b869e13df094f27487d228a5d/depthai-2.30.0.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "644464ce3f6c4dc84c36e3a672e49d56ca8a4a1e3dc5b0055c5f3800944758c2",
"md5": "d5ad6f749ebbe37634c6ce27cd3a9baa",
"sha256": "a9a2952d2a428242451c58107d378a0ec6ff066ff6006d9684e26634c7bc3e13"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp39-cp39-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "d5ad6f749ebbe37634c6ce27cd3a9baa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 13334649,
"upload_time": "2025-03-18T15:07:12",
"upload_time_iso_8601": "2025-03-18T15:07:12.719000Z",
"url": "https://files.pythonhosted.org/packages/64/44/64ce3f6c4dc84c36e3a672e49d56ca8a4a1e3dc5b0055c5f3800944758c2/depthai-2.30.0.0-cp39-cp39-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73255f7060f185f7021df47209e2aed11132ec8e9b7b5349aad0ba9c7b8bad1d",
"md5": "83075c1fd2961508b5e10c9b37767b6d",
"sha256": "c32e96fd146ee7f721238c724f5ea2269f1c3596f2875a9cb781cbb7fd91139c"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "83075c1fd2961508b5e10c9b37767b6d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 13630226,
"upload_time": "2025-03-18T15:07:15",
"upload_time_iso_8601": "2025-03-18T15:07:15.673425Z",
"url": "https://files.pythonhosted.org/packages/73/25/5f7060f185f7021df47209e2aed11132ec8e9b7b5349aad0ba9c7b8bad1d/depthai-2.30.0.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f02f7cfc7f0150a8c6b05681c9bff1a9d7d5ab2f49758adc21c2a7e76479a2d7",
"md5": "690212893d1226be86b8c14b91e8c374",
"sha256": "a6d533f75d1c5eebea468f7418d6a88ee1fb8c6f497cf854195540fe49961006"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "690212893d1226be86b8c14b91e8c374",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 14122281,
"upload_time": "2025-03-18T15:07:19",
"upload_time_iso_8601": "2025-03-18T15:07:19.071079Z",
"url": "https://files.pythonhosted.org/packages/f0/2f/7cfc7f0150a8c6b05681c9bff1a9d7d5ab2f49758adc21c2a7e76479a2d7/depthai-2.30.0.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c6e97ba0064e85cc009c797fcee46043c433bcb954d442ed840d65529ac0380",
"md5": "f9124ba11410cb1d13aa8e13d3fbe28c",
"sha256": "958145520f5b7ff31eb9913a5e41f007be6440424e606e1d4292e9e41ea956ff"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "f9124ba11410cb1d13aa8e13d3fbe28c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 10855583,
"upload_time": "2025-03-18T15:07:21",
"upload_time_iso_8601": "2025-03-18T15:07:21.933770Z",
"url": "https://files.pythonhosted.org/packages/0c/6e/97ba0064e85cc009c797fcee46043c433bcb954d442ed840d65529ac0380/depthai-2.30.0.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5545a0bb8b45896fe0e6bde830246d0c723ad78fcfbba5e9e2c82be00d16bf9b",
"md5": "507977b6f7eda9f9217340f53434b4e5",
"sha256": "652d22ce0b444e66f6a29c2278f39adee609027aa4f2b510d56b103072ee6d39"
},
"downloads": -1,
"filename": "depthai-2.30.0.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "507977b6f7eda9f9217340f53434b4e5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 11194273,
"upload_time": "2025-03-18T15:07:24",
"upload_time_iso_8601": "2025-03-18T15:07:24.739534Z",
"url": "https://files.pythonhosted.org/packages/55/45/a0bb8b45896fe0e6bde830246d0c723ad78fcfbba5e9e2c82be00d16bf9b/depthai-2.30.0.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1545b056e10555acadf356a1480639a85327606e5c90f6ace3d1f57ad25111c",
"md5": "b6d82ff60d40db9e5ce6edf8a740f195",
"sha256": "6f1de5abdca2a615eb29803d82a002da42ebf1d3c6d261187762f0dcc5b2a836"
},
"downloads": -1,
"filename": "depthai-2.30.0.0.tar.gz",
"has_sig": false,
"md5_digest": "b6d82ff60d40db9e5ce6edf8a740f195",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 453954,
"upload_time": "2025-03-18T15:07:32",
"upload_time_iso_8601": "2025-03-18T15:07:32.260264Z",
"url": "https://files.pythonhosted.org/packages/e1/54/5b056e10555acadf356a1480639a85327606e5c90f6ace3d1f57ad25111c/depthai-2.30.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-03-18 15:07:32",
"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"
}