I am playing around with FastText, https://pypi.python.org/pypi/fasttext,which is quite similar to Word2Vec. Since it seems to be a pretty new library
FastText
Word2Vec
Use gensim,
from gensim.models import FastText model = FastText.load(PATH_TO_MODEL) model.wv.most_similar(positive=['dog'])
More info here