Using the gensim.models.Word2Vec library, you have the possibility to provide a model and a \"word\" for which you want to find the list of most similar words:
gensim.models.Word2Vec
The method similar_by_vector returns the top-N most similar words by vector:
similar_by_vector(vector, topn=10, restrict_vocab=None)