Skip to content
This repository has been archived by the owner on Apr 27, 2021. It is now read-only.

Commit

Permalink
👾 This should resolve #16!
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthurdw committed Apr 4, 2021
1 parent 06bf295 commit 0e8522a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dogehouse/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# SOFTWARE.

# Semantic Version
__version__ = "1.4.1"
__version__ = "1.4.2"

# The socket url for the dogehouse API
apiUrl ="wss://api.dogehouse.tv/socket"
Expand Down
6 changes: 5 additions & 1 deletion dogehouse/ext/telemetry.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
try:
from socketio import AsyncClient
except (ImportError, ModuleNotFoundError):
raise ImportError("To use telemetry you must install the `telemetry` option. (run `pip install -U dogehouse[telemetry]`)")

from json import dumps
from asyncio import run
from socketio import AsyncClient

socket = AsyncClient()
activated = False
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='dogehouse',
packages=["dogehouse", "dogehouse.utils"],
packages=["dogehouse", "dogehouse.utils", "dogehouse.ext"],
version=__version__,
license='MIT',
description='A Python wrapper for the Dogehouse API.',
Expand Down

0 comments on commit 0e8522a

Please sign in to comment.