Skip to content

Thor77/TS3Py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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()

About

A Python Teamspeak3-Query Library

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages