Running this code in Jupyter notebook gives this output.
from arcgis.gis import GIS
from config import Config
portal = GIS(Config.PORTAL_URL, Config.PORTAL_USER, Config.PORTAL_PASSWORD)
print("Logged in as " + str(portal.properties.user.username))
portal.content.search("title:\"Unlabeled Vector Tile Layer\"")
[<Item title:"Package for Unlabeled Vector Tile Layer" type:Vector Tile Package owner:bwilson@CLATSOP>, <Item title:"Unlabeled Vector Tile Layer" type:Vector Tile Layer owner:bwilson@CLATSOP>]
How can I force an exact match?
I looked in Search Reference and gis.ContentManager but I can't see a way to do this.