comment initialiser un python spacy symbolique

doc = nlp("Give it back! He pleaded.")
token = doc[0]
assert token.text == "Give"
Grumpy Grivet