Skip to content

Instantly share code, notes, and snippets.

View leonardopinho's full-sized avatar

Leonardo Pinho leonardopinho

View GitHub Profile
@marcoscastro
marcoscastro / exemplo.py
Created March 21, 2018 04:43
simple chatbot example with Python
from textblob import TextBlob
import datetime, random
from urllib.request import Request, urlopen
import json, time
GREETING_KEYWORDS = ("olá", "oi")
GREETING_RESPONSES = ["oi, eu sou o BotCoin!", "olá!", "oi, estou a sua disposição...",
"olá, estou as suas ordens :)", "oi, estou aqui pra lhe ajudar!"]