Metadata-Version: 2.1
Name: twitchDig
Version: 0.1
Summary: An easy Twitch Scraper
Home-page: https://github.com/mahrtayyab/twitchDig
Author: Tayyab Kharl
Author-email: tayyabmahr@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/mahrtayyab/twitchDig/issues
Project-URL: Documentation, https://github.com/mahrtayyab/twitchDig
Keywords: Twitch,Twitch Scrape,Twitch Stream
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: httpx
Requires-Dist: dateutils
Requires-Dist: websocket-client

# twitchDig
Fun Project to Scrape Twitch

## Prerequisites

Before you begin, ensure you have met the following requirements:

* Internet Connection
* Python 3.6+
* httpx 
* websocket

## Installation: 
```bash
pip install twitchDig
```

## Keep synced with latest fixes

##### **Pip might not be always updated , so to keep everything synced.**

```bash
pip install https://github.com/mahrtayyab/twitchDig/archive/main.zip --upgrade 
```

## A Quick Example:
```python
from twitchDig.bot import Bot

app = Bot()

user = app.get_user("kharltayyab")
print(user)
```

Full Documentation and Changelogs are ``Coming Soon``
