Metadata-Version: 2.1
Name: telegram-notification
Version: 0.0.6
Summary: A small example package
Home-page: https://github.com/dankernel/telegram_notification
Author: dankernel
Author-email: dkdkernel@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: python-telegram-bot



# getting started

## 0. Make a simple setup.

Install the Python dependency package
```
$ python3 setup.py install
```

Register in ~/.bashrc
```
$ echo "alias noti='python3 $(pwd)/telegram_main.py'" >> ~/.bashrc

# or 
$ echo "alias noti='python $(pwd)/telegram_main.py'" >> ~/.bashrc
# or 
$ echo "alias noti='/usr/bin/python $(pwd)/telegram_main.py'" >> ~/.bashrc
# or 
$ echo "alias noti='/your/envs/path/python $(pwd)/telegram_main.py'" >> ~/.bashrc
```

## 1. Create your Telesram Bot.

## 2. Set your bot's token. 

## 3. Set your user_id. 

## 4. Use it anytime.




