Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thor77/ts3py
A Python Teamspeak3-Query Library
https://github.com/thor77/ts3py
python teamspeak3
Last synced: about 8 hours 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-08T21:23:27.000Z (over 7 years ago)
- Last Synced: 2024-10-12T23:25:51.471Z (27 days ago)
- Topics: python, teamspeak3
- Language: Python
- Homepage:
- Size: 117 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
TS3Py
=====
[![Build Status](https://travis-ci.org/Thor77/TS3Py.svg?branch=master)](https://travis-ci.org/Thor77/TS3Py) [![Documentation Status](https://readthedocs.org/projects/ts3py/badge/?version=latest)](http://ts3py.readthedocs.org/en/latest/?badge=latest) [![PyPI](https://img.shields.io/pypi/v/TS3Py.svg)](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()
```