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