sapien


Namesapien JSON
Version 3.0.0 PyPI version JSON
download
home_pagehttps://sapien.ucsd.edu
Summary['SAPIEN: A SimulAted Parted based Interactive ENvironment']
upload_time2025-07-25 22:51:37
maintainerNone
docs_urlNone
authorSapien
requires_python>=3.7
licenseMIT
keywords robotics simulator dataset articulation partnet
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # SAPIEN
SAPIEN is a realistic and physics-rich simulated environment that hosts a
large-scale set for articulated objects. It enables various robotic vision and
interaction tasks that require detailed part-level understanding. SAPIEN is a
collaborative effort between researchers at UCSD, Stanford and SFU. The dataset
is a continuation of ShapeNet and PartNet.

## Getting Started
SAPIEN is distributed via [PyPI](https://pypi.org/project/sapien/). Installation is just

```shell
pip install sapien
```

It requires Linux with NVIDIA, AMD, or Intel GPU to run. Verify installation with

```shell
python -m sapien.exapmle.hello_world
```

Next, follow our tutorial at:
[https://sapien-sim.github.io/docs/](https://sapien-sim.github.io/docs/).

### Offscreen rendering on a server
To use SAPIEN on a GPU server without display, the only system dependencies
required are `libegl1` and `libxext6`. If using NVIDIA docker environment,
enable graphics, utility, and compute by setting the environment variable in the
Dockerfile.
```Dockerfile
ENV NVIDIA_DRIVER_CAPABILITIES graphics,utility,compute
```

### Virtual desktop on a server
To use SAPIEN on a GPU server with virtual display, additionally install `xvfb`,
`x11vnc`, and any window manager such as `fluxbox` or `xfce`. Add display
capabilities for NVIDIA docker.
```Dockerfile
ENV NVIDIA_DRIVER_CAPABILITIES graphics,utility,compute,display
```

Assuming `fluxbox`, start a VNC server by 
```shell
x11vnc -create -env FD_PROG=/usr/bin/fluxbox  -env X11VNC_FINDDISPLAY_ALWAYS_FAILS=1 -env X11VNC_CREATE_GEOM=${99:-1920x1080x16} -gone 'pkill Xvfb' -nopw
# Note: you should use a strong password and/or only allow local access
```
Now you can connect to the server at port 5900. SAPIEN should be fully functional, test with
```shell
python -m sapien.exapmle.hello_world
```

## Change Log
<details open> <summary>3.0</summary>

- Major API & infrastructure overhaul
  - Refactor SAPIEN core to use entity-component system
    - Actor from SAPIEN 2 now becomes Entity in SAPIEN 3
    - Functionalities of an Actor now becomes components attached to an entity.
    - See updated [documentation](https://sapien-sim.github.io/docs/) for usage.
    - Actor builder and articulation builder APIs are mostly unchanged, except
      the `color` and `material` parameters for visual shapes are unified to
      `material`.
  - Support for PhysX 5 GPU simulation. See
    [ManiSkill](https://github.com/haosulab/ManiSkill/) for how it is used to
    build robot learning environments.

<details> 
<summary>2.2</summary>

- Rename `VulkanRenderer` to `SapienRenderer` (VulkanRenderer is still an alias)
- Support **ray tracing** in `SapienRenderer`
- Deprecate `KuafuRenderer`, use the rt shader in `SapienRenderer` instead
- **GPU-accelerated stereo depth sensor simulation**
- **Render server**
- Python 3.11
- bug fixes
  - Fix inverse kinematics default active joint mask (now defaults to all 1s)
  - Fix incorrectly exported memory in Vulkan-Cuda interop
  - Fix joint `get_global_pose`
</details>

<details>
<summary>2.1</summary>

- Python 3.10
- Bug fixes
  - crash when not using renderer
  - joint force limit (was impulse limit)
  - incorrect inertia computation in scaled URDF
  - incorrect point-light shadow
  - incorrect collision when loaded from dae
- Utility improvements
  - set_material
  - active light
  - flat shading
  - dynamic point rendering
  - envmap generation
  - multi-thread envs

</details>

<details>
<summary>2.1</summary>

- Refactor light system
  - Remove light functions on scene.renderer_scene
- Refactor camera system
  - Cameras no longer require mounts
  - Camera can change its mount and mounted pose by `camera.set_parent` and
    `camera.set_local_pose`.
  - When camera is not mounted, setting local pose is setting its global pose.
  - Add functions `scene.add_camera` and `scene.remove_camera`
  - `add_mounted_camera` can be replaced with `add_camera` followed by
    `camera.set_parent` and `camera.set_local_pose`. `add_mounted_camera` is
    still provided but fovx should not longer be provided.
  - Remove functions related to mount, including `find_camera_by_mount`.
  - Cameras now support full camera parameters through `camera.near`,
    `camera.far`, `camera.set_fovx`, `camera.set_fovy`,
    `camera.set_focal_lengths`, `camera.set_principal_point`, `camera.skew`, and
    the all-in-one method `camera.set_perspective_parameters`.
- Refactor render shape system
  - Originally, after `actor.get_visual_bodies()` and
    `visual_body.get_render_shapes()`, users typically do `shape.scale` and
    `shape.pose`. These are no longer valid. It is required to check
    `visual_body.type`. When `type` is `mesh`, `shape.scale` is replaced with
    `visual_body.scale` and `shape.pose` is replaced by
    `visual_body.local_pose`. These changes are made to match `add_visual_shape`
    functions when building the actor.
</details>

<details>
<summary>pre2.0</summary>

- Shader change: 4th component in default camera shader now gives the 0-1 depth value.
- Add "critical" and "off" log levels.
- Add support for pointcloud and line rendering (for visualizing camera and point cloud)
- Performance: the same shader only compile once per process
- Bug fix
  - Articulation setDriveTarget was now correctly reversed for prismatic joint (joint setDriveTarget is not affected)
  - Fix kinematic articulation loader
</details>

<details>
<summary>1 to 2 migration</summary>

- replace `scene.renderer_scene.add_xxx_light` with `scene.add_xxx_light`
- replace `scene.remove_mounted_camera` with `scene.remove_camera`
- optionally, remove `fovx` from `scene.add_mounted_camera`.
</details>


<details>
<summary>1.1</summary>

- Support nonconvex static/kinematic collision shape
- Add warning for small mass/inertia
- Introduce Entity as the base class of Actors
- Add Light classes inherited from entity, allowing manipulate light objects in sapien scene
- Updates to the viewer
  - rename actor to entity when appropriate
- Partial support the material tag in URDF loader (primitive shape, single color)
- Bug fixes for the renderer
- Support inner and outer FOV for spotlight
</details>

<details>
<summary>1.0</summary>

- Replace the old Vulkan based renderer completely
  - See `sapien.core.renderer` for details
- Expose GUI functionalities to Python
- Reimplement Vulkan viewer in Python 
- Expose PhysX shape wrapper to Python. For example,
  - Collision shapes can be retrieved through `actor.get_collision_shapes`
  - Collision groups on a shape can be set by `CollisionShape.set_collision_groups`
  - Shapes are now also available in `Contact`.
- API changes
  - Render material creation is now `renderer.create_material()`
  - in actor builder: `add_xxx_shape` is replaced with `add_xxx_collision`.
  - move light functions from scene to `scene.renderer_scene`
- Add centrifugal and Coriolis force.
- Change default physical parameters for better stability.
</details>

## Website and Documentation
SAPIEN Website: [https://sapien.ucsd.edu/](https://sapien.ucsd.edu/). SAPIEN
Documentation:
[https://sapien-sim.github.io/docs/](https://sapien-sim.github.io/docs/).

## Build from source
### Before build
Make sure all submodules are initialized `git submodule update --init --recursive`.

### Build with Docker
To build SAPIEN, simply run `./scripts/docker_build_wheels.sh`. It is not recommended to
build outside of our provided docker.

For reference, the Dockerfile is provided [here](/docker/Dockerfile). Note that
PhysX needs to be compiled with clang-9 into static libraries before building
the Docker image.

### Build without Docker
It can be tricky to setup all dependencies outside of a Docker environment. You
need to install all dependencies according to the [Docker
environment](/docker/Dockerfile). If all dependencies set up correctly, run
`python setup.py bdist_wheel` to build the wheel.

## Cite SAPIEN
If you use SAPIEN and its assets, please cite the following works:
```
@InProceedings{Xiang_2020_SAPIEN,
author = {Xiang, Fanbo and Qin, Yuzhe and Mo, Kaichun and Xia, Yikuan and Zhu, Hao and Liu, Fangchen and Liu, Minghua and Jiang, Hanxiao and Yuan, Yifu and Wang, He and Yi, Li and Chang, Angel X. and Guibas, Leonidas J. and Su, Hao},
title = {{SAPIEN}: A SimulAted Part-based Interactive ENvironment},
booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
month = {June},
year = {2020}}
```
```
@InProceedings{Mo_2019_CVPR,
author = {Mo, Kaichun and Zhu, Shilin and Chang, Angel X. and Yi, Li and Tripathi, Subarna and Guibas, Leonidas J. and Su, Hao},
title = {{PartNet}: A Large-Scale Benchmark for Fine-Grained and Hierarchical Part-Level {3D} Object Understanding},
booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
month = {June},
year = {2019}
}
```
```
@article{chang2015shapenet,
title={Shapenet: An information-rich 3d model repository},
author={Chang, Angel X and Funkhouser, Thomas and Guibas, Leonidas and Hanrahan, Pat and Huang, Qixing and Li, Zimo and Savarese, Silvio and Savva, Manolis and Song, Shuran and Su, Hao and others},
journal={arXiv preprint arXiv:1512.03012},
year={2015}
}
```
If you use SAPIEN Realistic Depth generated by SAPIEN's simulated depth sensor, please cite the following work:
```
@ARTICLE{10027470,
  author={Zhang, Xiaoshuai and Chen, Rui and Li, Ang and Xiang, Fanbo and Qin, Yuzhe and Gu, Jiayuan and Ling, Zhan and Liu, Minghua and Zeng, Peiyu and Han, Songfang and Huang, Zhiao and Mu, Tongzhou and Xu, Jing and Su, Hao},
  journal={IEEE Transactions on Robotics}, 
  title={Close the Optical Sensing Domain Gap by Physics-Grounded Active Stereo Sensor Simulation}, 
  year={2023},
  volume={},
  number={},
  pages={1-19},
  doi={10.1109/TRO.2023.3235591}}
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://sapien.ucsd.edu",
    "name": "sapien",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "robotics simulator dataset articulation partnet",
    "author": "Sapien",
    "author_email": "sapienaicontact@gmail.com",
    "download_url": null,
    "platform": null,
    "description": "# SAPIEN\nSAPIEN is a realistic and physics-rich simulated environment that hosts a\nlarge-scale set for articulated objects. It enables various robotic vision and\ninteraction tasks that require detailed part-level understanding. SAPIEN is a\ncollaborative effort between researchers at UCSD, Stanford and SFU. The dataset\nis a continuation of ShapeNet and PartNet.\n\n## Getting Started\nSAPIEN is distributed via [PyPI](https://pypi.org/project/sapien/). Installation is just\n\n```shell\npip install sapien\n```\n\nIt requires Linux with NVIDIA, AMD, or Intel GPU to run. Verify installation with\n\n```shell\npython -m sapien.exapmle.hello_world\n```\n\nNext, follow our tutorial at:\n[https://sapien-sim.github.io/docs/](https://sapien-sim.github.io/docs/).\n\n### Offscreen rendering on a server\nTo use SAPIEN on a GPU server without display, the only system dependencies\nrequired are `libegl1` and `libxext6`. If using NVIDIA docker environment,\nenable graphics, utility, and compute by setting the environment variable in the\nDockerfile.\n```Dockerfile\nENV NVIDIA_DRIVER_CAPABILITIES graphics,utility,compute\n```\n\n### Virtual desktop on a server\nTo use SAPIEN on a GPU server with virtual display, additionally install `xvfb`,\n`x11vnc`, and any window manager such as `fluxbox` or `xfce`. Add display\ncapabilities for NVIDIA docker.\n```Dockerfile\nENV NVIDIA_DRIVER_CAPABILITIES graphics,utility,compute,display\n```\n\nAssuming `fluxbox`, start a VNC server by \n```shell\nx11vnc -create -env FD_PROG=/usr/bin/fluxbox  -env X11VNC_FINDDISPLAY_ALWAYS_FAILS=1 -env X11VNC_CREATE_GEOM=${99:-1920x1080x16} -gone 'pkill Xvfb' -nopw\n# Note: you should use a strong password and/or only allow local access\n```\nNow you can connect to the server at port 5900. SAPIEN should be fully functional, test with\n```shell\npython -m sapien.exapmle.hello_world\n```\n\n## Change Log\n<details open> <summary>3.0</summary>\n\n- Major API & infrastructure overhaul\n  - Refactor SAPIEN core to use entity-component system\n    - Actor from SAPIEN 2 now becomes Entity in SAPIEN 3\n    - Functionalities of an Actor now becomes components attached to an entity.\n    - See updated [documentation](https://sapien-sim.github.io/docs/) for usage.\n    - Actor builder and articulation builder APIs are mostly unchanged, except\n      the `color` and `material` parameters for visual shapes are unified to\n      `material`.\n  - Support for PhysX 5 GPU simulation. See\n    [ManiSkill](https://github.com/haosulab/ManiSkill/) for how it is used to\n    build robot learning environments.\n\n<details> \n<summary>2.2</summary>\n\n- Rename `VulkanRenderer` to `SapienRenderer` (VulkanRenderer is still an alias)\n- Support **ray tracing** in `SapienRenderer`\n- Deprecate `KuafuRenderer`, use the rt shader in `SapienRenderer` instead\n- **GPU-accelerated stereo depth sensor simulation**\n- **Render server**\n- Python 3.11\n- bug fixes\n  - Fix inverse kinematics default active joint mask (now defaults to all 1s)\n  - Fix incorrectly exported memory in Vulkan-Cuda interop\n  - Fix joint `get_global_pose`\n</details>\n\n<details>\n<summary>2.1</summary>\n\n- Python 3.10\n- Bug fixes\n  - crash when not using renderer\n  - joint force limit (was impulse limit)\n  - incorrect inertia computation in scaled URDF\n  - incorrect point-light shadow\n  - incorrect collision when loaded from dae\n- Utility improvements\n  - set_material\n  - active light\n  - flat shading\n  - dynamic point rendering\n  - envmap generation\n  - multi-thread envs\n\n</details>\n\n<details>\n<summary>2.1</summary>\n\n- Refactor light system\n  - Remove light functions on scene.renderer_scene\n- Refactor camera system\n  - Cameras no longer require mounts\n  - Camera can change its mount and mounted pose by `camera.set_parent` and\n    `camera.set_local_pose`.\n  - When camera is not mounted, setting local pose is setting its global pose.\n  - Add functions `scene.add_camera` and `scene.remove_camera`\n  - `add_mounted_camera` can be replaced with `add_camera` followed by\n    `camera.set_parent` and `camera.set_local_pose`. `add_mounted_camera` is\n    still provided but fovx should not longer be provided.\n  - Remove functions related to mount, including `find_camera_by_mount`.\n  - Cameras now support full camera parameters through `camera.near`,\n    `camera.far`, `camera.set_fovx`, `camera.set_fovy`,\n    `camera.set_focal_lengths`, `camera.set_principal_point`, `camera.skew`, and\n    the all-in-one method `camera.set_perspective_parameters`.\n- Refactor render shape system\n  - Originally, after `actor.get_visual_bodies()` and\n    `visual_body.get_render_shapes()`, users typically do `shape.scale` and\n    `shape.pose`. These are no longer valid. It is required to check\n    `visual_body.type`. When `type` is `mesh`, `shape.scale` is replaced with\n    `visual_body.scale` and `shape.pose` is replaced by\n    `visual_body.local_pose`. These changes are made to match `add_visual_shape`\n    functions when building the actor.\n</details>\n\n<details>\n<summary>pre2.0</summary>\n\n- Shader change: 4th component in default camera shader now gives the 0-1 depth value.\n- Add \"critical\" and \"off\" log levels.\n- Add support for pointcloud and line rendering (for visualizing camera and point cloud)\n- Performance: the same shader only compile once per process\n- Bug fix\n  - Articulation setDriveTarget was now correctly reversed for prismatic joint (joint setDriveTarget is not affected)\n  - Fix kinematic articulation loader\n</details>\n\n<details>\n<summary>1 to 2 migration</summary>\n\n- replace `scene.renderer_scene.add_xxx_light` with `scene.add_xxx_light`\n- replace `scene.remove_mounted_camera` with `scene.remove_camera`\n- optionally, remove `fovx` from `scene.add_mounted_camera`.\n</details>\n\n\n<details>\n<summary>1.1</summary>\n\n- Support nonconvex static/kinematic collision shape\n- Add warning for small mass/inertia\n- Introduce Entity as the base class of Actors\n- Add Light classes inherited from entity, allowing manipulate light objects in sapien scene\n- Updates to the viewer\n  - rename actor to entity when appropriate\n- Partial support the material tag in URDF loader (primitive shape, single color)\n- Bug fixes for the renderer\n- Support inner and outer FOV for spotlight\n</details>\n\n<details>\n<summary>1.0</summary>\n\n- Replace the old Vulkan based renderer completely\n  - See `sapien.core.renderer` for details\n- Expose GUI functionalities to Python\n- Reimplement Vulkan viewer in Python \n- Expose PhysX shape wrapper to Python. For example,\n  - Collision shapes can be retrieved through `actor.get_collision_shapes`\n  - Collision groups on a shape can be set by `CollisionShape.set_collision_groups`\n  - Shapes are now also available in `Contact`.\n- API changes\n  - Render material creation is now `renderer.create_material()`\n  - in actor builder: `add_xxx_shape` is replaced with `add_xxx_collision`.\n  - move light functions from scene to `scene.renderer_scene`\n- Add centrifugal and Coriolis force.\n- Change default physical parameters for better stability.\n</details>\n\n## Website and Documentation\nSAPIEN Website: [https://sapien.ucsd.edu/](https://sapien.ucsd.edu/). SAPIEN\nDocumentation:\n[https://sapien-sim.github.io/docs/](https://sapien-sim.github.io/docs/).\n\n## Build from source\n### Before build\nMake sure all submodules are initialized `git submodule update --init --recursive`.\n\n### Build with Docker\nTo build SAPIEN, simply run `./scripts/docker_build_wheels.sh`. It is not recommended to\nbuild outside of our provided docker.\n\nFor reference, the Dockerfile is provided [here](/docker/Dockerfile). Note that\nPhysX needs to be compiled with clang-9 into static libraries before building\nthe Docker image.\n\n### Build without Docker\nIt can be tricky to setup all dependencies outside of a Docker environment. You\nneed to install all dependencies according to the [Docker\nenvironment](/docker/Dockerfile). If all dependencies set up correctly, run\n`python setup.py bdist_wheel` to build the wheel.\n\n## Cite SAPIEN\nIf you use SAPIEN and its assets, please cite the following works:\n```\n@InProceedings{Xiang_2020_SAPIEN,\nauthor = {Xiang, Fanbo and Qin, Yuzhe and Mo, Kaichun and Xia, Yikuan and Zhu, Hao and Liu, Fangchen and Liu, Minghua and Jiang, Hanxiao and Yuan, Yifu and Wang, He and Yi, Li and Chang, Angel X. and Guibas, Leonidas J. and Su, Hao},\ntitle = {{SAPIEN}: A SimulAted Part-based Interactive ENvironment},\nbooktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},\nmonth = {June},\nyear = {2020}}\n```\n```\n@InProceedings{Mo_2019_CVPR,\nauthor = {Mo, Kaichun and Zhu, Shilin and Chang, Angel X. and Yi, Li and Tripathi, Subarna and Guibas, Leonidas J. and Su, Hao},\ntitle = {{PartNet}: A Large-Scale Benchmark for Fine-Grained and Hierarchical Part-Level {3D} Object Understanding},\nbooktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},\nmonth = {June},\nyear = {2019}\n}\n```\n```\n@article{chang2015shapenet,\ntitle={Shapenet: An information-rich 3d model repository},\nauthor={Chang, Angel X and Funkhouser, Thomas and Guibas, Leonidas and Hanrahan, Pat and Huang, Qixing and Li, Zimo and Savarese, Silvio and Savva, Manolis and Song, Shuran and Su, Hao and others},\njournal={arXiv preprint arXiv:1512.03012},\nyear={2015}\n}\n```\nIf you use SAPIEN Realistic Depth generated by SAPIEN's simulated depth sensor, please cite the following work:\n```\n@ARTICLE{10027470,\n  author={Zhang, Xiaoshuai and Chen, Rui and Li, Ang and Xiang, Fanbo and Qin, Yuzhe and Gu, Jiayuan and Ling, Zhan and Liu, Minghua and Zeng, Peiyu and Han, Songfang and Huang, Zhiao and Mu, Tongzhou and Xu, Jing and Su, Hao},\n  journal={IEEE Transactions on Robotics}, \n  title={Close the Optical Sensing Domain Gap by Physics-Grounded Active Stereo Sensor Simulation}, \n  year={2023},\n  volume={},\n  number={},\n  pages={1-19},\n  doi={10.1109/TRO.2023.3235591}}\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "['SAPIEN: A SimulAted Parted based Interactive ENvironment']",
    "version": "3.0.0",
    "project_urls": {
        "Documentation": "https://sapien.ucsd.edu/docs",
        "Homepage": "https://sapien.ucsd.edu"
    },
    "split_keywords": [
        "robotics",
        "simulator",
        "dataset",
        "articulation",
        "partnet"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07bc08e3f503484cf30b8cf98ef4696600e73a049ec73f6ae01767b2d0eb0476",
                "md5": "147ec3ced53987c26a76a5d0fa39c42e",
                "sha256": "c57837cc6998f42dad1355c2332b1d0e5b815acb438f4f38f250de8e2576cc90"
            },
            "downloads": -1,
            "filename": "sapien-3.0.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "147ec3ced53987c26a76a5d0fa39c42e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 51298261,
            "upload_time": "2025-07-25T22:51:37",
            "upload_time_iso_8601": "2025-07-25T22:51:37.676502Z",
            "url": "https://files.pythonhosted.org/packages/07/bc/08e3f503484cf30b8cf98ef4696600e73a049ec73f6ae01767b2d0eb0476/sapien-3.0.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e5c63fcbcd5d65ab2b30f34868f3d708798634683e6bd2f8eb35954ff6b45ac",
                "md5": "00b6515210adc63fc4696289e30dd7e8",
                "sha256": "99218dd5c20a39e04462011e48f83a9dbf30e616452ef61d5fb00c2c962eea7c"
            },
            "downloads": -1,
            "filename": "sapien-3.0.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00b6515210adc63fc4696289e30dd7e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 51299284,
            "upload_time": "2025-07-25T22:51:45",
            "upload_time_iso_8601": "2025-07-25T22:51:45.043567Z",
            "url": "https://files.pythonhosted.org/packages/6e/5c/63fcbcd5d65ab2b30f34868f3d708798634683e6bd2f8eb35954ff6b45ac/sapien-3.0.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6a726fe192f0d144522adaa75e5849f8cdf4ee1ef40687caed9c5ea455bfd73",
                "md5": "26463bcd2646a3e4eb3b65b2a771ef89",
                "sha256": "3567f305f632f7fb1a61f7327790663488d1ed2a3d47897df85d54dc58508ecb"
            },
            "downloads": -1,
            "filename": "sapien-3.0.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26463bcd2646a3e4eb3b65b2a771ef89",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 51295376,
            "upload_time": "2025-07-25T22:51:49",
            "upload_time_iso_8601": "2025-07-25T22:51:49.446429Z",
            "url": "https://files.pythonhosted.org/packages/b6/a7/26fe192f0d144522adaa75e5849f8cdf4ee1ef40687caed9c5ea455bfd73/sapien-3.0.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d50179dd1958c1da17c45fb401eb177883f53a9c27b074a33717b75279203c2",
                "md5": "cd29d01c98a246ea865ff9b70dfb2a67",
                "sha256": "b6a828e74bcae1cbcf7e2781fcc6fd59cb091b6922dfd3ef4d2dc169e50d8d7b"
            },
            "downloads": -1,
            "filename": "sapien-3.0.0-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd29d01c98a246ea865ff9b70dfb2a67",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 51295662,
            "upload_time": "2025-07-25T22:51:53",
            "upload_time_iso_8601": "2025-07-25T22:51:53.896244Z",
            "url": "https://files.pythonhosted.org/packages/3d/50/179dd1958c1da17c45fb401eb177883f53a9c27b074a33717b75279203c2/sapien-3.0.0-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9200428e92e8eae516d8a8ed5d166cf953b0a2cf01fe8c85321b9bc8195c8435",
                "md5": "8386e8348c51d1771d62f8e5f204c218",
                "sha256": "f7c587397a127815f76f8e60e452925d44fa1a38e57e316fd72e010031c79325"
            },
            "downloads": -1,
            "filename": "sapien-3.0.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8386e8348c51d1771d62f8e5f204c218",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 51298491,
            "upload_time": "2025-07-25T22:51:58",
            "upload_time_iso_8601": "2025-07-25T22:51:58.306545Z",
            "url": "https://files.pythonhosted.org/packages/92/00/428e92e8eae516d8a8ed5d166cf953b0a2cf01fe8c85321b9bc8195c8435/sapien-3.0.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-25 22:51:37",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "sapien"
}
        
Elapsed time: 0.43536s