├── .gitignore ├── README.md ├── google_search.py ├── public ├── app.js ├── chatbot.png ├── index.html └── style.css ├── requirements.txt └── server.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmzach09/Python_ChatBot_Google/HEAD/README.md -------------------------------------------------------------------------------- /google_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmzach09/Python_ChatBot_Google/HEAD/google_search.py -------------------------------------------------------------------------------- /public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmzach09/Python_ChatBot_Google/HEAD/public/app.js -------------------------------------------------------------------------------- /public/chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmzach09/Python_ChatBot_Google/HEAD/public/chatbot.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmzach09/Python_ChatBot_Google/HEAD/public/index.html -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmzach09/Python_ChatBot_Google/HEAD/public/style.css -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmzach09/Python_ChatBot_Google/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmzach09/Python_ChatBot_Google/HEAD/server.py --------------------------------------------------------------------------------