diff --git a/.gitignore b/.gitignore index 1b1a6ae..93c05ed 100644 --- a/.gitignore +++ b/.gitignore @@ -4,8 +4,10 @@ disco*.egg-info/ storage.db storage.json *.dca +*.pyc .eggs/ .cache/ +.benchmarks/ __pycache__ # Documentation stuff @@ -13,3 +15,6 @@ docs/api/ docs/_build _book/ node_modules/ + +# JetBrains IDE +.idea/ diff --git a/README.md b/README.md index 8dcf3c6..5210235 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Disco was built to run both as a generic-use library, and a standalone bot toolk |----|------| |requests[security]|adds packages for a proper SSL implementation| |ujson|faster json parser, improves performance| -|erlpack|ETF parser, only Python 2.x, run with the --encoder=etf flag| +|erlpack (2.x), earl-etf (3.x)|ETF parser run with the --encoder=etf flag| |gipc|Gevent IPC, required for autosharding| ## Examples diff --git a/disco/gateway/encoding/etf.py b/disco/gateway/encoding/etf.py index 41445bd..5db9549 100644 --- a/disco/gateway/encoding/etf.py +++ b/disco/gateway/encoding/etf.py @@ -1,8 +1,13 @@ +import six from websocket import ABNF -from erlpack import unpack, pack from disco.gateway.encoding.base import BaseEncoder +if six.PY3: + from earl import unpack, pack +else: + from erlpack import unpack, pack + class ETFEncoder(BaseEncoder): TYPE = 'etf' @@ -14,4 +19,6 @@ class ETFEncoder(BaseEncoder): @staticmethod def decode(obj): + if six.PY3: + return unpack(obj, encoding='utf-8', encode_binary_ext=True) return unpack(obj) diff --git a/setup.py b/setup.py index 5d3eeb6..4c5a8a9 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ +import sys from setuptools import setup, find_packages from disco import VERSION - with open('requirements.txt') as f: requirements = f.readlines() @@ -14,7 +14,7 @@ extras_require = { 'http': ['flask==0.12.2'], 'yaml': ['pyyaml==3.12'], 'music': ['youtube_dl>=2018.1.14'], - 'performance': ['erlpack==0.3.2', 'ujson==1.35'], + 'performance': ['erlpack==0.3.2' if sys.version_info.major == 2 else 'earl-etf==2.1.2', 'ujson==1.35'], 'sharding': ['gipc==0.6.0'], 'docs': ['biblio==0.0.4'], }