Skip to content

Python library for interacting with the NizimaLIVE API via WebSocket

License

Notifications You must be signed in to change notification settings

jellydreams/pyNizima

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyNizima

A python library for interacting with NizimaLIVE API

Quick Start

Install

pip install pynizima

Get Started

Exemple

📖 Read tutorial for more details

from pynizima import NizimaRequest
import asyncio

async def main():
    nz = NizimaRequest()
    plugin_name = 'YourPluginName'
    token = await nz.register_plugin(plugin_name)
    connection_enabled = await nz.establish_connection(plugin_name, token)
    while connection_enabled:
        # do your plugin logic here

if __name__ == "__main__":
    asyncio.run(main())

List of Methods

📖 Read methods documentation for more details.

Plugin Management

Parameter Control

Scene Management

Model Manipulation

Model Parts Manipulation

Item Management

Motion Control

Expression Management

About

Python library for interacting with the NizimaLIVE API via WebSocket

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages