# [*Record3D – Point Cloud Animation and Streaming*](https://record3d.app/): the accompanying library
**2024/05/27 Update**: Added confidence map streaming (introduced breaking changes), **To be used with Record3D 1.10 and newer.**
**2022/08/16 Update**: Added camera position streaming (introduced breaking changes). **To be used with Record3D 1.7.2 and newer.**
**2021/07/28 Update**: Introduced support for higher-quality RGB LiDAR streaming. **To be used with Record3D 1.6 and newer.**
**2020/09/17 Update**: Introduced LiDAR support. To be used with Record3D 1.4 and newer.
This project provides C++ and Python libraries for the [iOS Record3D app](https://record3d.app/) which allows you (among other features) to
live-stream RGB**D** video from iOS devices with TrueDepth camera to a computer via USB cable.
## Prerequisites
- Install [CMake](https://cmake.org/download/) >= **3.13.0** and make sure it is in `PATH`.
- When on macOS and Windows, install [iTunes](https://www.apple.com/itunes/).
- When on Linux, install [`libusbmuxd`](https://launchpad.net/ubuntu/+source/libusbmuxd) (`sudo apt install libusbmuxd-dev`). It should be installed by default on Ubuntu.
## Installing
The libraries are multiplatform — macOS, Linux and Windows are supported.
### Python
You can install either via `pip`:
python -m pip install record3d
or build from source (run as admin/root):
git clone https://github.com/marek-simonik/record3d
cd record3d
python setup.py install
### C++
After running the following, you will find compiled static library in the `build` folder and header files in the `include` folder.
**macOS and Linux**
git clone https://github.com/marek-simonik/record3d
cd record3d
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j8 record3d_cpp
make install
# now you can link against the `record3d_cpp` library in your project
**Windows**
git clone https://github.com/marek-simonik/record3d
cd record3d
md build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 15 2017 Win64" ..
# Open the generated Visual Studio Solution (.sln) fil and build the "`record3d_cpp`" Project
## Sample applications
There is a Python (`demo-main.py`) and C++ (`src/DemoMain.cpp`) sample project that demonstrates how to use the library to receive and display RGBD stream.
Before running the sample applications, connect your iOS device to your computer and open the Record3D iOS app. Go to the Settings tab and enable "USB Streaming mode".
### Python
After installing the `record3d` library, run `python demo-main.py` and press the record button to start streaming RGBD data.
### C++
You can build the C++ demo app by running the following (press the record button in the iOS app to start streaming RGBD data):
**macOS and Linux**
git clone https://github.com/marek-simonik/record3d
cd record3d
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j8 demo
./demo
**Windows**
git clone https://github.com/marek-simonik/record3d
cd record3d
md build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 15 2017 Win64" ..
# Open the generated Visual Studio Solution (.sln) file and run the "`demo`" Project
Raw data
{
"_id": null,
"home_page": "https://github.com/marek-simonik/record3d",
"name": "record3d",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "record3d, iOS, TrueDepth, streaming, pointcloud, point, cloud",
"author": "Marek Simonik",
"author_email": "admin@record3d.app",
"download_url": "https://files.pythonhosted.org/packages/4f/7a/418b0a5fb161a4589058da6b2f9dec0e82eeea6a49ca09f4096609ac323c/record3d-1.4.tar.gz",
"platform": null,
"description": "# [*Record3D \u2013 Point Cloud Animation and Streaming*](https://record3d.app/): the accompanying library \n\n**2024/05/27 Update**: Added confidence map streaming (introduced breaking changes), **To be used with Record3D 1.10 and newer.**\n\n**2022/08/16 Update**: Added camera position streaming (introduced breaking changes). **To be used with Record3D 1.7.2 and newer.**\n\n**2021/07/28 Update**: Introduced support for higher-quality RGB LiDAR streaming. **To be used with Record3D 1.6 and newer.**\n\n**2020/09/17 Update**: Introduced LiDAR support. To be used with Record3D 1.4 and newer.\n\nThis project provides C++ and Python libraries for the [iOS Record3D app](https://record3d.app/) which allows you (among other features) to \nlive-stream RGB**D** video from iOS devices with TrueDepth camera to a computer via USB cable.\n\n## Prerequisites\n - Install [CMake](https://cmake.org/download/) >= **3.13.0** and make sure it is in `PATH`.\n - When on macOS and Windows, install [iTunes](https://www.apple.com/itunes/).\n - When on Linux, install [`libusbmuxd`](https://launchpad.net/ubuntu/+source/libusbmuxd) (`sudo apt install libusbmuxd-dev`). It should be installed by default on Ubuntu.\n \n## Installing\nThe libraries are multiplatform \u2014 macOS, Linux and Windows are supported.\n\n### Python\nYou can install either via `pip`:\n \n python -m pip install record3d\n\nor build from source (run as admin/root):\n \n git clone https://github.com/marek-simonik/record3d\n cd record3d\n python setup.py install\n \n### C++\nAfter running the following, you will find compiled static library in the `build` folder and header files in the `include` folder.\n\n**macOS and Linux**\n\n git clone https://github.com/marek-simonik/record3d\n cd record3d\n mkdir build && cd build\n cmake -DCMAKE_BUILD_TYPE=Release ..\n make -j8 record3d_cpp\n make install\n # now you can link against the `record3d_cpp` library in your project\n\n**Windows**\n\n git clone https://github.com/marek-simonik/record3d\n cd record3d\n md build\n cd build\n cmake -DCMAKE_BUILD_TYPE=Release -G \"Visual Studio 15 2017 Win64\" ..\n # Open the generated Visual Studio Solution (.sln) fil and build the \"`record3d_cpp`\" Project\n\n## Sample applications\nThere is a Python (`demo-main.py`) and C++ (`src/DemoMain.cpp`) sample project that demonstrates how to use the library to receive and display RGBD stream.\n\nBefore running the sample applications, connect your iOS device to your computer and open the Record3D iOS app. Go to the Settings tab and enable \"USB Streaming mode\".\n\n### Python\nAfter installing the `record3d` library, run `python demo-main.py` and press the record button to start streaming RGBD data.\n\n### C++\nYou can build the C++ demo app by running the following (press the record button in the iOS app to start streaming RGBD data):\n\n**macOS and Linux**\n\n git clone https://github.com/marek-simonik/record3d\n cd record3d\n mkdir build && cd build\n cmake -DCMAKE_BUILD_TYPE=Release ..\n make -j8 demo\n ./demo\n \n**Windows**\n\n git clone https://github.com/marek-simonik/record3d\n cd record3d\n md build\n cd build\n cmake -DCMAKE_BUILD_TYPE=Release -G \"Visual Studio 15 2017 Win64\" ..\n # Open the generated Visual Studio Solution (.sln) file and run the \"`demo`\" Project\n\n\n",
"bugtrack_url": null,
"license": "lgpl-2.1",
"summary": "Accompanying library for the Record3D iOS app (https://record3d.app/). Allows you to receive RGBD stream from iOS devices with TrueDepth and/or LiDAR camera(s).",
"version": "1.4",
"project_urls": {
"Homepage": "https://github.com/marek-simonik/record3d"
},
"split_keywords": [
"record3d",
" ios",
" truedepth",
" streaming",
" pointcloud",
" point",
" cloud"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "039de62c1a7f78284f6fdd8772e3542160d0e523ae072a6ce38543dd2e60bb16",
"md5": "a7afb0da8f1f4c213b996f23492b3f55",
"sha256": "674c72b41a7dbbab1fb6fd349f8fbae048a700a513c6beb6b53300b686e3bf28"
},
"downloads": -1,
"filename": "record3d-1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a7afb0da8f1f4c213b996f23492b3f55",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 242548,
"upload_time": "2024-05-28T00:46:34",
"upload_time_iso_8601": "2024-05-28T00:46:34.155459Z",
"url": "https://files.pythonhosted.org/packages/03/9d/e62c1a7f78284f6fdd8772e3542160d0e523ae072a6ce38543dd2e60bb16/record3d-1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0f163c6c720025486bca4463913dfef3d2240565993c850d0402ccc489c38e4",
"md5": "1568eabfdb73c23ba4b8bf4e70e98b9d",
"sha256": "ca0f420ebdf96efbe9709c6c73badb309e2743728d9f20d9ef9cada0cd3f8bf0"
},
"downloads": -1,
"filename": "record3d-1.4-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "1568eabfdb73c23ba4b8bf4e70e98b9d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 169677,
"upload_time": "2024-05-28T00:46:35",
"upload_time_iso_8601": "2024-05-28T00:46:35.941669Z",
"url": "https://files.pythonhosted.org/packages/b0/f1/63c6c720025486bca4463913dfef3d2240565993c850d0402ccc489c38e4/record3d-1.4-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "976f649eba1436ae0af1dce5e950d707548e541cc5db504055a74bc66d84ec95",
"md5": "53274b0e6a529aa814a29240f060238b",
"sha256": "f11e5c5f802ef04d16907cb68d15e9bd2e46a2804bfebfbc61c3ec22cc442f17"
},
"downloads": -1,
"filename": "record3d-1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "53274b0e6a529aa814a29240f060238b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 242492,
"upload_time": "2024-05-28T00:46:37",
"upload_time_iso_8601": "2024-05-28T00:46:37.713388Z",
"url": "https://files.pythonhosted.org/packages/97/6f/649eba1436ae0af1dce5e950d707548e541cc5db504055a74bc66d84ec95/record3d-1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28d93f070a15e9cf64080bb26c16608c018eddf45f9a93e8b235a456615494fd",
"md5": "d19dfc4898c6f7739beb5cca2134ed2c",
"sha256": "c719f75f21014eeea5806dff46abdca8486870bd346e50a723ece6aef146d98b"
},
"downloads": -1,
"filename": "record3d-1.4-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "d19dfc4898c6f7739beb5cca2134ed2c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 169675,
"upload_time": "2024-05-28T00:46:39",
"upload_time_iso_8601": "2024-05-28T00:46:39.375462Z",
"url": "https://files.pythonhosted.org/packages/28/d9/3f070a15e9cf64080bb26c16608c018eddf45f9a93e8b235a456615494fd/record3d-1.4-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4468c94c3ffffee368eb197c88a467721416005cfe965865120fa0754aff87c6",
"md5": "b82c7e2f6f5e669d9a52f828b5230749",
"sha256": "4aa0dbda2017f56fb1ee06214952334f325b819e524c41e01508c4ec5703ea95"
},
"downloads": -1,
"filename": "record3d-1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b82c7e2f6f5e669d9a52f828b5230749",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 241862,
"upload_time": "2024-05-28T00:46:40",
"upload_time_iso_8601": "2024-05-28T00:46:40.466067Z",
"url": "https://files.pythonhosted.org/packages/44/68/c94c3ffffee368eb197c88a467721416005cfe965865120fa0754aff87c6/record3d-1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e28ea8270799bc89a9493d72bad26ee5b521df7fda85021ef8da22a7bbf1d8d0",
"md5": "5b2588e8a57e167897af9583a1966139",
"sha256": "c2875202b16733f715be2db6f7a616c19b52d2d6d16ea57d81560c6c595e974e"
},
"downloads": -1,
"filename": "record3d-1.4-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "5b2588e8a57e167897af9583a1966139",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 170215,
"upload_time": "2024-05-28T00:46:41",
"upload_time_iso_8601": "2024-05-28T00:46:41.772695Z",
"url": "https://files.pythonhosted.org/packages/e2/8e/a8270799bc89a9493d72bad26ee5b521df7fda85021ef8da22a7bbf1d8d0/record3d-1.4-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "935f90dce251ac0db7cb1a94a4063862b1e1342352414f18e21c7427b7442bcd",
"md5": "f197f64cc747587e3f147832c6feba50",
"sha256": "edb72f0acbd3ffab9f9d4b2c32155039229cf5c96e9dc15aadf9d3a114f517e7"
},
"downloads": -1,
"filename": "record3d-1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f197f64cc747587e3f147832c6feba50",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 241874,
"upload_time": "2024-05-28T00:46:43",
"upload_time_iso_8601": "2024-05-28T00:46:43.441981Z",
"url": "https://files.pythonhosted.org/packages/93/5f/90dce251ac0db7cb1a94a4063862b1e1342352414f18e21c7427b7442bcd/record3d-1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a398c1c3a3ea934ebf6d5e5e134e312dc54cdc3b95cf5ba2fecc1a052b17161",
"md5": "99b77a00da5083d275e20d4d16f44a34",
"sha256": "2b78827c6ca30fa24056f407c8a92fdce07278c3a2325d87702ed96b0625ae53"
},
"downloads": -1,
"filename": "record3d-1.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "99b77a00da5083d275e20d4d16f44a34",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 246575,
"upload_time": "2024-05-28T00:45:36",
"upload_time_iso_8601": "2024-05-28T00:45:36.991524Z",
"url": "https://files.pythonhosted.org/packages/9a/39/8c1c3a3ea934ebf6d5e5e134e312dc54cdc3b95cf5ba2fecc1a052b17161/record3d-1.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5fb7c2f05e818124ef928d989ff4b29eab1e195fb6820541f1723f02cf599c5",
"md5": "0cfd6f868b21b01fb6fe131340070894",
"sha256": "68c7ce6180c1b872a8dd80ae152994584381e6110812ad2d4a781574c860c13d"
},
"downloads": -1,
"filename": "record3d-1.4-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "0cfd6f868b21b01fb6fe131340070894",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 170074,
"upload_time": "2024-05-28T00:46:45",
"upload_time_iso_8601": "2024-05-28T00:46:45.135470Z",
"url": "https://files.pythonhosted.org/packages/b5/fb/7c2f05e818124ef928d989ff4b29eab1e195fb6820541f1723f02cf599c5/record3d-1.4-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7909485e09399f71d69d959032266bacdb4d6515d6084552e55dcdd0796d31b",
"md5": "db461f69d63de2818dc294b92c53be84",
"sha256": "e8e61ba524996a793030753e8bac528b87811c864b9a70fa460a9ed320dfaeca"
},
"downloads": -1,
"filename": "record3d-1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "db461f69d63de2818dc294b92c53be84",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 246567,
"upload_time": "2024-05-28T00:46:46",
"upload_time_iso_8601": "2024-05-28T00:46:46.359471Z",
"url": "https://files.pythonhosted.org/packages/d7/90/9485e09399f71d69d959032266bacdb4d6515d6084552e55dcdd0796d31b/record3d-1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5238e88dcf085521f2a7a094381bf8b9c237dc3c9a60b800c429e891af865473",
"md5": "b405b2516fd91bbd9610efb167ba4e09",
"sha256": "9efb679a112b8f335576004e5a2315dcc19bf2388e9e1d3a3893059628dbd7e3"
},
"downloads": -1,
"filename": "record3d-1.4-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "b405b2516fd91bbd9610efb167ba4e09",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 170075,
"upload_time": "2024-05-28T00:46:48",
"upload_time_iso_8601": "2024-05-28T00:46:48.573106Z",
"url": "https://files.pythonhosted.org/packages/52/38/e88dcf085521f2a7a094381bf8b9c237dc3c9a60b800c429e891af865473/record3d-1.4-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d5f3ab68b3ea8c85602e44cfb10c8dde4ba85da16f5e2accc5eca3c4519b37a",
"md5": "64c0be37998fc376d030cdee2c6314b3",
"sha256": "a2beca9eecac1a1e33b523e554a49e0a08e1dc708f35e065ee41f9fbd10bafad"
},
"downloads": -1,
"filename": "record3d-1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "64c0be37998fc376d030cdee2c6314b3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 242487,
"upload_time": "2024-05-28T00:46:50",
"upload_time_iso_8601": "2024-05-28T00:46:50.254068Z",
"url": "https://files.pythonhosted.org/packages/4d/5f/3ab68b3ea8c85602e44cfb10c8dde4ba85da16f5e2accc5eca3c4519b37a/record3d-1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cdb354727817c2949e5b960bd2fd33ac0e9138f395d1519a2956873c426fa250",
"md5": "7ec5f132780d3c9e141505923ab7c2e7",
"sha256": "9e886d6443b8b144308c2e8cfce42e3783a95750bf863ccaf656db9a91cf546b"
},
"downloads": -1,
"filename": "record3d-1.4-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "7ec5f132780d3c9e141505923ab7c2e7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 169519,
"upload_time": "2024-05-28T00:46:51",
"upload_time_iso_8601": "2024-05-28T00:46:51.431707Z",
"url": "https://files.pythonhosted.org/packages/cd/b3/54727817c2949e5b960bd2fd33ac0e9138f395d1519a2956873c426fa250/record3d-1.4-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25e0ec3bdbfe532388cfc2d398b96dfd383dc08e5d3cf11c72cea781a18c26f6",
"md5": "eeebf8b28057135d7279596a2ed7464c",
"sha256": "d5539eb84539fc2f780c0e0289cec4a6f1941415ff9846ca9a410576ec06f5ab"
},
"downloads": -1,
"filename": "record3d-1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "eeebf8b28057135d7279596a2ed7464c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 242845,
"upload_time": "2024-05-28T00:46:52",
"upload_time_iso_8601": "2024-05-28T00:46:52.594938Z",
"url": "https://files.pythonhosted.org/packages/25/e0/ec3bdbfe532388cfc2d398b96dfd383dc08e5d3cf11c72cea781a18c26f6/record3d-1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "042b0cfbd5bd3ccd3216c6144050e28e9944fd2c418908eaa6246e358e9d1ad8",
"md5": "fcb76b3f1d646d7e4917768bf2d0c1ba",
"sha256": "44e640a25fce4f4ca4ff1c811607321a757a26e665db2853620c0ee97d8f39e1"
},
"downloads": -1,
"filename": "record3d-1.4-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "fcb76b3f1d646d7e4917768bf2d0c1ba",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 169672,
"upload_time": "2024-05-28T00:46:53",
"upload_time_iso_8601": "2024-05-28T00:46:53.835465Z",
"url": "https://files.pythonhosted.org/packages/04/2b/0cfbd5bd3ccd3216c6144050e28e9944fd2c418908eaa6246e358e9d1ad8/record3d-1.4-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f7a418b0a5fb161a4589058da6b2f9dec0e82eeea6a49ca09f4096609ac323c",
"md5": "356b2c667cdd1660288175832b96a798",
"sha256": "d24a6bdaedacb9fd1d4043a4ec1cd6b12ef803d12fbaa148a6e4f3a0dc2b19bd"
},
"downloads": -1,
"filename": "record3d-1.4.tar.gz",
"has_sig": false,
"md5_digest": "356b2c667cdd1660288175832b96a798",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 540941,
"upload_time": "2024-05-28T00:46:56",
"upload_time_iso_8601": "2024-05-28T00:46:56.030365Z",
"url": "https://files.pythonhosted.org/packages/4f/7a/418b0a5fb161a4589058da6b2f9dec0e82eeea6a49ca09f4096609ac323c/record3d-1.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-05-28 00:46:56",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "marek-simonik",
"github_project": "record3d",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "record3d"
}