An open API service indexing awesome lists of open source software.

https://github.com/azimjohn/survey-bot

Reusable Survey bot for telegram built with Django
https://github.com/azimjohn/survey-bot

django reusable telegram-bot

Last synced: over 1 year ago
JSON representation

Reusable Survey bot for telegram built with Django

Awesome Lists containing this project

README

          

# SurveyBot
## Telegram bot for Surveys built with Django and Telebot



### First get the repo on your machine:
```bash
$ git clone https://github.com/azimjohn/survey-bot.git
```

### Then install requirements:
```bash
$ pip install -r requirements.txt
```

### Make the migrations and apply them:
```bash
$ python manage.py makemigrations
$ python manage.py migrate
```

### Export the bot token, replace `REPLACE_ME` with your bot's token
```bash
$ export BOT_TOKEN=REPLACE_ME
```

### Finally, run the server 🎉
```bash
$ python manage.py runbot
```