I want to be able to enter "Mpa" in a page field and have "MegaPascal" returned as an autocomplete selectable item using Pint's ureg units and prefixes. The main issue is that MegaPascal isn't an actual ureg element, it's the "Mega" prefix combined with the "Pascal" ureg unit. I assume that pint's ureg unit names and abbreviations can be loaded into a Javascript arrays via an api url when the page loads These arrays could then be searched JQuery UI autocomplete using a function as the source. But I can't see how to extract Pint's prefixes from Pint or how to integrate them into the autocomplete source function lookup. My current solution is to load all pint units and abbreviations into a Django model and use django's autocomplete function.