From 5215b6e2c51ecfd543a47a3ceb9708ecc0a17d48 Mon Sep 17 00:00:00 2001 From: Ali <61859768+treehousekingcomic@users.noreply.github.com> Date: Mon, 20 Jul 2020 17:26:55 -0400 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 872f455..d355f23 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,15 @@ # discord-emoji-handler Work with messages that contain emojis that your bot can't see? Emoji Handler will take care of the problem. +## Installation +`pip install DiscordEmojiHandler` + ## Available Functions & Usage To start you must initiate and get a EmojiHandlerObject from the EmojiHandler class. You'll need to pass your bot's instance (or client) and the text to work with (string). ```py -import EmojiHandlerModule as EHM +import DiscordEmojiHandler as EHM EHO = EHM.EmojiHandler(bot, text) ```