├── .gitignore ├── LICENSE ├── README.md ├── server.py ├── static └── mywebscript.js └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/zzrjt-practice-project-emb-ai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/zzrjt-practice-project-emb-ai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/zzrjt-practice-project-emb-ai/HEAD/README.md -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/zzrjt-practice-project-emb-ai/HEAD/server.py -------------------------------------------------------------------------------- /static/mywebscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/zzrjt-practice-project-emb-ai/HEAD/static/mywebscript.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/zzrjt-practice-project-emb-ai/HEAD/templates/index.html --------------------------------------------------------------------------------