[데이터사이언스 연계전공]Team_CICE
- 카카오 오픈빌더를 활용하여 개발한 코로나 챗봇.
- 카카오톡에 "코로나 챗봇" 채널 친구를 통해 확인 가능. ➡ Click Here
- Clone git repository
git clone https://github.com/CSID-DGU/2020-2-OSSP-CP-CICE-8.git
cd server
- Install required packages Linux Terminal / Windows cmd, PowerShell / Git bash
sudo apt install python3-pip #install pip
python3 -m pip install --upgrade pip
pip install Flask
pip install COVID19Py
pip install bs4
pip install requests
pip3 install matplotlib
pip install apscheduler
- run server
python chatbot.py runserver
http://0.0.0.0:5000/ -> http://ip-address:5000/
use your own ip-address
├─.idea
│ └─inspectionProfiles
├─.ipynb_checkpoints
├─botproject
│ ├─botbot
│ │ ├─migrations
│ │ │ └─__pycache__
│ │ ├─templates
│ │ └─__pycache__
│ ├─botproject
│ │ └─__pycache__
│ └─static
│ ├─admin
│ │ ├─css
│ │ │ └─vendor
│ │ │ └─select2
│ │ ├─fonts
│ │ ├─img
│ │ │ └─gis
│ │ └─js
│ │ ├─admin
│ │ └─vendor
│ │ ├─jquery
│ │ ├─select2
│ │ │ └─i18n
│ │ └─xregexp
│ ├─assets
│ │ ├─css
│ │ └─img
│ └─js
├─bot_monitoring
│ ├─bot_image
│ └─scenario
├─chatbot_data
│ └─entity
├─proposal
└─server
├─CoronaBotDB
├─msg_app
│ └─__pycache__
├─refer
│ ├─CoronaBot-master
│ └─kakaoisdk
│ ├─examples
│ └─kakaoi
└─__pycache__