-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
the __all__ in __init__.py ensures that all imports continue to work
- Loading branch information
1 parent
0532bdc
commit c2c888c
Showing
3 changed files
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" SoCo (Sonos Controller) is a simple library to control Sonos speakers """ | ||
|
||
# Will be parsed by setup.py to determine package metadata | ||
__author__ = 'Rahim Sonawalla <[email protected]>' | ||
__version__ = '0.5' | ||
__website__ = 'https://github.com/rahims/SoCo' | ||
__license__ = 'MIT License' | ||
|
||
|
||
from core import SonosDiscovery, SoCo | ||
|
||
__all__ = ['SonosDiscovery', 'SoCo'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" SoCo (Sonos Controller) is a simple library to control Sonos speakers """ | ||
|
||
# Will be parsed by setup.py to determine package metadata | ||
__author__ = 'Rahim Sonawalla <[email protected]>' | ||
__version__ = '0.5' | ||
__website__ = 'https://github.com/rahims/SoCo' | ||
__license__ = 'MIT License' | ||
|
||
import xml.etree.cElementTree as XML | ||
|
||
import requests | ||
|
@@ -17,7 +9,6 @@ | |
|
||
logger = logging.getLogger(__name__) | ||
|
||
__all__ = ['SonosDiscovery', 'SoCo'] | ||
|
||
class SonosDiscovery(object): | ||
"""A simple class for discovering Sonos speakers. | ||
|