From bc0878f4cf10175424c196d6a4ff8c3c70dce90a Mon Sep 17 00:00:00 2001 From: Andrei Date: Sat, 17 Jun 2017 04:49:21 -0700 Subject: [PATCH] Remove requirement for inflection library --- disco/__init__.py | 2 +- disco/gateway/events.py | 5 ++--- disco/state.py | 4 ++-- disco/util/string.py | 9 +++++++++ requirements.txt | 1 - 5 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 disco/util/string.py diff --git a/disco/__init__.py b/disco/__init__.py index 636ac44..b481566 100644 --- a/disco/__init__.py +++ b/disco/__init__.py @@ -1 +1 @@ -VERSION = '0.0.10' +VERSION = '0.0.11-rc.1' diff --git a/disco/gateway/events.py b/disco/gateway/events.py index 99b5c03..c08ad2e 100644 --- a/disco/gateway/events.py +++ b/disco/gateway/events.py @@ -1,6 +1,5 @@ from __future__ import print_function -import inflection import six from disco.types.user import User, Presence @@ -8,8 +7,8 @@ from disco.types.channel import Channel, PermissionOverwrite from disco.types.message import Message, MessageReactionEmoji from disco.types.voice import VoiceState from disco.types.guild import Guild, GuildMember, Role, GuildEmoji - from disco.types.base import Model, ModelMeta, Field, ListField, AutoDictField, snowflake, datetime +from disco.util.string import underscore # Mapping of discords event name to our event classes EVENTS_MAP = {} @@ -20,7 +19,7 @@ class GatewayEventMeta(ModelMeta): obj = super(GatewayEventMeta, mcs).__new__(mcs, name, parents, dct) if name != 'GatewayEvent': - EVENTS_MAP[inflection.underscore(name).upper()] = obj + EVENTS_MAP[underscore(name).upper()] = obj return obj diff --git a/disco/state.py b/disco/state.py index 49a63e0..1d0f6d7 100644 --- a/disco/state.py +++ b/disco/state.py @@ -1,12 +1,12 @@ import six import weakref -import inflection from collections import deque, namedtuple from gevent.event import Event from disco.types.base import UNSET from disco.util.config import Config +from disco.util.string import underscore from disco.util.hashmap import HashMap, DefaultHashMap @@ -131,7 +131,7 @@ class State(object): assert not len(self.listeners), 'Binding while already bound is dangerous' for event in self.EVENTS: - func = 'on_' + inflection.underscore(event) + func = 'on_' + underscore(event) self.listeners.append(self.client.events.on(event, getattr(self, func))) def fill_messages(self, channel): diff --git a/disco/util/string.py b/disco/util/string.py new file mode 100644 index 0000000..00d515e --- /dev/null +++ b/disco/util/string.py @@ -0,0 +1,9 @@ +import re + + +# Taken from inflection library +def underscore(word): + word = re.sub(r'([A-Z]+)([A-Z][a-z])', r'\1_\2', word) + word = re.sub(r'([a-z\d])([A-Z])', r'\1_\2', word) + word = word.replace('-', '_') + return word.lower() diff --git a/requirements.txt b/requirements.txt index e10e806..40a45c3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,5 @@ gevent==1.2.1 holster==1.0.15 -inflection==0.3.1 requests==2.13.0 six==1.10.0 websocket-client==0.40.0