Browse Source

Merge branch 'master' into staging/v1.0.0

staging/v1.0.0
andrei 5 years ago
parent
commit
29ade49209
  1. 2
      README.md
  2. 5
      disco/bot/bot.py
  3. 4
      disco/types/user.py
  4. 4
      disco/util/serializer.py
  5. 1
      setup.py

2
README.md

@ -4,7 +4,7 @@
[![PyPI](https://img.shields.io/pypi/v/disco-py.svg)](https://pypi.python.org/pypi/disco-py/) [![PyPI](https://img.shields.io/pypi/v/disco-py.svg)](https://pypi.python.org/pypi/disco-py/)
[![TravisCI](https://img.shields.io/travis/b1naryth1ef/disco.svg)](https://travis-ci.org/b1naryth1ef/disco/) [![TravisCI](https://img.shields.io/travis/b1naryth1ef/disco.svg)](https://travis-ci.org/b1naryth1ef/disco/)
Disco is an extensive and extendable Python 2.x/3.x library for the [Discord API](https://discordapp.com/developers/docs/intro). Join the Official channel and chat [here](https://discord.gg/WMzzPec). Disco boasts the following major features: Disco is an extensive and extendable Python 2.x/3.x library for the [Discord API](https://discordapp.com/developers/docs/intro). Disco boasts the following major features:
- Expressive, functional interface that gets out of the way - Expressive, functional interface that gets out of the way
- Built for high-performance and efficiency - Built for high-performance and efficiency

5
disco/bot/bot.py

@ -313,10 +313,9 @@ class Bot(LoggingClass):
if msg.guild: if msg.guild:
member = msg.guild.get_member(self.client.state.me) member = msg.guild.get_member(self.client.state.me)
if member: if member:
# If nickname is set, filter both the normal and nick mentions # Filter both the normal and nick mentions
if member.nick:
content = content.replace(member.mention, '', 1)
content = content.replace(member.user.mention, '', 1) content = content.replace(member.user.mention, '', 1)
content = content.replace(member.user.mention_nickname, '', 1)
else: else:
content = content.replace(self.client.state.me.mention, '', 1) content = content.replace(self.client.state.me.mention, '', 1)
elif mention_everyone: elif mention_everyone:

4
disco/types/user.py

@ -52,6 +52,10 @@ class User(SlottedModel, with_equality('id'), with_hash('id')):
def mention(self): def mention(self):
return '<@{}>'.format(self.id) return '<@{}>'.format(self.id)
@property
def mention_nickname(self):
return '<@!{}>'.format(self.id)
def open_dm(self): def open_dm(self):
return self.client.api.users_me_dms_create(self.id) return self.client.api.users_me_dms_create(self.id)

4
disco/util/serializer.py

@ -21,8 +21,8 @@ class Serializer(object):
@staticmethod @staticmethod
def yaml(): def yaml():
from yaml import load, dump from yaml import full_load, dump
return (load, dump) return (full_load, dump)
@staticmethod @staticmethod
def pickle(): def pickle():

1
setup.py

@ -32,6 +32,7 @@ setup(
license='MIT', license='MIT',
description='A Python library for Discord', description='A Python library for Discord',
long_description=readme, long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True, include_package_data=True,
install_requires=requirements, install_requires=requirements,
extras_require=extras_require, extras_require=extras_require,

Loading…
Cancel
Save