Metadata-Version: 2.1
Name: EasyTwitch
Version: 0.2
Summary: Making Twitch IRC easy
Home-page: https://github.com/JustFast/EasyTwitch
Author: JustFast
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# EasyTwitch
This is a repository to make using the twitch IRC easier to use. It can shorten your code by a lot and allows you to view messages and send messages! Expect updates in the future this is my first python package!

EXAMPLE:

```py
from EasyTwitch import Twich

conn = Twich.connection("oauthToken", "TwitchUsername") #Make a connection to twitch go to https://twitchapps.com/tmi/ to get an oauth token

conn.join("#streamer") #Join a streamer who is currently streaming

conn.sendMSG("My message") #Send a message in the chat

conn.log() #Continuiously print out the twitch chat NOTE: This is a stopping function so BEWARE
```


HOW TO INSTALL:

Just run:
```
pip install EasyTwitch
```
After that your set to go!! You can also view the Pypi at https://pypi.org/project/EasyTwitch/


