py-opensonic 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- libopensonic/__init__.py +32 -0
- libopensonic/connection.py +2928 -0
- libopensonic/errors.py +68 -0
- py_opensonic-1.0.0.dist-info/LICENSE +674 -0
- py_opensonic-1.0.0.dist-info/METADATA +23 -0
- py_opensonic-1.0.0.dist-info/RECORD +8 -0
- py_opensonic-1.0.0.dist-info/WHEEL +5 -0
- py_opensonic-1.0.0.dist-info/top_level.txt +1 -0
libopensonic/__init__.py
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""
|
|
2
|
+
This file is part of py-opensonic.
|
|
3
|
+
|
|
4
|
+
py-opensonic is free software: you can redistribute it and/or modify
|
|
5
|
+
it under the terms of the GNU General Public License as published by
|
|
6
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
7
|
+
(at your option) any later version.
|
|
8
|
+
|
|
9
|
+
py-opensonic is distributed in the hope that it will be useful,
|
|
10
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
+
GNU General Public License for more details.
|
|
13
|
+
|
|
14
|
+
You should have received a copy of the GNU General Public License
|
|
15
|
+
along with py-opensonic. If not, see <http://www.gnu.org/licenses/>
|
|
16
|
+
|
|
17
|
+
For information on method calls, see 'pydoc libsonic.connection'
|
|
18
|
+
|
|
19
|
+
----------
|
|
20
|
+
Basic example:
|
|
21
|
+
----------
|
|
22
|
+
|
|
23
|
+
import libsonic
|
|
24
|
+
|
|
25
|
+
conn = libsonic.Connection('http://localhost' , 'admin' , 'password')
|
|
26
|
+
print conn.ping()
|
|
27
|
+
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
from .connection import *
|
|
31
|
+
|
|
32
|
+
__version__ = '1.0.0'
|