Browse multiple tag names

In 7.9 I was able to query the internal SQLTAG database through a module we wrote and get paths for multiple tag names, ie:

SELECT NAME, PATH FROM SQLTAG WHERE NAME IN ('TAGNAME1', 'TAGNAME2')

In 8.1 I would like to be able to accomplish the same thing using just Ignition/Jython scripting, but it doesn't seem to be possible using system.tag.browse() as I think I am only able to browse one tag name at a time. Is this in fact true? And if so does anyone have a solution that might work besides browsing all tags and filtering out the results?

Thanks in advance!

No.

The path, is the starting path of the browse. If you start a recursive browse at the root folder path with no filtering it will return all tags and folders in the system (Strongly recommended not to do that if you have more than a moderate number of tags).

As shown in the documentation system.tag.browse - Ignition User Manual 8.1 - Ignition Documentation you provide a dictionary with key value pairs to filter the search with.