Metadata-Version: 2.1
Name: ez_telegram
Version: 0.0.1
Summary: Minimalist client to get messages from public telegram channels, without tokens/sessions.
Author: Scr44gr
Author-email: <scr44gr@protonmail.com>
Keywords: telegram,client,simple,webscraping
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE

# ez-telegram 🤖

A minimal client to get messages from telegram channels using webscraping. 

## Installation 📝
```bash
pip install git+https://github.com/Scr44gr/ez-telegram.git@main
```

## Usage 📖

```python
from ez_telegram import EzClient

client = EzClient()
messages = client.get_messages(channel="telegram")
print(message)
```

### You'll get a list of messages
```python
[
  'message',
  'message',
  'message',
  ...
]
```
