├── LICENSE ├── README.md ├── docs ├── RESTful-Top2Vec.md ├── conf.py └── index.rst ├── images └── restful-top2vec.png └── restful-top2vec ├── Dockerfile ├── app └── main.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddangelov/RESTful-Top2Vec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddangelov/RESTful-Top2Vec/HEAD/README.md -------------------------------------------------------------------------------- /docs/RESTful-Top2Vec.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddangelov/RESTful-Top2Vec/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddangelov/RESTful-Top2Vec/HEAD/docs/index.rst -------------------------------------------------------------------------------- /images/restful-top2vec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddangelov/RESTful-Top2Vec/HEAD/images/restful-top2vec.png -------------------------------------------------------------------------------- /restful-top2vec/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddangelov/RESTful-Top2Vec/HEAD/restful-top2vec/Dockerfile -------------------------------------------------------------------------------- /restful-top2vec/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddangelov/RESTful-Top2Vec/HEAD/restful-top2vec/app/main.py -------------------------------------------------------------------------------- /restful-top2vec/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddangelov/RESTful-Top2Vec/HEAD/restful-top2vec/requirements.txt --------------------------------------------------------------------------------