Python scripting for TVPaint
Project description
PyTVPaint 🐍 → 🦋
PyTVPaint is a type-safe Python library that wraps the George programming language commands in order to interact with the 2D animation software TVPaint.
It communicates through WebSocket to a custom C++ plugin running in an open TVPaint instance.
You can check the documentation for more details.
Installation
Requirements
- Windows (for now, see this)
- Python v3.9+
- TVPaint v11.5+
- TVPaint RPC plugin (install instructions here)
Install the package with Pip:
pip install pytvpaint
Simple example
from pytvpaint import george
from pytvpaint.project import Project
# Get access to tvp elements
project = Project.load("scene.tvpp", silent=True)
clip = project.current_clip
# Or get the clip by name
clip = project.get_clip(by_name="my_clip")
layer = clip.add_layer("my_new_layer")
# Check out other layers
for layer in clip.layers:
print(layer.name)
# Get access to George functions
george.tv_rect(50, 50, 100, 100)
# Render your file
clip.render("./out.#.png", start=20, end=45)
project.close()
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Disclaimer
PyTVPaint is a project created at BRUNCH Studio to facilitate our development experience with George. The API is targeted at experienced developers and is by no means a replacement for TVPaint or George but simply builds on it.
We are not affiliated with the TVPaint development team and therefore can't fix any bugs in the software or the George API.
Please direct your issues appropriately; any issues with PyTVPaint should be submitted as an issue in this repository or the C++ plugin's repository, any issues with TVPaint the software should be addressed to the tvp support team.
For any questions on the limitations of our API, please head to this page.
License
TVPaint 12
PyTVPaint is incompatible with TVPaint-12. For now, it seems to still be compatible with George (maybe just for compatibility with older versions) but we do not currently have the new SDK, which is required to compile the c++ plugin, the documentation is also currently unavailable, we will update this when we have access to these requirements.
Made with ❤️ at BRUNCH Studio
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytvpaint-1.0.2.tar.gz.
File metadata
- Download URL: pytvpaint-1.0.2.tar.gz
- Upload date:
- Size: 59.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.9.20 Linux/6.8.0-1014-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c518635ee87501666b6fb68055b6e554ced1e4ee2b3c05a189ec85ec925030e5
|
|
| MD5 |
185f51f42bad07f36ea0182e3bab1288
|
|
| BLAKE2b-256 |
ff6b815840195b0dbd46482aef2e140cd90893ad0cfa18c5126d4febbd1f0a09
|
File details
Details for the file pytvpaint-1.0.2-py3-none-any.whl.
File metadata
- Download URL: pytvpaint-1.0.2-py3-none-any.whl
- Upload date:
- Size: 67.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.9.20 Linux/6.8.0-1014-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22c5abb2032bea10fdadc28239983da21a3e85aecbbdff8d7b2ed145e05e67fa
|
|
| MD5 |
dfdd6d3f9b21a852b18c94770f88d0ba
|
|
| BLAKE2b-256 |
03f0b5ca4d776a366dd46edd5d55f950fece7e7c3a36dff044c043e72fe79245
|