Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Last synced: 9 days ago
JSON representation

Python module for creating and modifying Houdini clipboard items in external programs.

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 Houdini

First **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