Browse Source

Remove requirement for inflection library

pull/38/head
Andrei 8 years ago
parent
commit
bc0878f4cf
  1. 2
      disco/__init__.py
  2. 5
      disco/gateway/events.py
  3. 4
      disco/state.py
  4. 9
      disco/util/string.py
  5. 1
      requirements.txt

2
disco/__init__.py

@ -1 +1 @@
VERSION = '0.0.10' VERSION = '0.0.11-rc.1'

5
disco/gateway/events.py

@ -1,6 +1,5 @@
from __future__ import print_function from __future__ import print_function
import inflection
import six import six
from disco.types.user import User, Presence 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.message import Message, MessageReactionEmoji
from disco.types.voice import VoiceState from disco.types.voice import VoiceState
from disco.types.guild import Guild, GuildMember, Role, GuildEmoji from disco.types.guild import Guild, GuildMember, Role, GuildEmoji
from disco.types.base import Model, ModelMeta, Field, ListField, AutoDictField, snowflake, datetime 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 # Mapping of discords event name to our event classes
EVENTS_MAP = {} EVENTS_MAP = {}
@ -20,7 +19,7 @@ class GatewayEventMeta(ModelMeta):
obj = super(GatewayEventMeta, mcs).__new__(mcs, name, parents, dct) obj = super(GatewayEventMeta, mcs).__new__(mcs, name, parents, dct)
if name != 'GatewayEvent': if name != 'GatewayEvent':
EVENTS_MAP[inflection.underscore(name).upper()] = obj EVENTS_MAP[underscore(name).upper()] = obj
return obj return obj

4
disco/state.py

@ -1,12 +1,12 @@
import six import six
import weakref import weakref
import inflection
from collections import deque, namedtuple from collections import deque, namedtuple
from gevent.event import Event from gevent.event import Event
from disco.types.base import UNSET from disco.types.base import UNSET
from disco.util.config import Config from disco.util.config import Config
from disco.util.string import underscore
from disco.util.hashmap import HashMap, DefaultHashMap 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' assert not len(self.listeners), 'Binding while already bound is dangerous'
for event in self.EVENTS: 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))) self.listeners.append(self.client.events.on(event, getattr(self, func)))
def fill_messages(self, channel): def fill_messages(self, channel):

9
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()

1
requirements.txt

@ -1,6 +1,5 @@
gevent==1.2.1 gevent==1.2.1
holster==1.0.15 holster==1.0.15
inflection==0.3.1
requests==2.13.0 requests==2.13.0
six==1.10.0 six==1.10.0
websocket-client==0.40.0 websocket-client==0.40.0

Loading…
Cancel
Save