pyvts icon indicating copy to clipboard operation
pyvts copied to clipboard

A python library for interacting with the VTube Studio API

Results 3 pyvts issues
Sort by recently updated
recently updated
newest added

code: ``` async def main(): vts = pyvts.vts(plugin_info=plugin_info) await vts.connect() await vts.request_authenticate_token() # get token await vts.request_authenticate() # use token new_parameter_name = "start_parameter" await vts.request( vts.vts_request.requestCustomParameter(new_parameter_name) ) global MyVts, character_id,...

**Describe the bug** The websocket limits only one coroutine to await on `recv` to prevent racing problem. However current pyvts introduces blocking behavior in https://github.com/Genteki/pyvts/blob/3c5fb840fe7e962830d0633d1e095f3409baab35/pyvts/vts.py#L117-L118 Because every spawned coroutine will...

I noticed that it always failed when I use `requestSetParameterValue` or functions like this to inject my value into `Param-xxx`, and returned code 423. It said that I can't inject...