https://github.com/guisalmeida/pybot_ies
A simple bot that helps you remember schedule and class links in Zoom.
https://github.com/guisalmeida/pybot_ies
discord-bot discord-py docker docker-image dockerfile python
Last synced: about 2 months ago
JSON representation
A simple bot that helps you remember schedule and class links in Zoom.
- Host: GitHub
- URL: https://github.com/guisalmeida/pybot_ies
- Owner: guisalmeida
- Created: 2021-09-12T01:36:44.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-26T23:46:57.000Z (over 4 years ago)
- Last Synced: 2025-07-29T23:14:11.541Z (11 months ago)
- Topics: discord-bot, discord-py, docker, docker-image, dockerfile, python
- Language: Python
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PYbot_ies
A simple bot that helps you remember schedule and class links in Zoom.

## Requirements
Config `.env` file with:
```
TOKEN=
MATRICULA=
SENHA=
```
Make you sure have [**docker**](https://www.docker.com/) instaled.
## Usage
You can download a image for this aplication:
```sh
docker pull guisalmeida/pybot_ies:latest
```
After modifying the files, run the following commands to build and up the container with the application:
```sh
# build image
docker build -t guisalmeida/pybot_ies:latest .
# run in detach
docker run -d \
-e TOKEN='token-discord' \
-e MATRICULA='matricula-ies' \
-e SENHA='senha-ies' \
--name pybot_ies guisalmeida/pybot_ies:latest
# run test to request IES api
docker run -it --rm --name pybot_ies guisalmeida/pybot_ies:latest python utils.py
```