Initial commit

This commit is contained in:
Rapptz
2015-08-21 18:18:34 -04:00
commit 3e0f09d32c
18 changed files with 1597 additions and 0 deletions

26
discord/__init__.py Normal file
View File

@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
"""
Discord API Wrapper
~~~~~~~~~~~~~~~~~~~
A basic wrapper for the Discord API.
:copyright: (c) 2015 Rapptz
:license: MIT, see LICENSE for more details.
"""
__title__ = 'discord'
__author__ = 'Rapptz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015 Rapptz'
__version__ = '0.1.0'
__build__ = 0x001000
from client import Client
from user import User
from channel import Channel, PrivateChannel
from server import Server
from message import Message
from errors import *