spaCy How to use Dessan/ru_custom_new_model with spaCy:
!pip install https://huggingface.co/Dessan/ru_custom_new_model/resolve/main/ru_custom_new_model-any-py3-none-any.whl
# Using spacy.load().
import spacy
nlp = spacy.load("ru_custom_new_model")
# Importing as module.
import ru_custom_new_model
nlp = ru_custom_new_model.load()