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