https://github.com/thor77/ts3py
A Python Teamspeak3-Query Library
https://github.com/thor77/ts3py
python teamspeak3
Last synced: about 1 year ago
JSON representation
A Python Teamspeak3-Query Library
- Host: GitHub
- URL: https://github.com/thor77/ts3py
- Owner: Thor77
- Created: 2014-06-03T11:54:19.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2017-02-08T21:23:27.000Z (over 9 years ago)
- Last Synced: 2025-04-12T08:03:46.037Z (about 1 year ago)
- Topics: python, teamspeak3
- Language: Python
- Homepage:
- Size: 117 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
TS3Py
=====
[](https://travis-ci.org/Thor77/TS3Py) [](http://ts3py.readthedocs.org/en/latest/?badge=latest) [](https://pypi.python.org/pypi/TS3Py)
A Python Teamspeak3-Query Library
Checkout the upcoming version with a completely new API [here](https://github.com/Thor77/TS3Py/tree/develop).
Installation
============
`pip install TS3Py`
Examples
========
```python
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()
```