Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/parkerbritt/houdini-clipboard-io
- Owner: ParkerBritt
- License: mit
- Created: 2024-03-14T00:52:52.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-10T11:42:18.000Z (7 months ago)
- Last Synced: 2024-04-10T12:43:08.002Z (7 months ago)
- Language: Python
- Size: 93.8 KB
- Stars: 0
- Watchers: 2
- 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