A Python Teamspeak3-Query Library


Keywords
ts3, pyts3, ts3py, teamspeak, teamspeak3
Install
pip install TS3Py==0.4.3

Documentation

TS3Py

Build Status Documentation Status PyPI

A Python Teamspeak3-Query Library

Checkout the upcoming version with a completely new API here.

Installation

pip install TS3Py

Examples

from ts3py import TS3Query
c = TS3Query('ts.example.com')
c.login('serveradmin', 'password')
c.use(1)
channellist = c.channellist()
for channel_id in channellist:
    print(channel_id, channellist[channel_id], sep='|')
c.disconnect()