A python library for interacting with the VTube Studio API.
pyvts
is a python library for interacting with the VTube Studio API.
You can easily use the library to develop VTubeStudio Plugin to achieve your goals. For example, adding new tracking parameters to enable more actions on live2d avatars.
pip install pyvts
First import library you need,
import pyvts
import asyncio
Create an instance with default values, and do whateveer you want!
async def main():
vts = pyvts.vts()
await vts.connect()
# Implement what you want to do
await vts.close()
if __name__ == "__main__":
asyncio.run(main())
To see more examples, you could visit tutorial in documentation.
Contribution is welcome. Please follow the guide of CONTRIBUING.md.