https://github.com/parkerbritt/houdini-clipboard-io
Python module for creating and modifying Houdini clipboard items in external programs.
https://github.com/parkerbritt/houdini-clipboard-io
clipboard clipboard-manager houdini sidefx-houdini vfx-pipeline
Last synced: 3 months ago
JSON representation
Python module for creating and modifying Houdini clipboard items in external programs.
- Host: GitHub
- URL: https://github.com/parkerbritt/houdini-clipboard-io
- Owner: ParkerBritt
- License: mit
- Created: 2024-03-14T00:52:52.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-10T11:42:18.000Z (about 1 year ago)
- Last Synced: 2025-02-24T04:51:32.066Z (3 months ago)
- Topics: clipboard, clipboard-manager, houdini, sidefx-houdini, vfx-pipeline
- Language: Python
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Houdini Clipboard IO
![]()
![]()
**Houdini Clipboard IO** is a Python package, providing tools for creating and **modifying nodes in Houdini's clipboard** from external programs.
> Early WIP
> Because of Houdini's DRM it is not possible to use .cpio files generated with a non commercial version of Houdini.## Installation
### Requirements
- Python >= 3.6
- Sidefx HoudiniFirst **clone** and **cd** into the repository
```bash
git clone https://github.com/ParkerBritt/houdini-clipboard-io
cd houdini-clipboard-io
```
### (Option 1) Interactive installation
Run the **install** command
```bash
pip install -e .
```
### (Option 2) Regular installation
**Build** the tar.gz package
```bash
pip install build
python -m build --sdist
```
**Install** the built package, make sure to type the relevant package version
```bash
pip install dist/hclipboard_io-0.1.0.tar.gz
```## Usage
**Import** the package
```python
import hclipboard_io
```
placeholder